/[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 294 - (show annotations) (download)
Thu Nov 18 22:34:59 2010 UTC (13 years, 5 months ago) by misc
File size: 2520 byte(s)
- start to merge simple relay, and add some basic antispam filtering 

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 path_daemon_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/postfix/"
8 %>
9
10 # These are changed by postfix install script
11 readme_directory = /usr/share/doc/postfix/README_FILES
12 html_directory = /usr/share/doc/postfix/html
13 sendmail_path = /usr/sbin/sendmail.postfix
14 setgid_group = postdrop
15 command_directory = /usr/sbin
16 manpage_directory = /usr/share/man
17 daemon_directory = <%= path_daemon_directory %>
18 data_directory = /var/lib/postfix
19 newaliases_path = /usr/bin/newaliases
20 mailq_path = /usr/bin/mailq
21 queue_directory = /var/spool/postfix
22 mail_owner = postfix
23
24 # User configurable parameters
25
26 <% if classes.include?('postfix::simple_relay') %>
27 inet_interfaces = localhost
28 <% else %>
29 inet_interfaces = all
30 <% end %>
31
32 inet_protocols = all
33 mynetworks_style = host
34 myhostname = <%= fqdn %>
35 mydomain = <%= domain %>
36 mydestination = <%= fqdn %>
37 myorigin = $mydomain
38 <%- if classes.include?('postfix::smtp_server') -%>
39 relay_domains = $mydestination,
40 ml.<%= domain %>,
41 <%- if classes.include?('postfix::primary_smtp') -%>
42 <%= domain %>
43 <%- end -%>
44 transport_maps = regexp:/etc/postfix/transport_regexp
45 <% if classes.include?('sympa') %>
46 sympa_destination_recipient_limit = 1
47 sympabounce_destination_recipient_limit = 1
48 <% end %>
49 #delay_warning_time = 4h
50 smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) (Mandriva Linux)
51 unknown_local_recipient_reject_code = 450
52 smtp-filter_destination_concurrency_limit = 2
53 lmtp-filter_destination_concurrency_limit = 2
54 smtpd_use_tls = yes
55 smtpd_tls_cert_file = /etc/pki/tls/certs/postfix.pem
56 smtpd_tls_key_file = /etc/pki/tls/private/postfix.pem
57 smtpd_tls_CAfile = /etc/pki/tls/certs/ca-bundle.crt
58
59 <% if classes.include?('postfix::smtp_server') %>
60 smtpd_recipient_restrictions =
61 # not done yet
62 # permit_sasl_authenticated
63 permit_mynetworks
64 reject_unauth_destination
65 reject_unauth_pipelining
66 reject_non_fqdn_recipient
67 reject_non_fqdn_sender
68 reject_non_fqdn_hostname
69 reject_invalid_hostname
70 reject_unknown_recipient_domain
71 reject_unknown_sender_domain
72 reject_unknown_client
73 <% if classes.include?('postgrey') %>
74 check_policy_service unix:extern/postgrey/socket
75 <% end %>
76 <% end %>
77

  ViewVC Help
Powered by ViewVC 1.1.30