Exim (Mailserver minimal)
Version vom 10. November 2025, 18:47 Uhr von Thomas.will (Diskussion | Beiträge)
Exim4 Minimal-Setup (lokale Zustellung)
- apt install exim4 mailutils -y
- cat > /etc/exim4/update-exim4.conf.conf << 'EOF'
dc_eximconfig_configtype='local' dc_other_hostnames='lab.int' dc_local_interfaces='127.0.0.1 ; ::1 ; 10.20.10.11' dc_readhost= dc_relay_domains= dc_minimaldns='false' dc_relay_nets= dc_smarthost= CFILEMODE='644' dc_use_split_config='false' dc_hide_mailname= dc_mailname_in_oh='true' dc_localdelivery='mail_spool' EOF
- update-exim4.conf
- systemctl restart exim4
- systemctl status exim4 --no-pager
- echo "Testmail" | mail -s "Exim läuft" root
- journalctl -u exim4 -n 20 --no-pager
- less /var/mail/root