source: trunk/server/fedora/config/etc/postfix/main.cf @ 2498

Last change on this file since 2498 was 2460, checked in by andersk, 11 years ago
Stop eating mail to reserved addresses at non-scripts domains Instead of eating {abuse,hostmaster,noc,postmaster,security}@every-domain, use LDAP magic to capture these addresses only at scripts vhosts. The following CoS templates have been added to LDAP: dn: cn=scriptsReservedMailTemplate,ou=VirtualHosts,dc=scripts,dc=mit,dc=edu cn: scriptsReservedMailTemplate objectClass: top objectClass: cosTemplate objectClass: extensibleObject scriptsreservedmail: security scriptsreservedmail: postmaster scriptsreservedmail: noc scriptsreservedmail: hostmaster scriptsreservedmail: abuse dn: cn=scriptsReservedMailCoS,ou=VirtualHosts,dc=scripts,dc=mit,dc=edu cn: scriptsReservedMailCoS objectClass: top objectClass: ldapSubEntry objectClass: cosSuperDefinition objectClass: cosPointerDefinition costemplatedn: cn=scriptsReservedMailTemplate,ou=VirtualHosts,dc=scripts,dc=mit,dc=edu cosAttribute: scriptsReservedMail operational
File size: 1.5 KB
RevLine 
[39]1#biff = no
2
3# appending .domain is the MUA's job.
4#append_dot_mydomain = no
5
6# Uncomment the next line to generate "delayed mail" warnings
7#delay_warning_time = 4h
8
9alias_maps = hash:/etc/aliases
10alias_database = hash:/etc/aliases
11myorigin = scripts.mit.edu
[2375]12mydestination = scripts.mit.edu, scripts, $myhostname, scripts-test.mit.edu, scripts-test, localhost
[39]13relayhost =
[2255]14mynetworks_style = host
[356]15mailbox_command = /usr/bin/procmail -t -a "${EXTENSION}" ~/mail_scripts/procmailrc
[39]16mailbox_size_limit = 0
17recipient_delimiter = +
18inet_interfaces = all
[2396]19readme_directory = /usr/share/doc/postfix-2.9.6/README_FILES
20sample_directory = /usr/share/doc/postfix-2.9.6/samples
[484]21sendmail_path = /usr/sbin/sendmail
22html_directory = no
23setgid_group = postdrop
24command_directory = /usr/sbin
25manpage_directory = /usr/share/man
26daemon_directory = /usr/libexec/postfix
27newaliases_path = /usr/bin/newaliases
28mailq_path = /usr/bin/mailq
29queue_directory = /var/spool/postfix
30mail_owner = postfix
[1443]31virtual_alias_domains = hash:/etc/postfix/virtual, regexp:/etc/postfix/virtual_re, ldap:/etc/postfix/virtual-alias-domains-ldap.cf
[2460]32virtual_alias_maps = hash:/etc/postfix/virtual, regexp:/etc/postfix/virtual_re, ldap:/etc/postfix/virtual-alias-maps-ldap-reserved.cf, ldap:/etc/postfix/virtual-alias-maps-ldap.cf
[867]33data_directory = /var/lib/postfix
[1227]34authorized_submit_users = !/etc/postfix/blocked_users, static:all
[2330]35# "all" is the default, but if we do not specify it, Fedora's packaging
36# will add the wrong value here.
37inet_protocols = all
Note: See TracBrowser for help on using the repository browser.