SHARE
TWEET

Untitled

a guest Feb 19th, 2016 71 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. postconf -nf
  2. alias_database = hash:/etc/aliases
  3. alias_maps = hash:/etc/aliases
  4. append_dot_mydomain = no
  5. biff = no
  6. command_directory = /usr/local/sbin
  7. compatibility_level = 2
  8. daemon_directory = /usr/local/libexec/postfix
  9. data_directory = /var/db/postfix
  10. debug_peer_level = 2
  11. debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin ddd
  12.     $daemon_directory/$process_name $process_id & sleep 5
  13. dovecot_destination_recipient_limit = 1
  14. html_directory = /usr/local/share/doc/postfix
  15. inet_interfaces = all
  16. inet_protocols = all
  17. mail_owner = postfix
  18. mailbox_size_limit = 511000000
  19. mailq_path = /usr/local/bin/mailq
  20. manpage_directory = /usr/local/man
  21. message_size_limit = 50240000
  22. meta_directory = /usr/local/libexec/postfix
  23. milter_connect_macros = i j {daemon_name} v {if_name} _
  24. mydestination =
  25. myhostname = mode42.net
  26. mynetworks =
  27. mynetworks_style = host
  28. myorigin = mode42.net
  29. newaliases_path = /usr/local/bin/newaliases
  30. queue_directory = /var/spool/postfix
  31. readme_directory = /usr/local/share/doc/postfix
  32. recipient_delimiter = +
  33. relayhost = smtp.gmail.com:25
  34. sample_directory = /usr/local/etc/postfix
  35. sendmail_path = /usr/local/sbin/sendmail
  36. setgid_group = maildrop
  37. shlib_directory = /usr/local/lib/postfix
  38. smtp_sasl_auth_enable = yes
  39. smtp_sasl_password_maps = hash:/usr/local/etc/postfix/relay_passwd
  40. smtp_sasl_security_options = noanonymous
  41. smtp_sasl_tls_security_options = noanonymous
  42. smtp_tls_security_level = encrypt
  43. smtp_use_tls = yes
  44. smtpd_banner = $myhostname ESMTP
  45. smtpd_milters = unix:/var/run/spamass-milter.sock
  46. smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated
  47.     reject_unauth_destination check_sender_access
  48.     hash:/usr/local/etc/postfix/recipient_access
  49. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated
  50.     defer_unauth_destination
  51. smtpd_sasl_auth_enable = yes
  52. smtpd_sasl_path = private/auth
  53. smtpd_sasl_type = dovecot
  54. smtpd_tls_auth_only = yes
  55. smtpd_tls_cert_file = /usr/local/etc/ssl/certs/mailserver.pem
  56. smtpd_tls_key_file = /usr/local/etc/ssl/keys/mailserver.pem
  57. smtpd_tls_security_level = encrypt
  58. soft_bounce = yes
  59. unknown_local_recipient_reject_code = 550
  60. virtual_alias_maps = mysql:/usr/local/etc/postfix/mysql-virtual-alias-maps.cf
  61. virtual_mailbox_domains =
  62.     mysql:/usr/local/etc/postfix/mysql-virtual-mailbox-domains.cf
  63. virtual_mailbox_maps =
  64.     mysql:/usr/local/etc/postfix/mysql-virtual-mailbox-maps.cf
  65. virtual_transport = lmtp:unix:private/dovecot-lmtp
  66.  
  67. postconf -Mf
  68. smtp       inet  n       -       n       -       -       smtpd
  69. dovecot    unix  -       n       n       -       -       pipe flags=DRhu
  70.     user=vmail:vmail argv=/usr/local/libexec/dovecot/dovecot-lda -f ${sender}
  71.     -d ${recipient}
  72. submission inet  n       -       n       -       -       smtpd
  73.     -o syslog_name=postfix/submission
  74.     -o smtpd_tls_security_level=encrypt
  75.     -o smtpd_sasl_auth_enable=yes
  76.     -o smtpd_sasl_type=dovecot
  77.     -o smtpd_sasl_path=private/auth
  78.     -o smtpd_sasl_security_options=noanonymous
  79.     -o smtpd_sender_login_maps=mysql:/usr/local/etc/postfix/mysql-email2email.cf
  80.     -o smtpd_sender_restrictions=reject_sender_login_mismatch
  81.     -o smtpd_sasl_local_domain=$myhostname
  82.     -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  83.     -o smtpd_recipient_restrictions=reject_non_fqdn_recipient,reject_unknown_recipient_domain,permit_sasl_authenticated,reject
  84. pickup     unix  n       -       n       60      1       pickup
  85. cleanup    unix  n       -       n       -       0       cleanup
  86. qmgr       unix  n       -       n       300     1       qmgr
  87. tlsmgr     unix  -       -       n       1000?   1       tlsmgr
  88. rewrite    unix  -       -       n       -       -       trivial-rewrite
  89. bounce     unix  -       -       n       -       0       bounce
  90. defer      unix  -       -       n       -       0       bounce
  91. trace      unix  -       -       n       -       0       bounce
  92. verify     unix  -       -       n       -       1       verify
  93. flush      unix  n       -       n       1000?   0       flush
  94. proxymap   unix  -       -       n       -       -       proxymap
  95. proxywrite unix  -       -       n       -       1       proxymap
  96. smtp       unix  -       -       n       -       -       smtp
  97. relay      unix  -       -       n       -       -       smtp
  98. showq      unix  n       -       n       -       -       showq
  99. error      unix  -       -       n       -       -       error
  100. retry      unix  -       -       n       -       -       error
  101. discard    unix  -       -       n       -       -       discard
  102. local      unix  -       n       n       -       -       local
  103. virtual    unix  -       n       n       -       -       virtual
  104. lmtp       unix  -       -       n       -       -       lmtp
  105. anvil      unix  -       -       n       -       1       anvil
  106. scache     unix  -       -       n       -       1       scache
  107.  
  108. Feb 19 17:58:33 Evey postfix/smtpd[86082]: connect from xxxx.dyn.telefonica.de[77.176.83.28]
  109. Feb 19 17:58:34 Evey postfix/smtpd[86082]: 77E9627CCD7F: client=xxxx.dyn.telefonica.de[77.176.83.28], sasl_method=PLAIN, sasl_username=xxxx@mode42.net
  110. Feb 19 17:58:34 Evey postfix/cleanup[86088]: 77E9627CCD7F: message-id=<56C749B9.9030009@mode42.net>
  111. Feb 19 17:58:34 Evey spamd[69929]: spamd: connection from localhost [::1]:27139 to port 783, fd 5
  112. Feb 19 17:58:34 Evey spamd[69929]: spamd: setuid to spamd succeeded
  113. Feb 19 17:58:34 Evey spamd[69929]: spamd: processing message <56C749B9.9030009@mode42.net> for spamd:58
  114. Feb 19 17:58:36 Evey spamd[69929]: spamd: clean message (5.2/5.3) for spamd:58 in 2.2 seconds, 810 bytes.
  115. Feb 19 17:58:36 Evey spamd[69929]: spamd: result: . 5 - RCVD_IN_PBL,RCVD_IN_RP_RNBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC scantime=2.2,size=810,user=spamd,uid=58,required_score=5.3,rhost=localhost,rad
  116. Feb 19 17:58:36 Evey postfix/qmgr[69278]: 77E9627CCD7F: from=<xxxx@mode42.net>, size=763, nrcpt=1 (queue active)
  117. Feb 19 17:58:36 Evey postfix/smtpd[86082]: disconnect from xxxx.dyn.telefonica.de[77.176.83.28] ehlo=2 starttls=1 auth=1 mail=1 rcpt=1 data=1 quit=1 commands=8
  118. Feb 19 17:58:36 Evey spamd[69927]: prefork: child states: II
  119. Feb 19 17:58:38 Evey postfix/smtp[86091]: 77E9627CCD7F: to=<xxxx@gmail.com>, relay=smtp.gmail.com[74.125.136.108]:25, delay=3.9, delays=2.4/0.04/0.66/0.83, dsn=2.0.0, status=sent (250
  120. Feb 19 17:58:38 Evey postfix/qmgr[69278]: 77E9627CCD7F: removed
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top