Guest User

Untitled

a guest
Jul 25th, 2019
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.24 KB | None | 0 0
  1. /etc/postfix/main.cf
  2.  
  3. <raw>smtpd_helo_required = yes
  4. smtpd_delay_reject = yes
  5.  
  6. virtual_uid_maps = static:3000
  7. virtual_gid_maps = static:3000
  8. virtual_mailbox_base = /home/facteur
  9.  
  10. virtual_transport = dovecot
  11.  
  12. virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_mailbox_domains.cf
  13. virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
  14. virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
  15. relay_domains = mysql:/etc/postfix/mysql_relay_domains.cf
  16.  
  17. smtpd_recipient_restrictions =
  18. check_sender_access hash:/etc/postfix/sender_access,
  19. permit_mynetworks,
  20. permit_sasl_authenticated,
  21. reject_non_fqdn_hostname,
  22. reject_non_fqdn_sender,
  23. reject_non_fqdn_recipient,
  24. reject_unauth_destination,
  25. reject_unauth_pipelining,
  26. reject_invalid_hostname
  27.  
  28.  
  29. smtpd_sasl_auth_enable = yes
  30. smtpd_sasl_security_options = noanonymous
  31.  
  32. smtpd_sasl_type = dovecot
  33. smtpd_sasl_path = private/auth
  34.  
  35. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
  36. biff = no
  37.  
  38. append_dot_mydomain = no
  39.  
  40. readme_directory = no
  41.  
  42. compatibility_level = 2
  43.  
  44. delay_warning_time = 1h
  45.  
  46. dovecot_destination_recipient_limit = 1
  47.  
  48. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  49. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  50. smtpd_use_tls=yes
  51. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  52. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  53.  
  54. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated
  55. defer_unauth_destination
  56. myhostname = ns1.euuuhhh.tld
  57. alias_maps = hash:/etc/aliases
  58. alias_database = hash:/etc/aliases
  59. myorigin = /etc/mailname
  60. mydestination = $myhostname, ns1.euuuhhh.tld, localhost.euuuhhh.tld, , localhost
  61. relayhost =
  62. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  63. mailbox_size_limit = 0
  64. recipient_delimiter = +
  65. inet_interfaces = all
  66. inet_protocols = all</raw>
  67.  
  68. /etc/postfix/master.cf
  69. <raw>smtp inet n - y - - smtpd
  70.  
  71. pickup unix n - y 60 1 pickup
  72. cleanup unix n - y - 0 cleanup
  73. qmgr unix n - n 300 1 qmgr
  74. tlsmgr unix - - y 1000? 1 tlsmgr
  75. rewrite unix - - y - - trivial-rewrite
  76. bounce unix - - y - 0 bounce
  77. defer unix - - y - 0 bounce
  78. trace unix - - y - 0 bounce
  79. verify unix - - y - 1 verify
  80. flush unix n - y 1000? 0 flush
  81. proxymap unix - - n - - proxymap
  82. proxywrite unix - - n - 1 proxymap
  83. smtp unix - - y - - smtp
  84. relay unix - - y - - smtp
  85. -o syslog_name=postfix/$service_name
  86. showq unix n - y - - showq
  87. error unix - - y - - error
  88. retry unix - - y - - error
  89. discard unix - - y - - discard
  90. local unix - n n - - local
  91. virtual unix - n n - - virtual
  92. lmtp unix - - y - - lmtp
  93. anvil unix - - y - 1 anvil
  94. scache unix - - y - 1 scache
  95. postlog unix-dgram n - n - 1 postlogd
  96.  
  97.  
  98. maildrop unix - n n - - pipe
  99. flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
  100.  
  101.  
  102. uucp unix - n n - - pipe
  103. flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
  104.  
  105.  
  106. ifmail unix - n n - - pipe
  107. flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  108. bsmtp unix - n n - - pipe
  109. flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
  110. scalemail-backend unix - n n - 2 pipe
  111. flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store
  112. ${nexthop} ${user} ${extension}
  113. mailman unix - n n - - pipe
  114. flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  115. ${nexthop} ${user}
  116.  
  117. dovecot unix - n n - - pipe
  118. flags=DRhu user=facteur:facteur argv=/usr/lib/dovecot/deliver -f
  119. ${sender} -d ${user}@${nexthop}</raw>
  120.  
  121. /etc/dovecot/dovecot.conf
  122. <raw>log_timestamp = "%Y-%m-%d %H:%M:%S "
  123. disable_plaintext_auth = no
  124. mail_location = maildir:/home/facteur/%d/%n:INDEX=/home/facteur/%d/%n/indexes
  125. mail_privileged_group = mail
  126. protocols = imap pop3
  127. protocol lda {
  128. postmaster_address = [email protected]
  129. mail_plugin_dir = /usr/lib/dovecot/modules/lda
  130. auth_socket_path = /var/run/dovecot/auth-master
  131. }
  132.  
  133. ssl_cert = </etc/ssl/certs/ssl-cert-snakeoil.pem
  134. ssl_key = </etc/ssl/private/ssl-cert-snakeoil.key
  135.  
  136.  
  137. userdb {
  138. args = /etc/dovecot/dovecot-mysql.conf
  139. driver = sql
  140. }
  141. passdb {
  142. args = /etc/dovecot/dovecot-mysql.conf
  143. driver = sql
  144. }
  145.  
  146. service auth {
  147. unix_listener /var/spool/postfix/private/auth {
  148. group = postfix
  149. mode = 0660
  150. user = postfix
  151. }
  152. unix_listener auth-master {
  153. mode = 0600
  154. user = facteur
  155. }
  156. }
  157.  
  158. auth_mechanisms = plain login</raw>
  159.  
  160. here is the following error:
  161. <raw>Jul 23 09:30:45 ns1 postfix/smtpd[20799]: connect from unknown[45.xx.xx.xx]
  162. Jul 23 09:31:02 ns1 postfix/smtpd[20799]: warning:
  163. unknown[45.xx.xx.xx]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
  164. Jul 23 09:31:02 ns1 postfix/smtpd[20799]: disconnect from
  165. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  166. Jul 23 09:31:22 ns1 postfix/smtpd[20781]: connect from unknown[45.xx.xx.xx]
  167. Jul 23 09:31:24 ns1 postfix/smtpd[20799]: connect from unknown[45.xx.xx.xx]
  168. Jul 23 09:31:29 ns1 postfix/smtpd[20781]: warning:
  169. unknown[45.xx.xx.xx]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
  170. Jul 23 09:31:29 ns1 postfix/smtpd[20781]: disconnect from
  171. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  172. Jul 23 09:31:33 ns1 postfix/smtpd[20799]: warning:
  173. unknown[45.xx.xx.xx]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
  174. Jul 23 09:31:34 ns1 postfix/smtpd[20799]: disconnect from
  175. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  176. Jul 23 09:32:03 ns1 postfix/smtpd[20781]: connect from unknown[45.xx.xx.xx]
  177. Jul 23 09:32:04 ns1 postfix/pickup[20778]: 51EAC5C006F: uid=0
  178. Jul 23 09:32:04 ns1 postfix/cleanup[20819]: 51EAC5C006F:
  179. message-id=<[email protected]>
  180. Jul 23 09:32:04 ns1 postfix/qmgr[20779]: 51EAC5C006F:
  181. from=<[email protected]>, size=352, nrcpt=1 (queue active)
  182. Jul 23 09:32:04 ns1 dovecot:
  183. lda([email protected])<20828><5NcSHRTUNl1cUQAAbgMozA>:
  184. msgid=<[email protected]>: saved mail to
  185. INBOX
  186. Jul 23 09:32:04 ns1 postfix/pipe[20826]: 51EAC5C006F:
  187. to=<[email protected]>, relay=dovecot, delay=0.28,
  188. delays=0.17/0.02/0/0.09, dsn=2.0.0, status=sent (delivered via dovecot
  189. service (lda([email protected],)Error:
  190. net_connect_unix(/var/run/dovecot/stats-writer) failed: Permission ))
  191. Jul 23 09:32:04 ns1 postfix/qmgr[20779]: 51EAC5C006F: removed</raw>
  192.  
  193. In the file /etc/dovecot/dovecot.conf
  194. I added :
  195. <raw>service stats {
  196. unix_listener stats-reader {
  197. user = facteur
  198. group = facteur
  199. mode = 0660
  200. }
  201.  
  202. unix_listener stats-writer {
  203. user = facteur
  204. group = facteur
  205. mode = 0660
  206. }
  207. }</raw>
  208.  
  209. But I still have some mistakes that I do not understand:
  210. <raw>Jul 23 09:44:27 ns1 postfix/smtpd[20781]: disconnect from
  211. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  212. Jul 23 09:44:51 ns1 postfix/smtpd[20799]: connect from unknown[45.xx.xx.xx]
  213. Jul 23 09:44:54 ns1 postfix/smtpd[20799]: warning: SASL: Connect to
  214. private/auth failed: Connection refused
  215. Jul 23 09:44:54 ns1 postfix/smtpd[20799]: warning:
  216. unknown[45.xx.xx.xx]: SASL LOGIN authentication failed:
  217. Jul 23 09:44:55 ns1 postfix/smtpd[20799]: disconnect from
  218. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  219. Jul 23 09:44:55 ns1 postfix/smtpd[20781]: connect from unknown[45.xx.xx.xx]
  220. Jul 23 09:44:55 ns1 postfix/smtpd[20781]: warning: SASL: Connect to
  221. private/auth failed: Connection refused
  222. Jul 23 09:44:55 ns1 postfix/smtpd[20781]: fatal: no SASL
  223. authentication mechanisms
  224. Jul 23 09:44:56 ns1 postfix/master[20777]: warning: process
  225. /usr/lib/postfix/sbin/smtpd pid 20781 exit status 1
  226. Jul 23 09:45:04 ns1 dovecot: master: Dovecot v2.3.4.1 (f79e8e7e4)
  227. starting up for imap, pop3 (core dumps disabled)
  228. Jul 23 09:45:05 ns1 postfix/pickup[20778]: E694C5C0073: uid=0
  229. Jul 23 09:45:05 ns1 postfix/cleanup[21026]: E694C5C0073:
  230. message-id=<[email protected]>
  231. Jul 23 09:45:06 ns1 postfix/qmgr[20779]: E694C5C0073:
  232. from=<[email protected]>, size=352, nrcpt=1 (queue active)
  233. Jul 23 09:45:06 ns1 dovecot:
  234. lda([email protected])<21050><D6lFBSLXNl06UgAAbgMozA>:
  235. msgid=<[email protected]>: saved mail to
  236. INBOX
  237. Jul 23 09:45:06 ns1 postfix/pipe[21029]: E694C5C0073:
  238. to=<[email protected]>, relay=dovecot, delay=0.28,
  239. delays=0.16/0/0/0.11, dsn=2.0.0, status=sent (delivered via dovecot
  240. service)
  241. Jul 23 09:45:06 ns1 postfix/qmgr[20779]: E694C5C0073: removed
  242. Jul 23 09:45:08 ns1 postfix/anvil[20784]: statistics: max connection
  243. rate 2/60s for (smtp:45.xx.xx.xx) at Jul 23 09:35:20
  244. Jul 23 09:45:08 ns1 postfix/anvil[20784]: statistics: max connection
  245. count 1 for (smtp:45.xx.xx.xx) at Jul 23 09:35:20
  246. Jul 23 09:45:34 ns1 postfix/smtpd[20799]: connect from
  247. unknown[45.xx.xx.xx]</raw>
  248.  
  249. If I do a telnet:
  250. <raw>telnet 91.xx.xx.xx 25
  251. Trying 91.xx.xx.xx...
  252. Connected to 91.xx.xx.xx.
  253. Escape character is '^]'.
  254. 220 ns1.euuuhh.tld ESMTP Postfix (Debian/GNU)
  255. EHLO ns1.euuuhh.tld
  256. 250-ns1.euuuhh.tld
  257. 250-PIPELINING
  258. 250-SIZE 10240000
  259. 250-VRFY
  260. 250-ETRN
  261. 250-STARTTLS
  262. 250-AUTH PLAIN LOGIN
  263. 250-ENHANCEDSTATUSCODES
  264. 250-8BITMIME
  265. 250-DSN
  266. 250-SMTPUTF8
  267. 250 CHUNKING
  268. AUTH LOGIN xxxxxxxx
  269. 334 UGFzc3dvcmQ6
  270. xxxxxxxxxx
  271. 235 2.7.0 Authentication successful
  272. 250 2.1.0 Ok
  273. 451 4.3.5 <[email protected]>: Sender address rejected: Server
  274. configuration error</raw>
  275.  
  276. <raw>Jul 23 14:46:00 ns1 postfix/smtpd[26398]: send attr request = disconnect
  277. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: send attr ident = smtp:45.xx.xx.xx
  278. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: private/anvil: wanted
  279. attribute: status
  280. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: input attribute name: status
  281. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: input attribute value: 0
  282. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: private/anvil: wanted
  283. attribute: (list terminator)
  284. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: input attribute name: (end)
  285. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: disconnect from
  286. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  287. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: master_notify: status 1
  288. Jul 23 14:46:00 ns1 postfix/smtpd[26398]: connection closed
  289. Jul 23 14:46:08 ns1 postfix/pickup[26509]: CD14A5C0070: uid=0
  290. Jul 23 14:46:08 ns1 postfix/cleanup[26792]: CD14A5C0070:
  291. message-id=<[email protected]>
  292. Jul 23 14:46:08 ns1 postfix/qmgr[25840]: CD14A5C0070:
  293. from=<[email protected]>, size=352, nrcpt=1 (queue active)
  294. Jul 23 14:46:09 ns1 dovecot:
  295. lda([email protected])<26802><nTx2OrAdN12yaAAAbgMozA>:
  296. msgid=<[email protected]>: saved mail to
  297. INBOX
  298. Jul 23 14:46:09 ns1 postfix/pipe[26799]: CD14A5C0070:
  299. to=<[email protected]>, relay=dovecot, delay=0.27,
  300. delays=0.17/0.02/0/0.09, dsn=2.0.0, status=sent (delivered via dovecot
  301. service)
  302. Jul 23 14:46:09 ns1 postfix/qmgr[25840]: CD14A5C0070: removed
  303. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: connection established
  304. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: master_notify: status 0
  305. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: name_mask: resource
  306. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: name_mask: software
  307. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: connect from unknown[45.xx.xx.xx]
  308. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match: unknown: no match
  309. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match:
  310. 45.xx.xx.xx: no match
  311. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match: unknown: no match
  312. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match:
  313. 45.xx.xx.xx: no match
  314. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: smtp_stream_setup:
  315. maxtime=300 enable_deadline=0
  316. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostname:
  317. smtpd_client_event_limit_exceptions: unknown ~? 127.0.0.0/8
  318. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostaddr:
  319. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~? 127.0.0.0/8
  320. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostname:
  321. smtpd_client_event_limit_exceptions: unknown ~? [::ffff:127.0.0.0]/104
  322. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostaddr:
  323. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~?
  324. [::ffff:127.0.0.0]/104
  325. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostname:
  326. smtpd_client_event_limit_exceptions: unknown ~? [::1]/128
  327. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_hostaddr:
  328. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~? [::1]/128
  329. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match: unknown: no match
  330. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: match_list_match:
  331. 45.xx.xx.xx: no match
  332. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: send attr request = connect
  333. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: send attr ident = smtp:45.xx.xx.xx
  334. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: private/anvil: wanted
  335. attribute: status
  336. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute name: status
  337. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute value: 0
  338. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: private/anvil: wanted attribute: count
  339. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute name: count
  340. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute value: 1
  341. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: private/anvil: wanted attribute: rate
  342. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute name: rate
  343. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute value: 2
  344. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: private/anvil: wanted
  345. attribute: (list terminator)
  346. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: input attribute name: (end)
  347. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 220
  348. ns1.euuuhhh.tld ESMTP Postfix (Debian/GNU)
  349. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: xsasl_dovecot_server_create:
  350. SASL service=smtp, realm=(null)
  351. Jul 23 14:46:09 ns1 postfix/smtpd[26289]: name_mask: noanonymous
  352. Jul 23 14:46:09 ns1 postfix/smtpd[26289]:
  353. xsasl_dovecot_server_mech_filter: keep mechanism: PLAIN
  354. Jul 23 14:46:09 ns1 postfix/smtpd[26289]:
  355. xsasl_dovecot_server_mech_filter: keep mechanism: LOGIN
  356. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]: EHLO User
  357. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: match_list_match: unknown: no match
  358. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: match_list_match:
  359. 45.xx.xx.xx: no match
  360. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]:
  361. 250-ns1.euuuhhh.tld
  362. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-PIPELINING
  363. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]:
  364. 250-SIZE 10240000
  365. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-VRFY
  366. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-ETRN
  367. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-STARTTLS
  368. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]:
  369. 250-AUTH PLAIN LOGIN
  370. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]:
  371. 250-ENHANCEDSTATUSCODES
  372. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-8BITMIME
  373. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-DSN
  374. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250-SMTPUTF8
  375. Jul 23 14:46:12 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250 CHUNKING
  376. Jul 23 14:46:14 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]: RSET
  377. Jul 23 14:46:14 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 250 2.0.0 Ok
  378. Jul 23 14:46:17 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]: AUTH LOGIN
  379. Jul 23 14:46:17 ns1 postfix/smtpd[26289]: xsasl_dovecot_server_first:
  380. sasl_method LOGIN
  381. Jul 23 14:46:17 ns1 postfix/smtpd[26289]: xsasl_dovecot_handle_reply:
  382. auth reply: CONT?101?VXNlcm5hbWU6
  383. Jul 23 14:46:17 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 334
  384. VXNlcm5hbWU6
  385. Jul 23 14:46:20 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]:
  386. Z3V5QGZ1bm55aG9xxx
  387. Jul 23 14:46:20 ns1 postfix/smtpd[26289]: xsasl_dovecot_handle_reply:
  388. auth reply: CONT?101?UGFzc3dvcmQ6
  389. Jul 23 14:46:20 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 334
  390. UGFzc3dvcmQ6
  391. Jul 23 14:46:23 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]: Z3V5Mxxx
  392. Jul 23 14:46:23 ns1 dovecot: auth-worker(25874):
  393. sql([email protected],45.xx.xx.xx): unknown user
  394. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: xsasl_dovecot_handle_reply:
  395. auth reply: [email protected]
  396. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: warning:
  397. unknown[45.xx.xx.xx]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
  398. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 535
  399. 5.7.8 Error: authentication failed: UGFzc3dvcmQ6
  400. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: < unknown[45.xx.xx.xx]: QUIT
  401. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: > unknown[45.xx.xx.xx]: 221 2.0.0 Bye
  402. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostname:
  403. smtpd_client_event_limit_exceptions: unknown ~? 127.0.0.0/8
  404. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostaddr:
  405. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~? 127.0.0.0/8
  406. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostname:
  407. smtpd_client_event_limit_exceptions: unknown ~? [::ffff:127.0.0.0]/104
  408. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostaddr:
  409. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~?
  410. [::ffff:127.0.0.0]/104
  411. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostname:
  412. smtpd_client_event_limit_exceptions: unknown ~? [::1]/128
  413. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_hostaddr:
  414. smtpd_client_event_limit_exceptions: 45.xx.xx.xx ~? [::1]/128
  415. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_list_match: unknown: no match
  416. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: match_list_match:
  417. 45.xx.xx.xx: no match
  418. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: send attr request = disconnect
  419. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: send attr ident = smtp:45.xx.xx.xx
  420. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: private/anvil: wanted
  421. attribute: status
  422. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: input attribute name: status
  423. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: input attribute value: 0
  424. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: private/anvil: wanted
  425. attribute: (list terminator)
  426. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: input attribute name: (end)
  427. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: disconnect from
  428. unknown[45.xx.xx.xx] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4
  429. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: master_notify: status 1
  430. Jul 23 14:46:25 ns1 postfix/smtpd[26289]: connection closed</raw>
Advertisement
Add Comment
Please, Sign In to add comment