Page 1 of 1

Exim don't send emails

Posted: Fri Aug 11, 2017 1:25 am
by diegofvg
I'm trying to solve this problem of sending emails.
I already tried everything that was here in the forum but the error remains.

Both the webmail and the email client (outlook) the error happens.

Here is the EXIM mainlog of my last sent message:

2017-08-10 22:16:03 1dfyYV-0000tK-G4 <= [email protected] U=admin P=local S=586 id=[email protected]
2017-08-10 22:16:03 1dfyYV-0000tK-G4 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:16:26 1dftQT-0007ru-Jk gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 22:16:29 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.167])

MXToolBox
http://mxtoolbox.com/domain/abcjobs.com.br/

My EXIM Config
SpoilerShow
######################################################################
# #
# Exim configuration file for Vesta Control Panel #
# #
######################################################################

SPAMASSASSIN = yes
SPAM_SCORE = 50
#CLAMD = yes
disable_ipv6 = true

domainlist local_domains = dsearch;/etc/exim4/domains/
domainlist relay_to_domains = dsearch;/etc/exim4/domains/
hostlist relay_from_hosts = 127.0.0.1
hostlist whitelist = net-iplsearch;/etc/exim4/white-blocks.conf
hostlist spammers = net-iplsearch;/etc/exim4/spam-blocks.conf
no_local_from_check
untrusted_set_sender = *
acl_smtp_connect = acl_check_spammers
acl_smtp_mail = acl_check_mail
acl_smtp_rcpt = acl_check_rcpt
acl_smtp_data = acl_check_data
acl_smtp_mime = acl_check_mime

.ifdef SPAMASSASSIN
spamd_address = 127.0.0.1 783
.endif

.ifdef CLAMD
av_scanner = clamd: /var/run/clamav/clamd.ctl
.endif

tls_advertise_hosts = *
tls_certificate = /usr/local/vesta/ssl/certificate.crt
tls_privatekey = /usr/local/vesta/ssl/certificate.key

daemon_smtp_ports = 25 : 465 : 587 : 2525
tls_on_connect_ports = 465
never_users = root
host_lookup = *
rfc1413_hosts = *
rfc1413_query_timeout = 5s
ignore_bounce_errors_after = 2d
timeout_frozen_after = 7d

DKIM_DOMAIN = ${lc:${domain:$h_from:}}
DKIM_FILE = /etc/exim4/domains/${lc:${domain:$h_from:}}/dkim.pem
DKIM_PRIVATE_KEY = ${if exists{DKIM_FILE}{DKIM_FILE}{0}}



######################################################################
# ACL CONFIGURATION #
# Specifies access control lists for incoming SMTP mail #
######################################################################
begin acl

acl_check_spammers:
accept hosts = +whitelist

drop message = Your host in blacklist on this server.
log_message = Host in blacklist
hosts = +spammers

accept


acl_check_mail:
deny condition = ${if eq{$sender_helo_name}{}}
message = HELO required before MAIL

drop message = Helo name contains a ip address (HELO was $sender_helo_name) and not is valid
condition = ${if match{$sender_helo_name}{\N((\d{1,3}[.-]\d{1,3}[.-]\d{1,3}[.-]\d{1,3})|([0-9a-f]{8})|([0-9A-F]{8}))\N}{yes}{no}}
condition = ${if match {${lookup dnsdb{>: defer_never,ptr=$sender_host_address}}\}{$sender_helo_name}{no}{yes}}
delay = 45s

drop condition = ${if isip{$sender_helo_name}}
message = Access denied - Invalid HELO name (See RFC2821 4.1.3)

drop condition = ${if eq{[$interface_address]}{$sender_helo_name}}
message = $interface_address is _my_ address

accept


acl_check_rcpt:
accept hosts = :

deny message = Restricted characters in address
domains = +local_domains
local_parts = ^[.] : ^.*[@%!/|]

deny message = Restricted characters in address
domains = !+local_domains
local_parts = ^[./|] : ^.*[@%!] : ^.*/\\.\\./

require verify = sender

accept hosts = +relay_from_hosts
control = submission

accept authenticated = *
control = submission/domain=

deny message = Rejected because $sender_host_address is in a black list at $dnslist_domain\n$dnslist_text
hosts = !+whitelist
dnslists = ${readfile {/etc/exim4/dnsbl.conf}{:}}

require message = relay not permitted
domains = +local_domains : +relay_to_domains

deny message = smtp auth requried
sender_domains = +local_domains
!authenticated = *

require verify = recipient

.ifdef CLAMD
warn set acl_m0 = no

warn condition = ${if exists {/etc/exim4/domains/$domain/antivirus}{yes}{no}}
set acl_m0 = yes
.endif

.ifdef SPAMASSASSIN
warn set acl_m1 = no

warn condition = ${if exists {/etc/exim4/domains/$domain/antispam}{yes}{no}}
set acl_m1 = yes
.endif

accept


acl_check_data:
.ifdef CLAMD
deny message = Message contains a virus ($malware_name) and has been rejected
malware = *
condition = ${if eq{$acl_m0}{yes}{yes}{no}}
.endif

.ifdef SPAMASSASSIN
warn !authenticated = *
hosts = !+relay_from_hosts
condition = ${if < {$message_size}{100K}}
condition = ${if eq{$acl_m1}{yes}{yes}{no}}
spam = nobody:true/defer_ok
add_header = X-Spam-Score: $spam_score_int
add_header = X-Spam-Bar: $spam_bar
add_header = X-Spam-Report: $spam_report
set acl_m2 = $spam_score_int

warn condition = ${if !eq{$acl_m2}{} {yes}{no}}
condition = ${if >{$acl_m2}{SPAM_SCORE} {yes}{no}}
add_header = X-Spam-Status: Yes
message = SpamAssassin detected spam (from $sender_address to $recipients).
.endif

accept


acl_check_mime:
deny message = Blacklisted file extension detected
condition = ${if match {${lc:$mime_filename}}{\N(\.ade|\.adp|\.bat|\.chm|\.cmd|\.com|\.cpl|\.exe|\.hta|\.ins|\.isp|\.jse|\.lib|\.lnk|\.mde|\.msc|\.msp|\.mst|\.pif|\.scr|\.sct|\.shb|\.sys|\.vb|\.vbe|\.vbs|\.vxd|\.wsc|\.wsf|\.wsh)$\N}{1}{0}}

accept



######################################################################
# AUTHENTICATION CONFIGURATION #
######################################################################
begin authenticators

dovecot_plain:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1

dovecot_login:
driver = dovecot
public_name = LOGIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1



######################################################################
# ROUTERS CONFIGURATION #
# Specifies how addresses are handled #
######################################################################
begin routers

#smarthost:
# driver = manualroute
# domains = ! +local_domains
# transport = remote_smtp
# route_list = * smartrelay.vestacp.com
# no_more
# no_verify

dnslookup:
driver = dnslookup
domains = !+local_domains
transport = remote_smtp
no_more

userforward:
driver = redirect
check_local_user
file = $home/.forward
allow_filter
no_verify
no_expn
check_ancestor
file_transport = address_file
pipe_transport = address_pipe
reply_transport = address_reply

procmail:
driver = accept
check_local_user
require_files = ${local_part}:+${home}/.procmailrc:/usr/bin/procmail
transport = procmail
no_verify

autoreplay:
driver = accept
require_files = /etc/exim4/domains/$domain/autoreply.${local_part}.msg
condition = ${if exists{/etc/exim4/domains/$domain/autoreply.${local_part}.msg}{yes}{no}}
retry_use_local_part
transport = userautoreply
unseen

aliases:
driver = redirect
headers_add = X-redirected: yes
data = ${extract{1}{:}{${lookup{$local_part@$domain}lsearch{/etc/exim4/domains/$domain/aliases}}}}
require_files = /etc/exim4/domains/$domain/aliases
redirect_router = dnslookup
pipe_transport = address_pipe
unseen

localuser_fwd_only:
driver = accept
transport = devnull
condition = ${if exists{/etc/exim4/domains/$domain/fwd_only}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/fwd_only}{true}{false}}}}

localuser_spam:
driver = accept
transport = local_spam_delivery
condition = ${if eq {${if match{$h_X-Spam-Status:}{\N^Yes\N}{yes}{no}}} {${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}{yes}{no_such_user}}}}

localuser:
driver = accept
transport = local_delivery
condition = ${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}{true}{false}}

catchall:
driver = redirect
headers_add = X-redirected: yes
require_files = /etc/exim4/domains/$domain/aliases
data = ${extract{1}{:}{${lookup{*@$domain}lsearch{/etc/exim4/domains/$domain/aliases}}}}
file_transport = local_delivery
redirect_router = dnslookup

terminate_alias:
driver = accept
transport = devnull
condition = ${lookup{$local_part@$domain}lsearch{/etc/exim4/domains/$domain/aliases}{true}{false}}



######################################################################
# TRANSPORTS CONFIGURATION #
######################################################################
begin transports

remote_smtp:
driver = smtp
#helo_data = $sender_address_domain
dkim_domain = DKIM_DOMAIN
dkim_selector = mail
dkim_private_key = DKIM_PRIVATE_KEY
dkim_canon = relaxed
dkim_strict = 0

procmail:
driver = pipe
command = "/usr/bin/procmail -d $local_part"
return_path_add
delivery_date_add
envelope_to_add
user = $local_part
initgroups
return_output

local_delivery:
driver = appendfile
maildir_format
maildir_use_size_file
user = ${extract{2}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}
group = mail
create_directory
directory_mode = 770
mode = 660
use_lockfile = no
delivery_date_add
envelope_to_add
return_path_add
directory = "${extract{5}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}/mail/$domain/$local_part"
quota = ${extract{6}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}M
quota_warn_threshold = 75%

local_spam_delivery:
driver = appendfile
maildir_format
maildir_use_size_file
user = ${extract{2}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}
group = mail
create_directory
directory_mode = 770
mode = 660
use_lockfile = no
delivery_date_add
envelope_to_add
return_path_add
directory = "${extract{5}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}/mail/$domain/$local_part/.Spam"
quota = ${extract{6}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}M
quota_directory = "${extract{5}{:}{${lookup{$local_part}lsearch{/etc/exim4/domains/$domain/passwd}}}}/mail/$domain/$local_part"
quota_warn_threshold = 75%

address_pipe:
driver = pipe
return_output

address_file:
driver = appendfile
delivery_date_add
envelope_to_add
return_path_add

address_reply:
driver = autoreply

userautoreply:
driver = autoreply
file = /etc/exim4/domains/$domain/autoreply.${local_part}.msg
from = "${local_part}@${domain}"
headers = Content-Type: text/plain; charset=utf-8;\nContent-Transfer-Encoding: 8bit
subject = "${if def:h_Subject: {Autoreply: \"${rfc2047:$h_Subject:}\"} {Autoreply Message}}"
to = "${sender_address}"

devnull:
driver = appendfile
file = /dev/null



######################################################################
# RETRY CONFIGURATION #
######################################################################
begin retry

# Address or Domain Error Retries
# ----------------- ----- -------
* * F,2h,15m; G,16h,1h,1.5; F,4d,6h



######################################################################
# REWRITE CONFIGURATION #
######################################################################
begin rewrite



######################################################################
Mainlog
SpoilerShow
2017-08-10 21:44:36 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:44:36 1dfy44-0002sO-AQ <= [email protected] U=admin P=local S=594 id=[email protected]
2017-08-10 21:45:02 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:45:02 1dfy0O-0002Px-0V alt1.gmail-smtp-in.l.google.com [74.125.140.26] Connection timed out
2017-08-10 21:45:05 no IP address found for host bacfdf2b.virtua.com.br (during SMTP connection from [186.207.223.43])
2017-08-10 21:45:05 unknown named host list "+whitelist"
2017-08-10 21:45:05 1dfxyN-0002BA-Fk alt3.gmail-smtp-in.l.google.com [173.194.221.27] Connection timed out
2017-08-10 21:45:12 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.167])
2017-08-10 21:45:12 unknown named host list "+whitelist"
2017-08-10 21:45:19 unknown named host list "+whitelist"
2017-08-10 21:45:30 1dfXzJ-0000rH-Ei spamexperts03.kinghost.net [177.185.200.15] Connection timed out
2017-08-10 21:45:30 1dfXzJ-0000rH-Ei == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:45:30 1dfSsS-00023L-2q Message is frozen
2017-08-10 21:45:48 1dfv3n-0002bx-M5 alt4.gmail-smtp-in.l.google.com [74.125.130.27] Connection timed out
2017-08-10 21:45:48 1dfv3n-0002bx-M5 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:45:57 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:45:57 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:45:59 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:45:59 exim 4.82 daemon started: pid=11719, -q30m, listening for SMTP on port 25 (IPv4) port 587 (IPv4) port 2525 (IPv4) and for SMTPS on port 465 (IPv4)
2017-08-10 21:45:59 Start queue run: pid=11720
2017-08-10 21:45:59 1dfy44-0002sO-AQ Spool file is locked (another process is handling this message)
2017-08-10 21:46:05 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:46:05 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:46:06 1dfXTv-0000AL-RQ gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 21:46:07 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:46:07 exim 4.82 daemon started: pid=12297, -q30m, listening for SMTP on port 25 (IPv4) port 587 (IPv4) port 2525 (IPv4) and for SMTPS on port 465 (IPv4)
2017-08-10 21:46:07 Start queue run: pid=12298
2017-08-10 21:46:07 1dfy44-0002sO-AQ Spool file is locked (another process is handling this message)
2017-08-10 21:46:07 1dfv3n-0002bx-M5 Spool file is locked (another process is handling this message)
2017-08-10 21:46:07 1dfXTv-0000AL-RQ Spool file is locked (another process is handling this message)
2017-08-10 21:46:31 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:46:31 1dfy5v-0003GS-UW <= [email protected] U=admin P=local S=595 id=[email protected]
2017-08-10 21:46:35 1dftCn-0007VX-JM alt2.gmail-smtp-in.l.google.com [108.177.96.27] Connection timed out
2017-08-10 21:46:43 1dfy44-0002sO-AQ mail.logicarts.com.br [108.167.169.72] Connection timed out
2017-08-10 21:46:43 1dfy44-0002sO-AQ == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:46:55 no host name found for IP address 200.5.228.122
2017-08-10 21:46:55 no host name found for IP address 200.5.228.122
2017-08-10 21:47:05 1dfy6S-0003Gx-L8 DKIM: d=logicarts.com.br s=default c=relaxed/relaxed a=rsa-sha256 [invalid - public key record (currently?) unavailable]
2017-08-10 21:47:08 1dfy6S-0003Gx-L8 <= [email protected] H=gateway31.websitewelcome.com [192.185.143.38] P=esmtps X=TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256 S=14170 id=[email protected]
2017-08-10 21:47:08 1dfy6S-0003Gx-L8 => diego <[email protected]> R=localuser T=local_delivery
2017-08-10 21:47:08 1dfy6S-0003Gx-L8 Completed
2017-08-10 21:47:10 1dfy0O-0002Px-0V alt2.gmail-smtp-in.l.google.com [108.177.96.26] Connection timed out
2017-08-10 21:47:12 1dfxyN-0002BA-Fk alt4.gmail-smtp-in.l.google.com [74.125.130.26] Connection timed out
2017-08-10 21:47:12 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:47:26 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:47:26 1dfy6o-0003IR-77 <= [email protected] U=admin P=local S=3002 id=[email protected]
2017-08-10 21:47:26 1dfy6o-0003IR-77 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:47:38 1dfU4D-0003qs-3k mail4.santander.com.br [200.220.180.177] Connection timed out
2017-08-10 21:47:51 no IP address found for host systemip7.example.com (during SMTP connection from [91.200.12.50])
2017-08-10 21:47:54 dovecot_login authenticator failed for (User) [91.200.12.50]: 535 Incorrect authentication data (set_id=macromedia)
2017-08-10 21:47:55 1dfn7R-0006Ig-Uf mx.b.locaweb.com.br [187.45.217.20] Connection timed out
2017-08-10 21:48:06 1dfv3n-0002bx-M5 gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 21:48:13 1dfXTv-0000AL-RQ alt1.gmail-smtp-in.l.google.com [74.125.140.27] Connection timed out
2017-08-10 21:48:13 1dfXTv-0000AL-RQ == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:48:13 1dftGV-0007aI-0c Spool file is locked (another process is handling this message)
2017-08-10 21:48:13 1dfHWY-0002yh-Fs Message is frozen
2017-08-10 21:48:13 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:48:14 1dftGV-0007aI-0c gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 21:48:39 1dfy5v-0003GS-UW mail.logicarts.com.br [108.167.169.72] Connection timed out
2017-08-10 21:48:39 1dfy5v-0003GS-UW == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:48:42 1dftCn-0007VX-JM alt4.gmail-smtp-in.l.google.com [74.125.130.26] Connection timed out
2017-08-10 21:48:42 1dftCn-0007VX-JM == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:48:42 1dfHa3-00036F-Sh Message is frozen
2017-08-10 21:48:45 no IP address found for host ip-187.94.111-100.globalwave.com.br (during SMTP connection from [187.94.111.100])
2017-08-10 21:48:45 no IP address found for host ip-187.94.111-100.globalwave.com.br (during SMTP connection from [187.94.111.100])
2017-08-10 21:48:51 no host name found for IP address 41.191.224.5
2017-08-10 21:48:51 no host name found for IP address 41.191.224.5
2017-08-10 21:49:11 H=pws3.mxtoolbox.com [64.20.227.134] F=<[email protected]> rejected RCPT <[email protected]>: relay not permitted
2017-08-10 21:49:17 1dfy0O-0002Px-0V alt4.gmail-smtp-in.l.google.com [74.125.130.26] Connection timed out
2017-08-10 21:49:17 1dfy0O-0002Px-0V == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:49:45 1dfU4D-0003qs-3k mail3.santander.com.br [200.220.180.176] Connection timed out
2017-08-10 21:50:02 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:50:02 1dfn7R-0006Ig-Uf mx.core.locaweb.com.br [177.153.23.241] Connection timed out
2017-08-10 21:50:13 1dfv3n-0002bx-M5 alt2.gmail-smtp-in.l.google.com [108.177.96.26] Connection timed out
2017-08-10 21:50:21 1dfxyN-0002BA-Fk gmail-smtp-in.l.google.com [64.233.190.27] Connection timed out
2017-08-10 21:50:21 1dftGV-0007aI-0c alt1.gmail-smtp-in.l.google.com [74.125.140.26] Connection timed out
2017-08-10 21:50:33 no IP address found for host 46.6.212.41.in-addr.arpa (during SMTP connection from [41.212.6.46])
2017-08-10 21:50:33 no IP address found for host 46.6.212.41.in-addr.arpa (during SMTP connection from [41.212.6.46])
2017-08-10 21:50:39 no IP address found for host 181-23-23-79.speedy.com.ar (during SMTP connection from [181.23.23.79])
2017-08-10 21:50:49 1dfXTv-0000AL-RQ gmail-smtp-in.l.google.com [64.233.186.26] Connection timed out
2017-08-10 21:50:49 1dfXTv-0000AL-RQ == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:50:50 1dfxo4-0001ka-8I == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:51:02 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.166])
2017-08-10 21:51:05 dovecot_login authenticator failed for (User) [91.200.12.166]: 535 Incorrect authentication data (set_id=unicorn)
2017-08-10 21:51:52 1dfU4D-0003qs-3k mail1.santander.com.br [200.220.180.174] Connection timed out
2017-08-10 21:52:10 1dfn7R-0006Ig-Uf mx.a.locaweb.com.br [186.202.4.42] Connection timed out
2017-08-10 21:52:14 no IP address found for host 12-130-172-232.attens.net (during SMTP connection from [12.130.172.232])
2017-08-10 21:52:14 no IP address found for host 12-130-172-232.attens.net (during SMTP connection from [12.130.172.232])
2017-08-10 21:52:14 no host name found for IP address 105.174.2.98
2017-08-10 21:52:15 no host name found for IP address 105.174.2.98
2017-08-10 21:52:20 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:52:20 1dfyBY-0003SV-KE <= [email protected] U=admin P=local S=587 id=[email protected]
2017-08-10 21:52:21 1dfv3n-0002bx-M5 alt3.gmail-smtp-in.l.google.com [173.194.221.26] Connection timed out
2017-08-10 21:52:21 1dfv3n-0002bx-M5 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:52:21 1dfXTv-0000AL-RQ == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:52:21 1dftGV-0007aI-0c Spool file is locked (another process is handling this message)
2017-08-10 21:52:28 1dfxyN-0002BA-Fk alt3.gmail-smtp-in.l.google.com [173.194.221.26] Connection timed out
2017-08-10 21:52:28 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:52:28 1dfQmU-0007aX-ON Message is frozen
2017-08-10 21:52:28 1dfw83-0006Bf-8p == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:52:28 1dfUGa-00047l-2z == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:52:29 1dftGV-0007aI-0c alt3.gmail-smtp-in.l.google.com [173.194.221.26] Connection timed out
2017-08-10 21:52:29 1dftGV-0007aI-0c == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:52:29 1dfvTw-0003k3-8P == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:52:57 1dfmsx-00061v-8O mx.core.locaweb.com.br [177.153.23.241] Connection timed out
2017-08-10 21:53:18 H=server2.maximacotacao-online.net.br [74.63.197.179] F=<erros-junior=[email protected]> rejected RCPT <[email protected]>: Rejected because 74.63.197.179 is in a black list at bl.spamcop.net
2017-08-10 21:53:59 1dfU4D-0003qs-3k mail2.santander.com.br [200.220.180.175] Connection timed out
2017-08-10 21:54:07 no host name found for IP address 197.159.191.5
2017-08-10 21:54:07 no host name found for IP address 197.159.191.5
2017-08-10 21:54:17 1dfn7R-0006Ig-Uf mx.jk.locaweb.com.br [200.234.204.130] Connection timed out
2017-08-10 21:54:17 1dfn7R-0006Ig-Uf == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:54:17 1dftGV-0007aI-0c == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:17 1dfurv-0001Re-Cy Spool file is locked (another process is handling this message)
2017-08-10 21:54:17 1dfxPY-00014q-EQ == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:28 1dfyBY-0003SV-KE mail-tester.com [94.23.206.89] Connection timed out
2017-08-10 21:54:28 1dfyBY-0003SV-KE == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:54:28 1dfurv-0001Re-Cy mx1tools.mxtoolbox.com [208.123.79.38] Connection timed out
2017-08-10 21:54:35 1dfo5D-0007cm-Ea mx.core.locaweb.com.br [177.153.23.241] Connection timed out
2017-08-10 21:54:35 1dfo5D-0007cm-Ea == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:54:36 1dfCR6-0004jP-Ji mx.core.locaweb.com.br [177.153.23.241] Connection timed out
2017-08-10 21:54:36 1dfCR6-0004jP-Ji == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:54:36 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:36 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:36 1dfQmU-0007aX-ON Message is frozen
2017-08-10 21:54:36 1dfSsS-00023L-2q Message is frozen
2017-08-10 21:54:36 1dfu6f-0000Nz-49 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:37 1dfUGa-00047l-2z == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:37 1dfo5D-0007cm-Ea == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:54:37 1dfUMd-0004Eb-LG == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:55:01 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 21:55:04 1dfmsx-00061v-8O mx.a.locaweb.com.br [186.202.4.42] Connection timed out
2017-08-10 21:55:04 1dfmsx-00061v-8O == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:55:04 1dfHWY-0002yh-Fs Message is frozen
2017-08-10 21:55:04 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:55:04 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:55:04 1dfTyA-0003iH-F5 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:55:53 1dfyEv-0003YR-5B <= [email protected] H=b30.extracllube.com.br (b30) [185.33.144.87] P=esmtp S=34398 id=20170811005546.06B225316@b30
2017-08-10 21:55:53 1dfyEv-0003YR-5B => abid <[email protected]> R=localuser_fwd_only T=devnull
2017-08-10 21:55:53 1dfyEv-0003YR-5B => junior <[email protected]> R=localuser T=local_delivery
2017-08-10 21:55:53 1dfyEv-0003YR-5B => renato <[email protected]> R=localuser T=local_delivery
2017-08-10 21:55:53 1dfyEv-0003YR-5B Completed
2017-08-10 21:55:55 no host name found for IP address 41.73.125.74
2017-08-10 21:55:55 no host name found for IP address 41.73.125.74
2017-08-10 21:56:07 1dfU4D-0003qs-3k mail5.santander.com.br [200.220.180.178] Connection timed out
2017-08-10 21:56:07 1dfU4D-0003qs-3k == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:56:07 1dfcx2-0007z7-RM Message is frozen
2017-08-10 21:56:24 1dfrrm-000532-9A ASPMX.L.GOOGLE.COM [64.233.190.26] Connection timed out
2017-08-10 21:56:34 1dfyFd-0003Yp-G0 DKIM: d=erx.fun s=dkey c=relaxed/relaxed a=rsa-sha1 i=[email protected] [verification succeeded]
2017-08-10 21:56:36 1dfurv-0001Re-Cy mx2tools.mxtoolbox.com [208.123.79.58] Connection timed out
2017-08-10 21:56:36 1dfurv-0001Re-Cy == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:56:36 1dfvTw-0003k3-8P == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfCR6-0004jP-Ji == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfxyN-0002BA-Fk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfQmU-0007aX-ON Message is frozen
2017-08-10 21:56:36 1dfx7c-0007S9-Ea == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfSsS-00023L-2q Message is frozen
2017-08-10 21:56:36 1dfu6f-0000Nz-49 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfUGa-00047l-2z == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:36 1dfo5D-0007cm-Ea == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:38 1dfyFd-0003Yp-G0 <= [email protected] H=dc-0wrh1iz59q.erx.fun [86.105.48.163] P=esmtp S=10128 id=[email protected]
2017-08-10 21:56:38 1dfyFd-0003Yp-G0 => junior <[email protected]> R=localuser T=local_delivery
2017-08-10 21:56:38 1dfyFd-0003Yp-G0 Completed
2017-08-10 21:56:43 1dftQ5-0007rI-H0 mx3.hotmail.com [65.55.92.136] Connection timed out
2017-08-10 21:56:44 1dfUJt-0004AL-QT mail6.santander.com.br [200.220.180.179] Connection timed out
2017-08-10 21:56:44 1dfUJt-0004AL-QT == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:56:44 1dftSh-0007uR-Gl == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:56:44 1dfk7i-0002cN-Tf Message is frozen
2017-08-10 21:57:06 no IP address found for host systemip3.example.com (during SMTP connection from [91.200.12.121])
2017-08-10 21:57:09 dovecot_login authenticator failed for (User) [91.200.12.121]: 535 Incorrect authentication data (set_id=broadway)
2017-08-10 21:57:11 1dfobl-00006t-66 mx.terraempresas.com.br [208.84.244.133] Connection timed out
2017-08-10 21:57:11 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:57:11 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:57:12 1dfw83-0006Bf-8p == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dfUGa-00047l-2z == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dfcx2-0007z7-RM Message is frozen
2017-08-10 21:57:12 1dftQ5-0007rI-H0 Spool file is locked (another process is handling this message)
2017-08-10 21:57:12 1dfUMd-0004Eb-LG == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dfk7i-0002cN-Tf Message is frozen
2017-08-10 21:57:12 1dfR00-0007tx-2M Message is frozen
2017-08-10 21:57:12 1dfp3k-0000n5-Ux Spool file is locked (another process is handling this message)
2017-08-10 21:57:12 1dftSM-0007u0-IV == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dfuhT-00012K-4v == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dfvd5-0004ND-BP == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:12 1dftSh-0007uR-Gl == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:57:19 no IP address found for host systemip7.example.com (during SMTP connection from [91.200.12.156])
2017-08-10 21:57:22 dovecot_login authenticator failed for (User) [91.200.12.156]: 535 Incorrect authentication data (set_id=jim)
2017-08-10 21:57:33 1dfyGa-0003b7-VI DKIM: d=dmails.gq s=default c=relaxed/relaxed a=rsa-sha1 i=[email protected] [verification succeeded]
2017-08-10 21:57:37 1dfyGa-0003b7-VI <= [email protected] H=spcr-0.dmails.gq [51.254.205.60] P=esmtp S=17496 id=[email protected]
2017-08-10 21:57:37 1dfyGa-0003b7-VI => abid <[email protected]> R=localuser_fwd_only T=devnull
2017-08-10 21:57:37 1dfyGa-0003b7-VI => junior <[email protected]> R=localuser T=local_delivery
2017-08-10 21:57:37 1dfyGa-0003b7-VI => renato <[email protected]> R=localuser T=local_delivery
2017-08-10 21:57:37 1dfyGa-0003b7-VI Completed
2017-08-10 21:57:47 no IP address found for host systemip7.example.com (during SMTP connection from [91.200.12.152])
2017-08-10 21:57:50 dovecot_login authenticator failed for (User) [91.200.12.152]: 535 Incorrect authentication data (set_id=napoleon)
2017-08-10 21:58:14 1dfnH2-0006Ts-Up mx2.hotmail.com [207.46.8.167] Connection timed out
2017-08-10 21:58:32 1dfrrm-000532-9A ALT1.ASPMX.L.GOOGLE.COM [74.125.140.27] Connection timed out
2017-08-10 21:58:44 1dfU4D-0003qs-3k mail6.santander.com.br [200.220.180.179] Connection timed out
2017-08-10 21:58:44 1dfU4D-0003qs-3k == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:58:44 1dfUMd-0004Eb-LG == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:44 1dfUJt-0004AL-QT == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:44 1dftSh-0007uR-Gl == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:44 1dfk7i-0002cN-Tf Message is frozen
2017-08-10 21:58:45 1dfvd5-0004ND-BP == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfp3k-0000n5-Ux Spool file is locked (another process is handling this message)
2017-08-10 21:58:45 1dftSM-0007u0-IV == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfR00-0007tx-2M Message is frozen
2017-08-10 21:58:45 1dfuhT-00012K-4v == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dftKq-0007h5-Hw Spool file is locked (another process is handling this message)
2017-08-10 21:58:45 1dftQ5-0007rI-H0 Spool file is locked (another process is handling this message)
2017-08-10 21:58:45 1dft4P-0007KJ-62 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfnH2-0006Ts-Up Spool file is locked (another process is handling this message)
2017-08-10 21:58:45 1dfQmN-0007aJ-CU Message is frozen
2017-08-10 21:58:45 1dfQld-0007Zz-Ie Message is frozen
2017-08-10 21:58:45 1dfy0O-0002Px-0V == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfy0O-0002Px-0V == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfxNy-00011o-FM == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfvSS-0003iW-Rz == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfrc0-0004aa-Bg == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:45 1dfcx2-0007z7-RM Message is frozen
2017-08-10 21:58:50 1dftQ5-0007rI-H0 mx3.hotmail.com [65.55.33.119] Connection timed out
2017-08-10 21:58:51 1dfp3k-0000n5-Ux magnothec.com.br [192.185.215.25] Connection timed out
2017-08-10 21:58:51 1dfp3k-0000n5-Ux == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:58:51 1dfp3k-0000n5-Ux == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 21:58:51 1dftSM-0007u0-IV == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:51 1dfR00-0007tx-2M Message is frozen
2017-08-10 21:58:51 1dfuhT-00012K-4v == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfvd5-0004ND-BP == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dftKq-0007h5-Hw Spool file is locked (another process is handling this message)
2017-08-10 21:58:52 1dftQ5-0007rI-H0 Spool file is locked (another process is handling this message)
2017-08-10 21:58:52 1dft4P-0007KJ-62 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfnH2-0006Ts-Up Spool file is locked (another process is handling this message)
2017-08-10 21:58:52 1dfQmN-0007aJ-CU Message is frozen
2017-08-10 21:58:52 1dfQld-0007Zz-Ie Message is frozen
2017-08-10 21:58:52 1dfy0O-0002Px-0V == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfy0O-0002Px-0V == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfxNy-00011o-FM == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfvSS-0003iW-Rz == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfrc0-0004aa-Bg == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfcx2-0007z7-RM Message is frozen
2017-08-10 21:58:52 1dfU4D-0003qs-3k == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfsGJ-00068V-Ia Spool file is locked (another process is handling this message)
2017-08-10 21:58:52 1dfw83-0006Bf-8p == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:52 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:53 1dfXzJ-0000rH-Ei == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 21:58:53 1dfNi1-0003b2-SF Message is frozen
2017-08-10 21:59:19 1dftKq-0007h5-Hw ASPMX.L.GOOGLE.COM [64.233.190.27] Connection timed out
2017-08-10 21:59:28 no IP address found for host 85.99.227.252.dynamic.ttnet.com.tr (during SMTP connection from [85.99.227.252])
2017-08-10 21:59:29 no IP address found for host 85.99.227.252.dynamic.ttnet.com.tr (during SMTP connection from [85.99.227.252])
2017-08-10 22:00:02 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:00:18 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:00:18 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:00:20 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:00:20 exim 4.82 daemon started: pid=14687, -q30m, listening for SMTP on port 25 (IPv4) port 587 (IPv4) port 2525 (IPv4) and for SMTPS on port 465 (IPv4)
2017-08-10 22:00:20 Start queue run: pid=14688
2017-08-10 22:00:20 1dftQT-0007ru-Jk == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfxMr-0000uJ-JR == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfU3w-0003qb-Hn == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfU3w-0003qb-Hn == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfo8e-0007i9-R9 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfuw1-0001qd-0y == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfv3n-0002bx-M5 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfn7R-0006Ig-Uf == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dftGV-0007aI-0c == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfnH2-0006Ts-Up mx2.hotmail.com [104.44.194.232] Connection timed out
2017-08-10 22:00:21 1dfurv-0001Re-Cy == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:21 1dfXAY-0008Ag-Uh Message is frozen
2017-08-10 22:00:21 1dfsgE-0006iY-Vq == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:39 1dfrrm-000532-9A ALT2.ASPMX.L.GOOGLE.COM [108.177.96.27] Connection timed out
2017-08-10 22:00:39 1dfrrm-000532-9A == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:00:39 1dfmsx-00061v-8O == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:39 1dfCR6-0004jP-Ji == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:39 1dfsu0-000775-Ao == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:39 1dfQmU-0007aX-ON Message is frozen
2017-08-10 22:00:39 1dfTyA-0003iH-F5 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:00:39 1dfQp1-0007cg-G9 Message is frozen
2017-08-10 22:00:41 no host name found for IP address 114.234.63.120
2017-08-10 22:00:54 1dfsGJ-00068V-Ia gofurthergroup-com-br.mail.protection.outlook.com [207.46.163.42] Connection timed out
2017-08-10 22:00:54 no host name found for IP address 49.81.44.26
2017-08-10 22:00:55 rejected HELO from [49.81.44.26]: syntactically invalid argument(s): (no argument given)
2017-08-10 22:00:57 1dftQ5-0007rI-H0 mx3.hotmail.com [65.54.188.110] Connection timed out
2017-08-10 22:01:00 1dfCTr-0004oU-Pw smtp4.peraltaatacadista.com.br [186.201.215.157] Connection timed out
2017-08-10 22:01:13 1dfyK5-0003qc-Sh <= [email protected] H=mailrelay2c75.carrierzone.com [69.49.113.82] P=esmtps X=TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256 S=3273 id=[email protected]
2017-08-10 22:01:13 1dfyK5-0003qc-Sh => wp <[email protected]> R=localuser_fwd_only T=devnull
2017-08-10 22:01:13 1dfyK5-0003qc-Sh => junior <[email protected]> R=localuser T=local_delivery
2017-08-10 22:01:13 1dfyK5-0003qc-Sh => kelvin <[email protected]> R=localuser T=local_delivery
2017-08-10 22:01:13 1dfyK5-0003qc-Sh => michel <[email protected]> R=localuser T=local_delivery
2017-08-10 22:01:13 1dfyK5-0003qc-Sh Completed
2017-08-10 22:01:18 no host name found for IP address 175.143.53.25
2017-08-10 22:01:19 no host name found for IP address 175.143.53.25
2017-08-10 22:01:27 1dftKq-0007h5-Hw ALT1.ASPMX.L.GOOGLE.COM [74.125.140.26] Connection timed out
2017-08-10 22:02:28 1dfnH2-0006Ts-Up mx2.hotmail.com [65.55.37.120] Connection timed out
2017-08-10 22:02:29 1dfTz8-0003iz-Ap mail.sincomercioabc.com.br [184.173.250.108] Connection timed out
2017-08-10 22:02:29 1dfTz8-0003iz-Ap == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:02:46 1dfXzJ-0000rH-Ei spamexperts03.kinghost.net [177.185.200.15] Connection timed out
2017-08-10 22:03:01 1dfsGJ-00068V-Ia gofurthergroup-com-br.mail.protection.outlook.com [216.32.180.10] Connection timed out
2017-08-10 22:03:01 1dfsGJ-00068V-Ia == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:03:01 1dfsGJ-00068V-Ia == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:03:01 1dfw83-0006Bf-8p == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:01 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:01 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:01 1dfXzJ-0000rH-Ei Spool file is locked (another process is handling this message)
2017-08-10 22:03:01 1dfNi1-0003b2-SF Message is frozen
2017-08-10 22:03:01 1dfCTr-0004oU-Pw Spool file is locked (another process is handling this message)
2017-08-10 22:03:01 1dfvi5-0005KB-0c == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:01 1dfU34-0003pZ-Ay == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:04 1dftQ5-0007rI-H0 mx3.hotmail.com [65.54.188.72] Connection timed out
2017-08-10 22:03:07 1dfCTr-0004oU-Pw smtp2.peraltaatacadista.com.br [186.201.215.147] Connection timed out
2017-08-10 22:03:11 no host name found for IP address 31.167.57.54
2017-08-10 22:03:12 no host name found for IP address 31.167.57.54
2017-08-10 22:03:16 no host name found for IP address 202.62.107.81
2017-08-10 22:03:16 rejected HELO from [202.62.107.81]: syntactically invalid argument(s): *.*
2017-08-10 22:03:34 1dftKq-0007h5-Hw ASPMX2.GOOGLEMAIL.COM [74.125.140.27] Connection timed out
2017-08-10 22:03:34 1dftKq-0007h5-Hw == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:03:34 1dfUJt-0004AL-QT == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:34 1dft4P-0007KJ-62 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:34 1dfnH2-0006Ts-Up Spool file is locked (another process is handling this message)
2017-08-10 22:03:34 1dfQmN-0007aJ-CU Message is frozen
2017-08-10 22:03:34 1dfQld-0007Zz-Ie Message is frozen
2017-08-10 22:03:34 1dfxNy-00011o-FM == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:34 1dfvSS-0003iW-Rz == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:34 1dfrc0-0004aa-Bg == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:35 1dfU4D-0003qs-3k == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:35 1dfo5D-0007cm-Ea == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:03:46 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:03:46 1dfyMc-0003xh-Re <= [email protected] U=admin P=local S=594 id=[email protected]
2017-08-10 22:03:46 1dfyMc-0003xh-Re == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:04:36 1dfnH2-0006Ts-Up mx2.hotmail.com [104.44.194.234] Connection timed out
2017-08-10 22:04:36 1dfrrm-000532-9A ASPMX.L.GOOGLE.COM [64.233.190.27] Connection timed out
2017-08-10 22:04:36 1dfrrm-000532-9A == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:04:36 1dfmsx-00061v-8O == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:04:54 1dfXzJ-0000rH-Ei spamexperts02.kinghost.net [177.185.200.14] Connection timed out
2017-08-10 22:04:58 no IP address found for host client-200.121.128.55.speedy.net.pe (during SMTP connection from [200.121.128.55])
2017-08-10 22:04:58 no IP address found for host client-200.121.128.55.speedy.net.pe (during SMTP connection from [200.121.128.55])
2017-08-10 22:05:02 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:05:03 no IP address found for host 210-40-204-41.accra.gh.ibcore.net (during SMTP connection from [41.204.40.210])
2017-08-10 22:05:04 no IP address found for host 210-40-204-41.accra.gh.ibcore.net (during SMTP connection from [41.204.40.210])
2017-08-10 22:05:09 1dftJR-0007fL-4w ASPMX.L.GOOGLE.COM [64.233.190.27] Connection timed out
2017-08-10 22:05:11 1dftQ5-0007rI-H0 mx3.hotmail.com [104.44.194.236] Connection timed out
2017-08-10 22:05:11 1dftQ5-0007rI-H0 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:05:14 1dfCTr-0004oU-Pw smtp3.peraltaatacadista.com.br [200.206.51.44] Connection timed out
2017-08-10 22:05:14 1dfCTr-0004oU-Pw == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:05:14 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:05:14 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:05:16 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:05:16 exim 4.82 daemon started: pid=15943, -q30m, listening for SMTP on port 25 (IPv4) port 587 (IPv4) port 2525 (IPv4) and for SMTPS on port 465 (IPv4)
2017-08-10 22:05:16 Start queue run: pid=15944
2017-08-10 22:05:26 no host name found for IP address 49.81.44.26
2017-08-10 22:05:29 H=(irlg.com) [49.81.44.26] F=<[email protected]> rejected RCPT <[email protected]>: Rejected because 49.81.44.26 is in a black list at zen.spamhaus.org
2017-08-10 22:05:30 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.165])
2017-08-10 22:05:34 dovecot_login authenticator failed for (User) [91.200.12.165]: 535 Incorrect authentication data (set_id=sin)
2017-08-10 22:05:41 SMTP command timeout on connection from [114.234.63.120]
2017-08-10 22:05:44 1dfsGJ-00068V-Ia gofurthergroup-com-br.mail.protection.outlook.com [207.46.163.74] Connection timed out
2017-08-10 22:06:09 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.98])
2017-08-10 22:06:12 dovecot_login authenticator failed for (User) [91.200.12.98]: 535 Incorrect authentication data (set_id=power)
2017-08-10 22:06:34 no IP address found for host systemip3.example.com (during SMTP connection from [91.200.12.100])
2017-08-10 22:06:37 dovecot_login authenticator failed for (User) [91.200.12.100]: 535 Incorrect authentication data (set_id=chad)
2017-08-10 22:06:43 1dfnH2-0006Ts-Up mx2.hotmail.com [65.55.37.104] Connection timed out
2017-08-10 22:06:43 1dfnH2-0006Ts-Up == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:06:43 1dfvTw-0003k3-8P gmail-smtp-in.l.google.com [64.233.190.26] Connection timed out
2017-08-10 22:06:51 no IP address found for host 129-39-138-186.fibertel.com.ar (during SMTP connection from [186.138.39.129])
2017-08-10 22:06:51 no IP address found for host 129-39-138-186.fibertel.com.ar (during SMTP connection from [186.138.39.129])
2017-08-10 22:06:54 no host name found for IP address 202.62.107.81
2017-08-10 22:06:55 rejected HELO from [202.62.107.81]: syntactically invalid argument(s): *.*
2017-08-10 22:07:01 1dfXzJ-0000rH-Ei spamexperts01.kinghost.net [177.185.200.13] Connection timed out
2017-08-10 22:07:01 1dfXzJ-0000rH-Ei == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:07:08 no IP address found for host systemip3.example.com (during SMTP connection from [91.200.12.105])
2017-08-10 22:07:10 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.164])
2017-08-10 22:07:11 dovecot_login authenticator failed for (User) [91.200.12.105]: 535 Incorrect authentication data (set_id=eight)
2017-08-10 22:07:16 dovecot_login authenticator failed for (User) [91.200.12.164]: 535 Incorrect authentication data (set_id=robin)
2017-08-10 22:07:16 1dftJR-0007fL-4w ALT1.ASPMX.L.GOOGLE.COM [74.125.140.27] Connection timed out
2017-08-10 22:07:19 1dftSh-0007uR-Gl gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 22:07:22 1dfvi5-0005KB-0c mail.logicarts.com.br [108.167.169.72] Connection timed out
2017-08-10 22:07:22 1dfvi5-0005KB-0c == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:07:24 1dftQT-0007ru-Jk gmail-smtp-in.l.google.com [64.233.190.27] Connection timed out
2017-08-10 22:07:51 1dfsGJ-00068V-Ia gofurthergroup-com-br.mail.protection.outlook.com [207.46.163.42] Connection timed out
2017-08-10 22:07:51 1dfsGJ-00068V-Ia == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:07:51 1dfsGJ-00068V-Ia == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:08:42 1dfyRO-0004CS-1X DKIM: d=tegerencio.com.br s=default c=relaxed/relaxed a=rsa-sha1 i=[email protected] [verification succeeded]
2017-08-10 22:08:43 no host name found for IP address 197.159.191.5
2017-08-10 22:08:43 no host name found for IP address 197.159.191.5
2017-08-10 22:08:46 1dfyRO-0004CS-1X <= [email protected] H=pink-71-185-110-95.tegerencio.com.br [95.110.185.71] P=esmtp S=6131 id=[email protected]
2017-08-10 22:08:46 1dfyRO-0004CS-1X => abid <[email protected]> R=localuser_fwd_only T=devnull
2017-08-10 22:08:46 1dfyRO-0004CS-1X => junior <[email protected]> R=localuser_spam T=local_spam_delivery
2017-08-10 22:08:46 1dfyRO-0004CS-1X => renato <[email protected]> R=localuser_spam T=local_spam_delivery
2017-08-10 22:08:46 1dfyRO-0004CS-1X Completed
2017-08-10 22:08:50 1dft4P-0007KJ-62 gmail-smtp-in.l.google.com [64.233.186.26] Connection timed out
2017-08-10 22:08:51 1dfvTw-0003k3-8P alt1.gmail-smtp-in.l.google.com [74.125.140.26] Connection timed out
2017-08-10 22:09:08 1dfobl-00006t-66 mx.terraempresas.com.br [208.84.244.133] Connection timed out
2017-08-10 22:09:08 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:09:08 1dfobl-00006t-66 == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:09:08 1dfw83-0006Bf-8p == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:09:23 1dftJR-0007fL-4w ALT2.ASPMX.L.GOOGLE.COM [108.177.96.27] Connection timed out
2017-08-10 22:09:23 1dftJR-0007fL-4w == [email protected] R=dnslookup T=remote_smtp defer (110): Connection timed out
2017-08-10 22:09:23 1dfQp1-0007cg-G9 Message is frozen
2017-08-10 22:09:26 1dftSh-0007uR-Gl alt1.gmail-smtp-in.l.google.com [74.125.140.27] Connection timed out
2017-08-10 22:09:29 1dfU34-0003pZ-Ay mail3.santander.com.br [200.220.180.176] Connection timed out
2017-08-10 22:09:31 1dftQT-0007ru-Jk alt1.gmail-smtp-in.l.google.com [74.125.140.27] Connection timed out
2017-08-10 22:09:58 1dfu6f-0000Nz-49 gmail-smtp-in.l.google.com [64.233.190.27] Connection timed out
2017-08-10 22:10:01 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:10:28 no host name found for IP address 86.35.227.122
2017-08-10 22:10:28 no host name found for IP address 86.35.227.122
2017-08-10 22:10:48 no IP address found for host systemip7.example.com (during SMTP connection from [91.200.12.54])
2017-08-10 22:10:51 dovecot_login authenticator failed for (User) [91.200.12.54]: 535 Incorrect authentication data (set_id=lola)
2017-08-10 22:10:57 1dft4P-0007KJ-62 alt1.gmail-smtp-in.l.google.com [74.125.140.26] Connection timed out
2017-08-10 22:10:58 1dfvTw-0003k3-8P alt2.gmail-smtp-in.l.google.com [108.177.96.26] Connection timed out
2017-08-10 22:14:19 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:14:19 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:14:19 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:14:19 exim 4.82 daemon started: pid=2642, -q30m, listening for SMTP on port 25 (IPv4) port 587 (IPv4) port 2525 (IPv4) and for SMTPS on port 465 (IPv4)
2017-08-10 22:14:19 Start queue run: pid=2643
2017-08-10 22:15:01 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:15:45 no IP address found for host systemip7.example.com (during SMTP connection from [91.200.12.161])
2017-08-10 22:15:48 dovecot_login authenticator failed for (User) [91.200.12.161]: 535 Incorrect authentication data (set_id=full)
2017-08-10 22:15:59 no IP address found for host 125-209-108-18.multi.net.pk (during SMTP connection from [125.209.108.18])
2017-08-10 22:16:00 no IP address found for host 125-209-108-18.multi.net.pk (during SMTP connection from [125.209.108.18])
2017-08-10 22:16:03 Warning: purging the environment.
Suggested action: use keep_environment.
2017-08-10 22:16:03 1dfyYV-0000tK-G4 <= [email protected] U=admin P=local S=586 id=[email protected]
2017-08-10 22:16:03 1dfyYV-0000tK-G4 == [email protected] R=dnslookup T=remote_smtp defer (-53): retry time not reached for any host
2017-08-10 22:16:26 1dftQT-0007ru-Jk gmail-smtp-in.l.google.com [64.233.186.27] Connection timed out
2017-08-10 22:16:29 no IP address found for host systemip8.example.com (during SMTP connection from [91.200.12.167])
2017-08-10 22:16:32 dovecot_login authenticator failed for (User) [91.200.12.167]: 535 Incorrect authentication data (set_id=tied)