Advertisement
Guest User

Untitled

a guest
Aug 11th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. alias_database = hash:/etc/aliases
  2. alias_maps = hash:/etc/aliases
  3. append_dot_mydomain = no
  4. biff = no
  5. config_directory = /etc/postfix
  6. content_filter = smtp-amavis:[127.0.0.1]:10024
  7. home_mailbox = Maildir/
  8. inet_interfaces = all
  9. mailbox_command = /usr/lib/dovecot/deliver
  10. mailbox_size_limit = 0
  11. milter_default_action = accept
  12. mydestination = localhost, /etc/postfix/domains
  13. myhostname = example.org
  14. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  15. myorigin = /etc/mailname
  16. readme_directory = no
  17. recipient_delimiter = +
  18. relayhost =
  19. smtp_tls_security_level = may
  20. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  21. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
  22. smtpd_client_restrictions = reject_unknown_client_hostname, permit_sasl_authenticated
  23. smtpd_data_restrictions = reject_unauth_pipelining
  24. smtpd_helo_required = yes
  25. smtpd_helo_restrictions = reject_invalid_helo_hostname, reject_non_fqdn_helo_hostname
  26. smtpd_recipient_restrictions = permit_mynetworks, reject_unknown_recipient_domain, reject_unauth_pipelining, permit_sasl_authenticated, reject_unauth_destination
  27. smtpd_sasl_auth_enable = yes
  28. smtpd_sasl_path = private/auth
  29. smtpd_sasl_security_options = noanonymous
  30. smtpd_sasl_type = dovecot
  31. smtpd_sender_restrictions = reject_unknown_sender_domain
  32. smtpd_tls_auth_only = yes
  33. smtpd_tls_cert_file = /etc/postfix/.pem
  34. smtpd_tls_key_file = /etc/postfix/.key
  35. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  36. smtpd_use_tls = yes
  37. virtual_alias_maps = hash:/etc/postfix/virtual
  38.  
  39. lorem.com
  40. example.org
  41. website.net
  42.  
  43. postmaster@lorem.com userTwo
  44. ipsum@lorem.com userTwo
  45.  
  46. postmaster@example.org userOne
  47. steve@example.org userOne
  48.  
  49. postmaster@website.net userOne
  50. steve@website.net userOne
  51. mike@website.net userThree
  52. mary@website.net userTwo
  53.  
  54. Aug 3 20:04:55 example postfix/submission/smtpd[25424]: connect from my-hostname[68.xxx.xxx.xxx]
  55. Aug 3 20:04:55 example postfix/submission/smtpd[25424]: 8D70441402: client=my-hostname[68.xxx.xxx.xxx], sasl_method=PLAIN, sasl_username=userOne
  56. Aug 3 20:04:55 example postfix/cleanup[25429]: 8D70441402: message-id=<55C001A5.9020907@example.org>
  57. Aug 3 20:04:55 example postfix/qmgr[25311]: 8D70441402: from=<steve@example.org>, size=583, nrcpt=1 (queue active)
  58. Aug 3 20:04:55 example postfix/submission/smtpd[25424]: disconnect from my-hostname[68.xxx.xxx.xxx]
  59. Aug 3 20:04:56 example postfix/smtpd[25434]: connect from localhost[127.0.0.1]
  60. Aug 3 20:04:56 example postfix/smtpd[25434]: 72CE941403: client=localhost[127.0.0.1]
  61. Aug 3 20:04:56 example postfix/cleanup[25429]: 72CE941403: message-id=<55C001A5.9020907@example.org>
  62. Aug 3 20:04:56 example postfix/qmgr[25311]: 72CE941403: from=<steve@example.org>, size=991, nrcpt=1 (queue active)
  63. Aug 3 20:04:56 example postfix/smtpd[25434]: disconnect from localhost[127.0.0.1]
  64. Aug 3 20:04:56 example amavis[5148]: (05148-07) Passed CLEAN {RelayedInbound}, [68.xxx.xxx.xxx]:52874 [68.xxx.xxx.xxx] <steve@example.org> -> <steve@example.org>, Queue-ID: 8D70441402, Message-ID: <55C001A5.9020907@example.org>, mail_id: QciSwqBl84A4, Hits: 1.439, size: 583, queued_as: 72CE941403, 838 ms
  65.  
  66. Aug 3 20:04:56 example postfix/smtp[25430]: 8D70441402: to=<steve@example.org>, orig_to=<mike@website.net>, relay=127.0.0.1[127.0.0.1]:10024, delay=1, delays=0.13/0.01/0.01/0.84, dsn=2.0.0, status=sent (250 2.0.0 from MTA(smtp:[127.0.0.1]:10025): 250 2.0.0 Ok: queued as 72CE941403)
  67.  
  68. Aug 3 20:04:56 example postfix/qmgr[25311]: 8D70441402: removed
  69. Aug 3 20:04:56 example dovecot: lda(steve): msgid=<55C001A5.9020907@example.org>: saved mail to INBOX
  70. Aug 3 20:04:56 example postfix/local[25377]: 72CE941403: to=<steve@example.org>, relay=local, delay=0.12, delays=0.01/0/0/0.1, dsn=2.0.0, status=sent (delivered to command: /usr/lib/dovecot/deliver)
  71. Aug 3 20:04:56 example postfix/qmgr[25311]: 72CE941403: removed
  72.  
  73. myorigin = localhost
  74. mydestination = localhost
  75.  
  76. virtual_alias_domains = hash:/etc/postfix/domains
  77.  
  78. example.org #
  79. example.com #
  80.  
  81. postmap /etc/postfix/domains
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement