Hier werden die Unterschiede zwischen zwei Versionen gezeigt.
| Nächste Überarbeitung | Vorherige Überarbeitung | ||
|
lpi2:postfix [2022/05/20 08:13] 127.0.0.1 Externe Bearbeitung |
lpi2:postfix [2022/12/21 14:52] (aktuell) |
||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== Minimal-Konfiguration ====== | ====== Minimal-Konfiguration ====== | ||
| - | Vorraussetzung für Mail ist eine korrekte [[ dns| client- ]] und [[ bind | serverseitige ]] DNS Konfiguration. | + | Vorraussetzung für Mail ist eine korrekte [[ dns| client- ]] und [[ bind | serverseitige ]] DNS Konfiguration, inkl. ''hostname -f'' |
| ===== Benötigte Pakete ===== | ===== Benötigte Pakete ===== | ||
| Zeile 7: | Zeile 7: | ||
| ==== Debian ==== | ==== Debian ==== | ||
| - | exim Konfigurationsdateien direkt bei der Installation von Postfix entfernen: (( entsprechende Lösung für ''aptitude'' noch gesucht. )) | + | exim Konfigurationsdateien direkt bei der Installation von Postfix entfernen: |
| apt --purge install postfix | apt --purge install postfix | ||
| Zeile 29: | Zeile 29: | ||
| ==== Postfix ==== | ==== Postfix ==== | ||
| - | In der Folge werden sinnvolle Werte für ''myhostname'', ''mydomain'' und ''mynetworks'' gesetzt. Und die Parameter ''mydestination'', ''inet_interfaces'', ''smtpd_recipient_restrictions'' ((vor Postfix Version 2.10)), ''smtpd_relay_restrictions'' ((ab Postfix Version 2.10)), ''default_transport'' und ''relay_transport'' werden auf die default-Werte gesetzt: | + | In der Folge werden sinnvolle Werte für ''myhostname'' und ''mydomain'' gesetzt. Und die Parameter ''mydestination'', ''inet_interfaces'', ''mynetworks'', ''smtpd_recipient_restrictions'', ''smtpd_relay_restrictions'', ''default_transport'' und ''relay_transport'' werden auf ihre default-Werte gesetzt: |
| <code bash> | <code bash> | ||
| - | |||
| postconf -e "myhostname = $(hostname -f)" | postconf -e "myhostname = $(hostname -f)" | ||
| postconf -e "mydomain = $(hostname -d)" | postconf -e "mydomain = $(hostname -d)" | ||
| - | postconf -e 'mynetworks = 127.0.0.0/8 [::1]/128' | ||
| - | for PARAMETER in mydestination inet_interfaces smtpd_recipient_restrictions smtpd_relay_restrictions default_transport relay_transport; | + | for PARAMETER in mydestination inet_interfaces mynetworks smtpd_recipient_restrictions smtpd_relay_restrictions default_transport relay_transport; |
| do | do | ||
| - | postconf -e "$(postconf -d $PARAMETER)"; | + | postconf -# $PARAMETER; |
| done; | done; | ||
| </code> | </code> | ||
| Zeile 61: | Zeile 59: | ||
| . | . | ||
| quit | quit | ||
| + | |||
| + | ====== Destination ====== | ||
| + | postconf -d mydestination | ||
| + | postconf mydomain | ||
| + | postconf mydestination='$myhostname, $mydomain, localhost.$mydomain, localhost' | ||
| + | systemctl restart postfix.service | ||
| ====== Links ====== | ====== Links ====== | ||
| * http://www.postfix.org | * http://www.postfix.org | ||