Advertisement
Guest User

Untitled

a guest
Jul 20th, 2015
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.46 KB | None | 0 0
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2.  
  3.  
  4. # Debian specific: Specifying a file name will cause the first
  5. # line of that file to be used as the name. The Debian default
  6. # is /etc/mailname.
  7. #myorigin = /etc/mailname
  8.  
  9. smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
  10. biff = no
  11.  
  12. # appending .domain is the MUA's job.
  13. append_dot_mydomain = no
  14.  
  15. # Uncomment the next line to generate "delayed mail" warnings
  16. #delay_warning_time = 4h
  17.  
  18. readme_directory = no
  19.  
  20. # TLS parameters
  21. smtpd_tls_cert_file = /etc/apache2/ssl/vivashost_com.crt
  22. smtpd_tls_key_file = /etc/apache2/ssl/vivashost.key
  23. smtpd_use_tls=yes
  24. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  25. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  26.  
  27. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  28. # information on enabling SSL in the smtp client.
  29.  
  30. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
  31. myhostname = mail.vivashost.com
  32. alias_maps = hash:/etc/postfix/aliases
  33. alias_database = hash:/etc/postfix/aliases
  34. myorigin = mail.vivashost.com
  35. mydestination = $myhostname, localhost, localhost.localdomain
  36. mynetworks = 127.0.0.1
  37. mailbox_size_limit = 0
  38. recipient_delimiter = +
  39. inet_interfaces = all
  40. #inet_protocols = all
  41. inet_protocols = ipv4
  42. virtual_alias_domains =
  43. mydomain = mail.vivashost.com
  44. allow_percent_hack = no
  45. swap_bangpath = no
  46. mynetworks_style = host
  47. smtpd_data_restrictions = reject_unauth_pipelining
  48. smtpd_reject_unlisted_recipient = yes
  49. smtpd_reject_unlisted_sender = yes
  50. smtpd_tls_protocols = !SSLv2 !SSLv3
  51. smtp_tls_protocols = !SSLv2 !SSLv3
  52. lmtp_tls_protocols = !SSLv2 !SSLv3
  53. smtpd_tls_mandatory_protocols = !SSLv2 !SSLv3
  54. smtp_tls_mandatory_protocols = !SSLv2 !SSLv3
  55. lmtp_tls_mandatory_protocols = !SSLv2 !SSLv3
  56. smtpd_tls_mandatory_exclude_ciphers = aNULL, eNULL, EXPORT, DES, RC4, MD5, PSK, aECDH, EDH-DSS-DES-CBC3-SHA, EDH-RSA-DES-CDC3-SHA, KRB5-DE5, CBC3-SHA
  57. smtpd_tls_dh1024_param_file = /etc/ssl/dhparams.pem
  58. smtp_tls_security_level = may
  59. smtp_tls_CAfile = $smtpd_tls_CAfile
  60. smtp_tls_loglevel = 0
  61. smtp_tls_note_starttls_offer = yes
  62. smtpd_sender_restrictions = reject_unknown_sender_domain, reject_non_fqdn_sender, reject_unlisted_sender, permit_mynetworks, reject_sender_login_mismatch, permit_sasl_authenticated
  63. delay_warning_time = 0h
  64. maximal_queue_lifetime = 4h
  65. bounce_queue_lifetime = 4h
  66. proxy_read_maps = $canonical_maps $lmtp_generic_maps $local_recipient_maps $mydestination $mynetworks $recipient_bcc_maps $recipient_canonical_maps $relay_domains $relay_recipient_maps $relocated_maps $sender_bcc_maps $sender_canonical_maps $smtp_generic_maps $smtpd_sender_login_maps $transport_maps $virtual_alias_domains $virtual_alias_maps $virtual_mailbox_domains $virtual_mailbox_maps $smtpd_sender_restrictions
  67. smtp_data_init_timeout = 240s
  68. smtp_data_xfer_timeout = 600s
  69. smtpd_helo_required = yes
  70. smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_non_fqdn_helo_hostname, reject_invalid_helo_hostname, check_helo_access pcre:/etc/postfix/helo_access.pcre
  71. queue_run_delay = 300s
  72. minimal_backoff_time = 300s
  73. maximal_backoff_time = 4000s
  74. enable_original_recipient = no
  75. disable_vrfy_command = yes
  76. home_mailbox = Maildir/
  77. allow_min_user = no
  78. message_size_limit = 15728640
  79. virtual_minimum_uid = 2000
  80. virtual_uid_maps = static:2000
  81. virtual_gid_maps = static:2000
  82. virtual_mailbox_base = /var/vmail
  83. transport_maps = proxy:mysql:/etc/postfix/mysql/transport_maps_user.cf, proxy:mysql:/etc/postfix/mysql/transport_maps_domain.cf
  84. virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql/virtual_mailbox_domains.cf
  85. virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql/virtual_mailbox_maps.cf
  86. virtual_alias_maps = proxy:mysql:/etc/postfix/mysql/virtual_alias_maps.cf, proxy:mysql:/etc/postfix/mysql/domain_alias_maps.cf, proxy:mysql:/etc/postfix/mysql/catchall_maps.cf, proxy:mysql:/etc/postfix/mysql/domain_alias_catchall_maps.cf
  87. sender_bcc_maps = proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_user.cf, proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_domain.cf
  88. recipient_bcc_maps = proxy:mysql:/etc/postfix/mysql/recipient_bcc_maps_user.cf, proxy:mysql:/etc/postfix/mysql/recipient_bcc_maps_domain.cf
  89. relay_domains = $mydestination, proxy:mysql:/etc/postfix/mysql/relay_domains.cf
  90. smtpd_sender_login_maps = proxy:mysql:/etc/postfix/mysql/sender_login_maps.cf
  91. smtpd_sasl_auth_enable = yes
  92. smtpd_sasl_local_domain =
  93. broken_sasl_auth_clients = yes
  94. smtpd_sasl_security_options = noanonymous
  95. smtpd_tls_auth_only = yes
  96. smtpd_recipient_restrictions = reject_unknown_recipient_domain, reject_non_fqdn_recipient, reject_unlisted_recipient, check_policy_service inet:127.0.0.1:7777, check_policy_service inet:127.0.0.1:10031, permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
  97. smtpd_end_of_data_restrictions = check_policy_service inet:127.0.0.1:7777, check_policy_service inet:127.0.0.1:10031,
  98. smtpd_tls_security_level = may
  99. smtpd_tls_loglevel = 0
  100. smtpd_tls_CAfile = /etc/apache2/ssl/vivashost_com.crt
  101. tls_random_source = dev:/dev/urandom
  102. mailbox_command = /usr/lib/dovecot/deliver
  103. virtual_transport = dovecot
  104. dovecot_destination_recipient_limit = 1
  105. smtpd_sasl_type = dovecot
  106. smtpd_sasl_path = private/dovecot-auth
  107. content_filter = smtp-amavis:[127.0.0.1]:10024
  108. smtp-amavis_destination_recipient_limit = 1
  109.  
  110. smtpd_tls_cert_file = /etc/apache2/ssl/vivashost_com.crt
  111. smtpd_tls_key_file = /etc/apache2/ssl/vivashost.key
  112.  
  113. Jul 20 16:21:28 mail postfix/cleanup[8680]: 98A97961471: message-id=<c3ff223798e540ab30a2f481689af8eb@vivashost.com>
  114. Jul 20 16:21:28 mail postfix/qmgr[1981]: 98A97961471: from=<sales@vivashost.com>, size=589, nrcpt=1 (queue active)
  115. Jul 20 16:21:28 mail roundcube: <7b85ebcf> User sales@vivashost.com [84.22.3.141]; Message for office@bowling-korona.com; 250: 2.0.0 Ok: queued as 98A97961471
  116. Jul 20 16:21:28 mail postfix/smtpd[8667]: disconnect from localhost[127.0.0.1]
  117. Jul 20 16:21:31 mail postfix/smtpd[8704]: connect from localhost[127.0.0.1]
  118. Jul 20 16:21:31 mail postfix/smtpd[8704]: 64F00961480: client=localhost[127.0.0.1]
  119. Jul 20 16:21:31 mail postfix/cleanup[8680]: 64F00961480: message-id=<c3ff223798e540ab30a2f481689af8eb@vivashost.com>
  120. Jul 20 16:21:31 mail postfix/qmgr[1981]: 64F00961480: from=<sales@vivashost.com>, size=1874, nrcpt=1 (queue active)
  121. Jul 20 16:21:31 mail amavis[1646]: (01646-01) Passed CLEAN {RelayedInternal}, MYNETS/MYUSERS LOCAL [127.0.0.1]:43922 [127.0.0.1] <sales@vivashost.com> -> <office@bowling-korona.com>, Queue-ID: 98A97961471, Message-ID: <c3ff223798e540ab30a2f481689af8eb@vivashost.com>, mail_id: HqaXyF6Pj_jK, Hits: -1, size: 589, queued_as: 64F00961480, dkim_new=dkim:vivashost.com, 2726 ms
  122. Jul 20 16:21:31 mail postfix/smtpd[8704]: disconnect from localhost[127.0.0.1]
  123. Jul 20 16:21:31 mail postfix/smtp[8686]: 98A97961471: to=<office@bowling-korona.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=4, delays=1.2/0.01/0.01/2.8, 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 64F00961480)
  124. Jul 20 16:21:31 mail postfix/qmgr[1981]: 98A97961471: removed
  125. Jul 20 16:21:32 mail postfix/pipe[8705]: 64F00961480: to=<office@bowling-korona.com>, relay=dovecot, delay=0.77, delays=0.05/0/0/0.72, dsn=2.0.0, status=sent (delivered via dovecot service)
  126. Jul 20 16:21:32 mail postfix/qmgr[1981]: 64F00961480: removed
  127. Jul 20 16:22:09 mail postfix/smtpd[8667]: connect from localhost[127.0.0.1]
  128. Jul 20 16:22:09 mail cbpolicyd[8676]: module=Greylisting, action=pass, host=127.0.0.1, helo=www.vivashost.com, from=office@bowling-korona.com, to=sales@vivashost.com, reason=whitelisted
  129. Jul 20 16:22:09 mail postfix/smtpd[8667]: EA38B961B5F: client=localhost[127.0.0.1], sasl_method=LOGIN, sasl_username=office@bowling-korona.com
  130. Jul 20 16:22:11 mail postfix/cleanup[8680]: EA38B961B5F: message-id=<17cac14e5b09348df3ecf30326b189af@bowling-korona.com>
  131. Jul 20 16:22:11 mail postfix/qmgr[1981]: EA38B961B5F: from=<office@bowling-korona.com>, size=795, nrcpt=1 (queue active)
  132. Jul 20 16:22:11 mail roundcube: <5u52cuak> User office@bowling-korona.com [84.22.3.141]; Message for sales@vivashost.com; 250: 2.0.0 Ok: queued as EA38B961B5F
  133. Jul 20 16:22:11 mail amavis[1643]: (01643-02) NOTICE: reconnecting in response to: err=2006, HY000, DBD::mysql::st execute failed: MySQL server has gone away at (eval 135) line 170, <GEN33> line 46.
  134. Jul 20 16:22:11 mail postfix/smtpd[8667]: disconnect from localhost[127.0.0.1]
  135. Jul 20 16:22:11 mail postfix/smtpd[8704]: connect from localhost[127.0.0.1]
  136. Jul 20 16:22:11 mail postfix/smtpd[8704]: 9D597961B76: client=localhost[127.0.0.1]
  137. Jul 20 16:22:11 mail postfix/cleanup[8680]: 9D597961B76: message-id=<17cac14e5b09348df3ecf30326b189af@bowling-korona.com>
  138. Jul 20 16:22:11 mail postfix/smtpd[8704]: disconnect from localhost[127.0.0.1]
  139. Jul 20 16:22:11 mail postfix/qmgr[1981]: 9D597961B76: from=<office@bowling-korona.com>, size=1270, nrcpt=1 (queue active)
  140. Jul 20 16:22:11 mail amavis[1643]: (01643-02) Passed CLEAN {RelayedInternal}, MYNETS/MYUSERS LOCAL [127.0.0.1]:43970 [127.0.0.1] <office@bowling-korona.com> -> <sales@vivashost.com>, Queue-ID: EA38B961B5F, Message-ID: <17cac14e5b09348df3ecf30326b189af@bowling-korona.com>, mail_id: QJYEDkpppYay, Hits: -0.999, size: 795, queued_as: 9D597961B76, 592 ms
  141. Jul 20 16:22:11 mail postfix/smtp[8686]: EA38B961B5F: to=<sales@vivashost.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=1.9, delays=1.2/0/0/0.64, 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 9D597961B76)
  142. Jul 20 16:22:11 mail postfix/qmgr[1981]: EA38B961B5F: removed
  143. Jul 20 16:22:11 mail postfix/pipe[8705]: 9D597961B76: to=<sales@vivashost.com>, relay=dovecot, delay=0.16, delays=0.03/0/0/0.13, dsn=2.0.0, status=sent (delivered via dovecot service)
  144. Jul 20 16:22:11 mail postfix/qmgr[1981]: 9D597961B76: removed
  145. Jul 20 16:22:25 mail postfix/smtpd[8667]: connect from localhost[127.0.0.1]
  146. Jul 20 16:22:25 mail postfix/smtpd[8667]: AA67D961B5F: client=localhost[127.0.0.1], sasl_method=LOGIN, sasl_username=office@bowling-korona.com
  147. Jul 20 16:22:26 mail postfix/cleanup[8680]: AA67D961B5F: message-id=<6b572b4c1060f64285ca53852d924eee@bowling-korona.com>
  148. Jul 20 16:22:26 mail postfix/qmgr[1981]: AA67D961B5F: from=<office@bowling-korona.com>, size=590, nrcpt=1 (queue active)
  149. Jul 20 16:22:26 mail roundcube: <5u52cuak> User office@bowling-korona.com [84.22.3.141]; Message for thelex@abv.bg; 250: 2.0.0 Ok: queued as AA67D961B5F
  150. Jul 20 16:22:26 mail amavis[1644]: (01644-02) NOTICE: reconnecting in response to: err=2006, HY000, DBD::mysql::st execute failed: MySQL server has gone away at (eval 135) line 170, <GEN33> line 61.
  151. Jul 20 16:22:27 mail postfix/smtpd[8667]: disconnect from localhost[127.0.0.1]
  152. Jul 20 16:22:27 mail postfix/smtpd[8704]: connect from localhost[127.0.0.1]
  153. Jul 20 16:22:27 mail postfix/smtpd[8704]: 32094961B78: client=localhost[127.0.0.1]
  154. Jul 20 16:22:27 mail postfix/cleanup[8680]: 32094961B78: message-id=<6b572b4c1060f64285ca53852d924eee@bowling-korona.com>
  155. Jul 20 16:22:27 mail postfix/qmgr[1981]: 32094961B78: from=<office@bowling-korona.com>, size=1053, nrcpt=1 (queue active)
  156. Jul 20 16:22:27 mail postfix/smtpd[8704]: disconnect from localhost[127.0.0.1]
  157. Jul 20 16:22:27 mail amavis[1644]: (01644-02) Passed CLEAN {RelayedInternal}, MYNETS/MYUSERS LOCAL [127.0.0.1]:43993 [127.0.0.1] <office@bowling-korona.com> -> <thelex@abv.bg>, Queue-ID: AA67D961B5F, Message-ID: <6b572b4c1060f64285ca53852d924eee@bowling-korona.com>, mail_id: mY2PyPf8JzFv, Hits: -1, size: 590, queued_as: 32094961B78, 414 ms
  158. Jul 20 16:22:27 mail postfix/smtp[8686]: AA67D961B5F: to=<thelex@abv.bg>, relay=127.0.0.1[127.0.0.1]:10024, delay=1.7, delays=1.3/0/0/0.44, 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 32094961B78)
  159. Jul 20 16:22:27 mail postfix/qmgr[1981]: AA67D961B5F: removed
  160. Jul 20 16:22:33 mail postfix/smtp[8755]: 32094961B78: host pmx.abv.bg[194.153.145.94] said: 450 4.7.1 <thelex@abv.bg>: Recipient address rejected: Service is temporarily unavailable. Please try again later. (in reply to RCPT TO command)
  161. Jul 20 16:22:39 mail postfix/smtp[8755]: 32094961B78: to=<thelex@abv.bg>, relay=pmx.abv.bg[194.153.145.78]:25, delay=12, delays=0.03/0.01/12/0.09, dsn=4.7.1, status=deferred (host pmx.abv.bg[194.153.145.78] said: 450 4.7.1 <thelex@abv.bg>: Recipient address rejected: Service is temporarily unavailable. Please try again later. (in reply to RCPT TO command))
  162. Jul 20 16:22:41 mail postfix/smtpd[8667]: connect from localhost[127.0.0.1]
  163. Jul 20 16:22:41 mail postfix/smtpd[8667]: C7E65961B79: client=localhost[127.0.0.1], sasl_method=LOGIN, sasl_username=office@bowling-korona.com
  164. Jul 20 16:22:42 mail postfix/cleanup[8680]: C7E65961B79: message-id=<0cbaf302e41676dc7e77e220082d97e7@bowling-korona.com>
  165. Jul 20 16:22:42 mail postfix/qmgr[1981]: C7E65961B79: from=<office@bowling-korona.com>, size=620, nrcpt=1 (queue active)
  166. Jul 20 16:22:42 mail roundcube: <5u52cuak> User office@bowling-korona.com [84.22.3.141]; Message for vivas.industries@gmail.com; 250: 2.0.0 Ok: queued as C7E65961B79
  167. Jul 20 16:22:43 mail postfix/smtpd[8667]: disconnect from localhost[127.0.0.1]
  168. Jul 20 16:22:44 mail postfix/smtpd[8704]: connect from localhost[127.0.0.1]
  169. Jul 20 16:22:44 mail postfix/smtpd[8704]: 75741961B7B: client=localhost[127.0.0.1]
  170. Jul 20 16:22:44 mail postfix/cleanup[8680]: 75741961B7B: message-id=<0cbaf302e41676dc7e77e220082d97e7@bowling-korona.com>
  171. Jul 20 16:22:44 mail postfix/smtpd[8704]: disconnect from localhost[127.0.0.1]
  172. Jul 20 16:22:44 mail postfix/qmgr[1981]: 75741961B7B: from=<office@bowling-korona.com>, size=1109, nrcpt=1 (queue active)
  173. Jul 20 16:22:44 mail amavis[1646]: (01646-02) Passed CLEAN {RelayedInternal}, MYNETS/MYUSERS LOCAL [127.0.0.1]:44020 [127.0.0.1] <office@bowling-korona.com> -> <vivas.industries@gmail.com>, Queue-ID: C7E65961B79, Message-ID: <0cbaf302e41676dc7e77e220082d97e7@bowling-korona.com>, mail_id: ByGeAG4whRpc, Hits: -1, size: 620, queued_as: 75741961B7B, 1581 ms
  174. Jul 20 16:22:44 mail postfix/smtp[8686]: C7E65961B79: to=<vivas.industries@gmail.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=3.2, delays=1.6/0/0/1.6, 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 75741961B7B)
  175. Jul 20 16:22:44 mail postfix/qmgr[1981]: C7E65961B79: removed
  176. Jul 20 16:22:48 mail postfix/smtp[8755]: 75741961B7B: to=<vivas.industries@gmail.com>, relay=gmail-smtp-in.l.google.com[173.194.67.27]:25, delay=4.3, delays=0.03/0/2.1/2.1, dsn=2.0.0, status=sent (250 2.0.0 OK 1437398567 fw6si13354744wib.35 - gsmtp)
  177. Jul 20 16:22:48 mail postfix/qmgr[1981]: 75741961B7B: removed
  178. Jul 20 16:24:04 mail postfix/smtpd[8796]: connect from mail-qg0-f44.google.com[209.85.192.44]
  179. Jul 20 16:24:05 mail postfix/smtpd[8796]: 8CF30961B7B: client=mail-qg0-f44.google.com[209.85.192.44]
  180. Jul 20 16:24:06 mail postfix/cleanup[8680]: 8CF30961B7B: message-id=<CAFbC49b56+v-3z-5z=HAsKf4FsGj65vRZJmE-uJz2mWUC1xi3A@mail.gmail.com>
  181. Jul 20 16:24:06 mail postfix/qmgr[1981]: 8CF30961B7B: from=<vivas.industries@gmail.com>, size=1790, nrcpt=1 (queue active)
  182. Jul 20 16:24:06 mail amavis[1645]: (01645-02) NOTICE: reconnecting in response to: err=2006, HY000, DBD::mysql::st execute failed: MySQL server has gone away at (eval 135) line 170, <GEN33> line 369.
  183. Jul 20 16:24:07 mail postfix/smtpd[8796]: disconnect from mail-qg0-f44.google.com[209.85.192.44]
  184. Jul 20 16:24:08 mail postfix/smtpd[8704]: connect from localhost[127.0.0.1]
  185. Jul 20 16:24:08 mail postfix/smtpd[8704]: 53588961B7C: client=localhost[127.0.0.1]
  186. Jul 20 16:24:08 mail postfix/cleanup[8680]: 53588961B7C: message-id=<CAFbC49b56+v-3z-5z=HAsKf4FsGj65vRZJmE-uJz2mWUC1xi3A@mail.gmail.com>
  187. Jul 20 16:24:08 mail postfix/smtpd[8704]: disconnect from localhost[127.0.0.1]
  188. Jul 20 16:24:08 mail postfix/qmgr[1981]: 53588961B7C: from=<vivas.industries@gmail.com>, size=2382, nrcpt=1 (queue active)
  189. Jul 20 16:24:08 mail amavis[1645]: (01645-02) Passed CLEAN {RelayedInternal}, MYUSERS LOCAL [209.85.192.44]:36678 [209.85.192.44] <vivas.industries@gmail.com> -> <office@bowling-korona.com>, Queue-ID: 8CF30961B7B, Message-ID: <CAFbC49b56+v-3z-5z=HAsKf4FsGj65vRZJmE-uJz2mWUC1xi3A@mail.gmail.com>, mail_id: c26Ql9-d7-Kl, Hits: -0.1, size: 1790, queued_as: 53588961B7C, dkim_sd=20120113:gmail.com, 1498 ms
  190. Jul 20 16:24:08 mail postfix/smtp[8686]: 8CF30961B7B: to=<office@bowling-korona.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=3, delays=1.4/0/0/1.5, 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 53588961B7C)
  191. Jul 20 16:24:08 mail postfix/qmgr[1981]: 8CF30961B7B: removed
  192. Jul 20 16:24:08 mail postfix/pipe[8809]: 53588961B7C: to=<office@bowling-korona.com>, relay=dovecot, delay=0.2, delays=0.05/0/0/0.14, dsn=2.0.0, status=sent (delivered via dovecot service)
  193. Jul 20 16:24:08 mail postfix/qmgr[1981]: 53588961B7C: removed
  194. Jul 20 16:27:27 mail postfix/anvil[8797]: statistics: max connection rate 1/60s for (smtp:209.85.192.44) at Jul 20 16:24:04
  195. Jul 20 16:27:27 mail postfix/anvil[8797]: statistics: max connection count 1 for (smtp:209.85.192.44) at Jul 20 16:24:04
  196. Jul 20 16:27:27 mail postfix/anvil[8797]: statistics: max cache size 1 at Jul 20 16:24:04
  197. Jul 20 16:31:35 mail postfix/qmgr[1981]: 32094961B78: from=<office@bowling-korona.com>, size=1053, nrcpt=1 (queue active)
  198. Jul 20 16:31:41 mail postfix/smtp[8880]: 32094961B78: to=<thelex@abv.bg>, relay=pmx.abv.bg[194.153.145.106]:25, delay=554, delays=549/0.02/5.2/0.09, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 15002140073)
  199. Jul 20 16:31:41 mail postfix/qmgr[1981]: 32094961B78: removed
  200. Jul 20 17:15:35 mail postfix/master[1968]: terminating on signal 15
  201. Jul 20 17:15:36 mail postfix/master[9325]: daemon started -- version 2.11.0, configuration /etc/postfix
  202. Jul 20 17:19:03 mail amavis[1035]: starting. /usr/sbin/amavisd-new at mail.vivashost.com amavisd-new-2.7.1 (20120429), Unicode aware
  203. Jul 20 17:19:04 mail amavis[1129]: Net::Server: Group Not Defined. Defaulting to EGID '120 120'
  204. Jul 20 17:19:04 mail amavis[1129]: Net::Server: User Not Defined. Defaulting to EUID '111'
  205. Jul 20 17:19:04 mail amavis[1129]: Module Amavis::Conf 2.303
  206. Jul 20 17:19:04 mail amavis[1129]: Module Archive::Zip 1.30
  207. Jul 20 17:19:04 mail amavis[1129]: Module BerkeleyDB 0.54
  208. Jul 20 17:19:04 mail amavis[1129]: Module Compress::Zlib 2.06
  209. Jul 20 17:19:04 mail amavis[1129]: Module Convert::TNEF 0.18
  210. Jul 20 17:19:04 mail amavis[1129]: Module Convert::UUlib 1.4
  211. Jul 20 17:19:04 mail amavis[1129]: Module Crypt::OpenSSL::RSA 0.28
  212. Jul 20 17:19:04 mail amavis[1129]: Module DBD::mysql 4.025
  213. Jul 20 17:19:04 mail amavis[1129]: Module DBI 1.63
  214. Jul 20 17:19:04 mail amavis[1129]: Module DB_File 1.827
  215. Jul 20 17:19:04 mail amavis[1129]: Module Digest::MD5 2.52
  216. Jul 20 17:19:04 mail amavis[1129]: Module Digest::SHA 5.84_01
  217. Jul 20 17:19:04 mail amavis[1129]: Module File::Temp 0.23
  218. Jul 20 17:19:04 mail amavis[1129]: Module IO::Socket::INET6 2.71
  219. Jul 20 17:19:04 mail amavis[1129]: Module MIME::Entity 5.505
  220. Jul 20 17:19:04 mail amavis[1129]: Module MIME::Parser 5.505
  221. Jul 20 17:19:04 mail amavis[1129]: Module MIME::Tools 5.505
  222. Jul 20 17:19:04 mail amavis[1129]: Module Mail::DKIM::Signer 0.4
  223. Jul 20 17:19:04 mail amavis[1129]: Module Mail::DKIM::Verifier 0.4
  224. Jul 20 17:19:04 mail amavis[1129]: Module Mail::Header 2.12
  225. Jul 20 17:19:04 mail amavis[1129]: Module Mail::Internet 2.12
  226. Jul 20 17:19:04 mail amavis[1129]: Module Mail::SPF v2.009
  227. Jul 20 17:19:04 mail amavis[1129]: Module Mail::SpamAssassin 3.004000
  228. Jul 20 17:19:04 mail amavis[1129]: Module Net::DNS 0.68
  229. Jul 20 17:19:04 mail amavis[1129]: Module Net::Server 2.007
  230. Jul 20 17:19:04 mail amavis[1129]: Module NetAddr::IP 4.071
  231. Jul 20 17:19:04 mail amavis[1129]: Module Socket6 0.25
  232. Jul 20 17:19:04 mail amavis[1129]: Module Time::HiRes 1.9725
  233. Jul 20 17:19:04 mail amavis[1129]: Module URI 1.60
  234. Jul 20 17:19:04 mail amavis[1129]: Module Unix::Syslog 1.1
  235. Jul 20 17:19:04 mail amavis[1129]: Amavis::DB code loaded
  236. Jul 20 17:19:04 mail amavis[1129]: SQL base code loaded
  237. Jul 20 17:19:04 mail amavis[1129]: SQL::Log code loaded
  238. Jul 20 17:19:04 mail amavis[1129]: SQL::Quarantine loaded
  239. Jul 20 17:19:04 mail amavis[1129]: Lookup::SQL code loaded
  240. Jul 20 17:19:04 mail amavis[1129]: Lookup::LDAP code NOT loaded
  241. Jul 20 17:19:04 mail amavis[1129]: AM.PDP-in proto code loaded
  242. Jul 20 17:19:04 mail amavis[1129]: SMTP-in proto code loaded
  243. Jul 20 17:19:04 mail amavis[1129]: Courier proto code NOT loaded
  244. Jul 20 17:19:04 mail amavis[1129]: SMTP-out proto code loaded
  245. Jul 20 17:19:04 mail amavis[1129]: Pipe-out proto code NOT loaded
  246. Jul 20 17:19:04 mail amavis[1129]: BSMTP-out proto code NOT loaded
  247. Jul 20 17:19:04 mail amavis[1129]: Local-out proto code NOT loaded
  248. Jul 20 17:19:04 mail amavis[1129]: OS_Fingerprint code NOT loaded
  249. Jul 20 17:19:04 mail amavis[1129]: ANTI-VIRUS code loaded
  250. Jul 20 17:19:04 mail amavis[1129]: ANTI-SPAM code loaded
  251. Jul 20 17:19:04 mail amavis[1129]: ANTI-SPAM-EXT code NOT loaded
  252. Jul 20 17:19:04 mail amavis[1129]: ANTI-SPAM-C code NOT loaded
  253. Jul 20 17:19:04 mail amavis[1129]: ANTI-SPAM-SA code loaded
  254. Jul 20 17:19:04 mail amavis[1129]: Unpackers code loaded
  255. Jul 20 17:19:04 mail amavis[1129]: DKIM code loaded
  256. Jul 20 17:19:04 mail amavis[1129]: Tools code NOT loaded
  257. Jul 20 17:19:04 mail amavis[1129]: Found $file at /usr/bin/file
  258. Jul 20 17:19:04 mail amavis[1129]: Found $altermime at /usr/bin/altermime
  259. Jul 20 17:19:04 mail amavis[1129]: Internal decoder for .mail
  260. Jul 20 17:19:04 mail amavis[1129]: No decoder for .F
  261. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .Z at /bin/uncompress
  262. Jul 20 17:19:04 mail amavis[1129]: Internal decoder for .gz
  263. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .bz2 at /bin/bzip2 -d
  264. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .xz at /usr/bin/xz -dc
  265. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .lzma at /usr/bin/xz -dc --format=lzma
  266. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .lzo at /usr/bin/lzop -d
  267. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .rpm at /usr/bin/rpm2cpio
  268. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .cpio at /bin/pax
  269. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .tar at /bin/pax
  270. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .deb at /usr/bin/ar
  271. Jul 20 17:19:04 mail amavis[1129]: Internal decoder for .zip
  272. Jul 20 17:19:04 mail amavis[1129]: Internal decoder for .kmz
  273. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .7z at /usr/bin/7zr
  274. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .rar at /usr/bin/unrar-free
  275. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .arj at /usr/bin/arj
  276. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .arc at /usr/bin/nomarch
  277. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .zoo at /usr/bin/zoo
  278. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .doc at /usr/bin/ripole
  279. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .cab at /usr/bin/cabextract
  280. Jul 20 17:19:04 mail amavis[1129]: No decoder for .tnef
  281. Jul 20 17:19:04 mail amavis[1129]: Internal decoder for .tnef
  282. Jul 20 17:19:04 mail amavis[1129]: Found decoder for .exe at /usr/bin/unrar-free; /usr/bin/arj
  283. Jul 20 17:19:04 mail amavis[1129]: Using primary internal av scanner code for ClamAV-clamd
  284. Jul 20 17:19:04 mail amavis[1129]: Found secondary av scanner ClamAV-clamscan at /usr/bin/clamscan
  285. Jul 20 17:19:04 mail amavis[1129]: Deleting db files nanny.db,snmp.db,__db.001,__db.002,__db.003 in /var/lib/amavis/db
  286. Jul 20 17:19:04 mail amavis[1129]: Creating db in /var/lib/amavis/db/; BerkeleyDB 0.54, libdb 5.3
  287. Jul 20 17:19:16 mail postfix/master[2147]: daemon started -- version 2.11.0, configuration /etc/postfix
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement