Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- smtp inet n - n - - smtpd
- #smtp inet n - n - 1 postscreen
- #smtpd pass - - n - - smtpd
- #dnsblog unix - - n - 0 dnsblog
- #tlsproxy unix - - n - 0 tlsproxy
- submission inet n - n - - smtpd
- # -o syslog_name=postfix/submission
- -o smtpd_tls_security_level=encrypt
- -o smtpd_sasl_auth_enable=yes
- # -o smtpd_reject_unlisted_recipient=no
- # -o smtpd_client_restrictions=$mua_client_restrictions
- -o smtpd_client_restrictions=permit_sasl_authenticated,reject
- # -o smtpd_helo_restrictions=$mua_helo_restrictions
- # -o smtpd_sender_restrictions=$mua_sender_restrictions
- -o smtpd_recipient_restrictions=permit_sasl_authenticated,reject
- -o milter_macro_daemon_name=ORIGINATING
- smtps inet n - - - - smtpd
- # -o syslog_name=postfix/smtps
- -o smtpd_tls_wrappermode=yes
- -o smtpd_sasl_auth_enable=no
- # -o smtpd_reject_unlisted_recipient=no
- # -o smtpd_client_restrictions=$mua_client_restrictions
- -o smtpd_client_restrictions=permit_sasl_authenticated,reject
- # -o smtpd_helo_restrictions=$mua_helo_restrictions
- # -o smtpd_sender_restrictions=$mua_sender_restrictions
- -o smtpd_recipient_restrictions=permit_sasl_authenticated,reject
- -o milter_macro_daemon_name=ORIGINATING
- ##/etc/sasl2/smtpd.conf
- pwcheck_method: auxprop
- auxprop_plugin: sasldb
- mech_list: plain login cram-md5 digest-md5
- ##/etc/dovecot/conf.d/10-ssl.conf
- ssl = yes
- ssl_cert = </etc/pki/CA/certs/mail.example.com.pem
- ssl_key = </etc/pki/CA/private/mail.example.com.key
- ##/etc/dovecot/conf.d/10-auth.conf
- disable_plaintext_auth = no
- auth_mechanisms = plain login
- !include auth-system.conf.ext
- #!include auth-sql.conf.ext
- #!include auth-ldap.conf.ext
- #!include auth-passwdfile.conf.ext
- #!include auth-checkpassword.conf.ext
- #!include auth-vpopmail.conf.ext
- #!include auth-static.conf.ext
- ##/etc/dovecot/conf.d/10-master.conf
- service imap-login {
- inet_listener imap {
- #port = 143
- }
- inet_listener imaps {
- port = 993
- ssl = yes
- }
- }
- service pop3-login {
- inet_listener pop3 {
- #port = 110
- }
- inet_listener pop3s {
- port = 995
- ssl = yes
- }
- }
- # Postfix smtp-auth
- unix_listener /var/spool/postfix/private/auth {
- mode = 0666
- user = postfix
- group = postfix
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement