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 13 matching lines...) Expand all Loading... |
24 smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache | 24 smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache |
25 smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache | 25 smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache |
26 | 26 |
27 # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for | 27 # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for |
28 # information on enabling SSL in the smtp client. | 28 # information on enabling SSL in the smtp client. |
29 | 29 |
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 | |
35 relayhost = | 34 relayhost = |
36 mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 | 35 mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 |
37 mailbox_size_limit = 0 | 36 mailbox_size_limit = 0 |
38 recipient_delimiter = + | 37 recipient_delimiter = + |
39 inet_interfaces = 127.0.0.1 [::1] | 38 inet_interfaces = 127.0.0.1 [::1] |
OLD | NEW |