OLD | NEW |
1 # See /usr/share/postfix/main.cf.dist for a commented, more complete version | 1 # See /usr/share/postfix/main.cf.dist for a commented, more complete version |
2 | 2 |
3 | 3 |
4 # Debian specific: Specifying a file name will cause the first | 4 # Debian specific: Specifying a file name will cause the first |
5 # line of that file to be used as the name. The Debian default | 5 # line of that file to be used as the name. The Debian default |
6 # is /etc/mailname. | 6 # is /etc/mailname. |
7 #myorigin = /etc/mailname | 7 #myorigin = /etc/mailname |
8 | 8 |
9 smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) | 9 smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) |
10 biff = no | 10 biff = no |
(...skipping 19 matching lines...) Expand all Loading... |
30 myorigin = $myhostname | 30 myorigin = $myhostname |
31 mydomain = adblockplus.org | 31 mydomain = adblockplus.org |
32 alias_maps = hash:/etc/aliases | 32 alias_maps = hash:/etc/aliases |
33 alias_database = hash:/etc/aliases | 33 alias_database = hash:/etc/aliases |
34 mydestination = localhost.localdomain, localhost | 34 mydestination = localhost.localdomain, localhost |
35 relayhost = | 35 relayhost = |
36 mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 | 36 mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 |
37 mailbox_size_limit = 0 | 37 mailbox_size_limit = 0 |
38 recipient_delimiter = + | 38 recipient_delimiter = + |
39 inet_interfaces = 127.0.0.1 [::1] | 39 inet_interfaces = 127.0.0.1 [::1] |
| 40 |
| 41 # Disable rewriting message header addresses |
| 42 local_header_rewrite_clients = |
OLD | NEW |