/[adm]/puppet/modules/postfix/templates/main.cf
ViewVC logotype

Contents of /puppet/modules/postfix/templates/main.cf

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1287 - (show annotations) (download)
Tue Mar 8 14:50:43 2011 UTC (13 years ago) by misc
File size: 3355 byte(s)
- first prototype of ldap aliases
1 # Please be sure to read the /usr/share/doc/postfix/README.MDK file
2 # to learn about differences from stock postfix to Mandriva package.
3 # This file contains only the parameters changed from a default install
4 # see /etc/postfix/main.cf.dist for a commented, fuller version of this file.
5
6
7 # These are changed by postfix install script
8 readme_directory = /usr/share/doc/postfix/README_FILES
9 html_directory = /usr/share/doc/postfix/html
10 sendmail_path = /usr/sbin/sendmail.postfix
11 setgid_group = postdrop
12 command_directory = /usr/sbin
13 manpage_directory = /usr/share/man
14 daemon_directory = <%= lib_dir %>/postfix/
15 data_directory = /var/lib/postfix
16 newaliases_path = /usr/bin/newaliases
17 mailq_path = /usr/bin/mailq
18 queue_directory = /var/spool/postfix
19 mail_owner = postfix
20
21 # User configurable parameters
22
23 <% if all_tags.include?('postfix::simple_relay') %>
24 inet_interfaces = localhost
25 <% else %>
26 inet_interfaces = all
27 <% end %>
28
29 inet_protocols = all
30 mynetworks_style = host
31 myhostname = <%= fqdn %>
32 mydomain = <%= domain %>
33 mydestination = <%= fqdn %>
34 myorigin = $mydomain
35 <%- if all_tags.include?('postfix::secondary_smtp') -%>
36 relay_domains = <%= domain %>, ml.<%= domain %>
37 <%- end -%>
38
39 mydestination = <%= fqdn %>
40 <%- if all_tags.include?('postfix::primary_smtp') -%>
41 <%= domain %>,
42
43 # local_recipient_maps is disabled, as we need to route all
44 # non local email to ryu as long as mageia ml are hosted
45 # there. Hence the use of fallback_transport , but this is
46 # taken in account only of local_recipient_maps is empty
47 local_recipient_maps =
48 # route ml to ryu ( ml being mageia-*@mageia )
49 fallback_transport = regexp:/etc/postfix/transport_regexp
50
51
52 alias_maps = hash:/etc/postfix/aliases
53 # uncomment if we want to enable ldap based alias
54 # and create the file
55 ldap:/etc/postfix/ldap_aliases.conf
56 <%- end -%>
57
58
59 <%- if all_tags.include?('postfix::smtp_server') -%>
60 transport_maps = regexp:/etc/postfix/transport_regexp
61 content_filter = smtp-filter:[127.0.0.1]:10025
62 <%- end -%>
63
64 <%- if classes.include?('sympa::server') -%>
65 sympa_destination_recipient_limit = 1
66 sympabounce_destination_recipient_limit = 1
67 <%- end -%>
68
69 #delay_warning_time = 4h
70 smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) (Mandriva Linux)
71 unknown_local_recipient_reject_code = 450
72 smtp-filter_destination_concurrency_limit = 2
73 lmtp-filter_destination_concurrency_limit = 2
74 # disabled for the time being, as the certificate do not exist
75 # FIXME create the cert in puppet
76 smtpd_use_tls = no
77 #smtpd_tls_cert_file = /etc/pki/tls/certs/postfix.pem
78 #smtpd_tls_key_file = /etc/pki/tls/private/postfix.pem
79 #smtpd_tls_CAfile = /etc/pki/tls/certs/ca-bundle.crt
80
81 <%- if all_tags.include?('postfix::smtp_server') -%>
82 smtpd_etrn_restrictions = reject
83
84 smtpd_helo_required = yes
85
86 smtpd_data_restrictions = reject_unauth_pipelining
87 reject_multi_recipient_bounce
88
89 smtpd_recipient_restrictions = reject_non_fqdn_recipient
90 reject_non_fqdn_sender
91 # not done yet, not sure if we need to offer this kind of service
92 # permit_sasl_authenticated
93 permit_mynetworks
94 reject_unauth_destination
95 reject_non_fqdn_helo_hostname
96 reject_unknown_sender_domain
97 reject_unknown_client
98 <%- if classes.include?('postgrey') -%>
99 check_policy_service unix:extern/postgrey/socket
100 <%- end -%>
101 <%- end -%>
102

  ViewVC Help
Powered by ViewVC 1.1.30