Your message dated Wed, 25 Aug 2021 11:42:49 +0200
with message-id <[email protected]>
and subject line Re: Bug#991026: exim4: DANE error: tlsa lookup DEFER
has caused the Debian Bug report #991026,
regarding exim4: DANE error: tlsa lookup DEFER
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
991026: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=991026
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: exim4
Version: 4.92-8+deb10u6
I got bounces due to delivery failures when mailing someone from my
exim4-based mail server. The log file contains:
2021-07-13 06:20:20.720 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[2a02:250:0:48::13]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.721 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[2a02:250:0:48::12]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.722 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[2a02:250:0:48::11]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.722 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[2a02:250:0:48::14]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.723 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[93.188.3.11]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.723 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[93.188.3.12]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.723 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[93.188.3.13]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.724 [13321] 1m1lRa-0002RD-DO H=mailcluster.loopia.se
[93.188.3.14]:25: DANE error: tlsa lookup DEFER
2021-07-13 06:20:20.726 [13320] 1m1lRa-0002RD-DO == [email protected]
R=dnslookup T=remote_smtp defer (-36): DANE error: tlsa lookup DEFER
After a couple of days, it times out and I get a bounce back.
Before I could try the 'hosts_try_dane' option, I changed the
/etc/resolv.conf DNS servers from my ISP's to my own 127.0.0.1 unbound
instance, thinking it may be a DNS server problem. Indeed, that
resolved my problem, and delivery worked again.
While the domain might contain buggy DANE records (it passes some checks
[2] though?), it seems like a exim4 problem that things works fine with
one DNS server and not another. I'm guessing the problem was not with
the DANE records, but with the responses received from the DNS server?
How can I debug the DNS problem further?
This is the first case this happened, and I'm emailing many domains with
DANE records, so I'm a bit puzzled what went wrong here.
/Simon
[1] https://lists.exim.org/lurker/message/20200325.171053.9794c778.en.html
[2] https://dane.sys4.de/smtp/vetiveradv.se
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Andreas Metzler <[email protected]> writes:
> Hello Simon,
>
> looks indeed like the provider DNS server was broken. Does
> host -t TLSA _25._tcp.mailcluster.loopia.se
> work?
>
> exim's debug facilities might have helped,e.g.
> exim -M message-id -d+dns+host_lookup+resolver
Hi.
tldr: problem with local DNS server over TCP but not UDP
I was able to reproduce this now for another e-mail, which was stuck in
my mailq, and indeed exim stalled waiting for DNS responses, and
eventually timed out. The reason why it was hard to debug was that exim
appears to use DNS queries over TCP, not UDP, so a 'host -T' was needed
to reproduce the timeout with the problematic DNS server. Without -T
the proper NXDOMAIN was quickly returned.
I'm closing this bug now, but including my analysis below in case anyone
is curious or runs into this again.
The stuck e-mail was for two recipients, one gmail.com and one
stockholm.se. It is the stockholm.se recipient that is causing problems
(gmail.com already delivered), and I've masked the recipients with ABC
and XYZ in the exim debug log below for privacy reasons. The empty
blocks in the output is where I pressed RET a couple of times because it
stalled for a long time, so you can see exactly where it stalled.
Queries over UDP is fast against this ISP DNS server:
root@uggla:~# time host -t TLSA _25._tcp.uxantispam001.stockholm.se
Host _25._tcp.uxantispam001.stockholm.se not found: 3(NXDOMAIN)
real 0m0.027s
user 0m0.007s
sys 0m0.017s
root@uggla:~#
Running strace showed this:
root@uggla:~# strace -f exim -d+dns+host_lookup+resolver -qff
...
[pid 29681] socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, IPPROTO_IP)
= 8
[pid 29681] connect(8, {sa_family=AF_INET, sin_port=htons(53),
sin_addr=inet_addr("213.80.98.2")}, 16) = 0
[pid 29681] poll([{fd=8, events=POLLOUT}], 1, 0) = 1 ([{fd=8, revents=POLLOUT}])
[pid 29681] sendto(8, "\275\36\1\0\0\1\0\0\0\0\0\1\3_25\4_tcp\ruxantispam"...,
64, MSG_NOSIGNAL, NULL, 0) = 64
[pid 29681] poll([{fd=8, events=POLLIN}], 1, 5000) = 1 ([{fd=8,
revents=POLLIN}])
[pid 29681] recvfrom(8,
"\275\36\203\243\0\1\0\0\0\6\0\1\3_25\4_tcp\ruxantispam"..., 65535, 0,
{sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("213.80.98.2")},
[28->16]) = 1194
[pid 29681] close(8) = 0
[pid 29681] socket(AF_INET, SOCK_STREAM|SOCK_CLOEXEC, IPPROTO_IP) = 8
[pid 29681] connect(8, {sa_family=AF_INET, sin_port=htons(53),
sin_addr=inet_addr("213.80.98.2")}, 16
This led me on the way towards TCP vs UDP as an explanation, and TCP
queries against this DNS server is slow:
root@uggla:~# time host -T -t TLSA _25._tcp.uxantispam002.stockholm.se
213.80.98.2
;; Connection to 213.80.98.2#53(213.80.98.2) for
_25._tcp.uxantispam002.stockholm.se failed: timed out.
;; connection timed out; no servers could be reached
;; Connection to 213.80.98.2#53(213.80.98.2) for
_25._tcp.uxantispam002.stockholm.se failed: timed out.
real 0m20.024s
user 0m0.012s
sys 0m0.012s
root@uggla:~#
I'll report that to my ISP, but have meanwhile changed to use 127.0.0.1
and unbound on this machine permanently.
A successful queue run shows this:
217.21.227.30 in hosts_require_dane? no (option unset)
217.21.227.30 in hosts_try_dane? yes (matched "*")
DNS lookup of _25._tcp.uxantispam001.stockholm.se (TLSA) gave NO_DATA
returning DNS_NODATA
TLSA lookup ret 2 not DNSSEC
Connecting to uxantispam001.stockholm.se [217.21.227.30]:25 ... 217.21.227.30
in hosts_try_fastopen? no (option unset)
Thanks,
/Simon
root@uggla:~# time exim -d+dns+host_lookup+resolver -qff
Exim version 4.92 uid=0 gid=0 pid=26767 D=f7f15cfd
Support for: crypteq iconv() IPv6 PAM Perl Expand_dlfunc GnuTLS
move_frozen_messages Content_Scanning DANE DKIM DNSSEC Event OCSP PRDR PROXY
SOCKS TCP_Fast_Open
Lookups (built-in): lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmjz
dbmnz dnsdb dsearch ldap ldapdn ldapm mysql nis nis0 passwd pgsql sqlite
Authenticators: cram_md5 cyrus_sasl dovecot plaintext spa tls
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Malware: f-protd f-prot6d drweb fsecure sophie clamd avast sock cmdline
Fixed never_users: 0
Configure owner: 0:0
Size of off_t: 8
Compiler: GCC [8.3.0]
Library version: Glibc: Compile: 2.28
Runtime: 2.28
Library version: BDB: Compile: Berkeley DB 5.3.28: (September 9, 2013)
Runtime: Berkeley DB 5.3.28: (September 9, 2013)
Library version: GnuTLS: Compile: 3.6.7
Runtime: 3.6.7
Library version: Cyrus SASL: Compile: 2.1.27
Runtime: 2.1.27 [Cyrus SASL]
Library version: PCRE: Compile: 8.39
Runtime: 8.39 2016-06-14
Total 19 lookups
Library version: MySQL: Compile: 100327 10.3.27 [mariadb-10.3]
Runtime: 100329 10.3.29
Library version: SQLite: Compile: 3.27.2
Runtime: 3.27.2
WHITELIST_D_MACROS: "OUTGOING"
TRUSTED_CONFIG_LIST: "/etc/exim4/trusted_configs"
changed uid/gid: forcing real = effective
uid=0 gid=0 pid=26767
auxiliary group list: <none>
seeking password data for user "uucp": cache not available
getpwnam() succeeded uid=10 gid=10
changed uid/gid: calling tls_validate_require_cipher
uid=107 gid=113 pid=26768
auxiliary group list: <none>
tls_validate_require_cipher child 26768 ended: status=0x0
configuration file is /var/lib/exim4/config.autogenerated
log selectors = ffffffff effffffb ffffffff
cwd=/root 3 args: exim -d+dns+host_lookup+resolver -qff
trusted user
admin user
seeking password data for user "mail": cache not available
getpwnam() succeeded uid=8 gid=8
Single queue run
set_process_info: 26767 running the queue (single queue run)
LOG: queue_run MAIN
Start queue run: pid=26767 -qff
queue running main directory
looking in /var/spool/exim4//input
search_tidyup called
set_process_info: 26767 running queue: 1mI8oI-0000o9-8J-H
set_process_info: 26767 running queue: waiting for 1mI8oI-0000o9-8J (26770)
set_process_info: 26770 delivering 1mI8oI-0000o9-8J (queue run pid 26767)
Trying spool file /var/spool/exim4//input//1mI8oI-0000o9-8J-D
reading spool file 1mI8oI-0000o9-8J-H
user=Debian-exim uid=107 gid=113 [email protected]
sender_fullhost = (smtpclient.apple) [2001:...]:63254
sender_rcvhost = [2001:...] (port=63254 helo=smtpclient.apple)
sender_local=0 ident=unset
Non-recipients:
-->[email protected] [0]
---- End of tree ----
recipients_count=2
**** SPOOL_IN - No additional fields
**** SPOOL_IN - No additional fields
body_linecount=262 message_linecount=17
Writing spool header file: /var/spool/exim4//input//hdr.26770
DSN: Write SPOOL :-dsn_envid NULL
DSN: Write SPOOL :-dsn_ret 0
DSN: Flags :0
DSN: **** SPOOL_OUT - address: |[email protected]| errorsto: |NULL| orcpt:
|NULL| dsn_flags: 0
DSN: Flags :0
DSN: **** SPOOL_OUT - address: |[email protected]| errorsto: |NULL| orcpt: |NULL|
dsn_flags: 0
Renaming spool header file: /var/spool/exim4//input//1mI8oI-0000o9-8J-H
Size of headers = 881
DSN: set orcpt: flags: 0
Delivery address list:
[email protected]
locking /var/spool/exim4/db/retry.lockfile
locked /var/spool/exim4/db/retry.lockfile
EXIM_DBOPEN: file </var/spool/exim4/db/retry> dir </var/spool/exim4/db>
flags=O_RDONLY
returned from EXIM_DBOPEN: 0x55600284cbd0
opened hints database /var/spool/exim4/db/retry: flags=O_RDONLY
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: [email protected]
unique = [email protected]
dbfn_read: key=R:stockholm.se
dbfn_read: key=R:[email protected]
dbfn_read: key=R:[email protected]:<[email protected]>
no domain retry record
no address retry record
[email protected]: queued for routing
EXIM_DBCLOSE(0x55600284cbd0)
closed hints database and lockfile
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing [email protected]
--------> hubbed_hosts router <--------
local_part=ABC domain=stockholm.se
checking domains
expansion of "${if
exists{/etc/exim4/hubbed_hosts}{partial-lsearch;/etc/exim4/hubbed_hosts}fail}"
forced failure: assume not in this list
hubbed_hosts router skipped: domains mismatch
--------> dnslookup_relay_to_domains router <--------
local_part=ABC domain=stockholm.se
checking domains
stockholm.se in
"@:localhost:uggla.sjd.se:josefsson.org:sjd.se:xn--josefon-4va.rocks:xn--rksmrgs-5wao1o.josefsson.org"?
no (end of list)
stockholm.se in ""? no (end of list)
stockholm.se in "! +local_domains : +relay_to_domains"? no (end of list)
dnslookup_relay_to_domains router skipped: domains mismatch
--------> dnslookup router <--------
local_part=ABC domain=stockholm.se
checking domains
cached no match for +local_domains
cached lookup data = NULL
stockholm.se in "! +local_domains"? yes (end of list)
R: dnslookup for [email protected]
calling dnslookup router
dnslookup router called for [email protected]
domain = stockholm.se
stockholm.se in "*"? yes (matched "*")
Coerced resolver DNSSEC support on.
DNS lookup of stockholm.se (MX) succeeded
stockholm.se MX DNSSEC
Coerced resolver DNSSEC support on.
DNS lookup of uxantispam001.stockholm.se (AAAA) gave NO_DATA
returning DNS_NODATA
DNS lookup of uxantispam001.stockholm.se (A) succeeded
uxantispam001.stockholm.se A DNSSEC
217.21.227.30 in "0.0.0.0 : 127.0.0.0/8 : 192.168.0.0/16 :172.16.0.0/12 :
10.0.0.0/8 : 169.254.0.0/16 :255.255.255.255"? no (end of list)
DNS lookup of uxantispam002.stockholm.se (AAAA) gave NO_DATA
returning DNS_NODATA
DNS lookup of uxantispam002.stockholm.se (A) succeeded
uxantispam002.stockholm.se A DNSSEC
217.21.227.31 in "0.0.0.0 : 127.0.0.0/8 : 192.168.0.0/16 :172.16.0.0/12 :
10.0.0.0/8 : 169.254.0.0/16 :255.255.255.255"? no (end of list)
fully qualified name = stockholm.se
host_find_bydns yield = HOST_FOUND (3); returned hosts:
uxantispam001.stockholm.se 217.21.227.30 MX=10 DNSSEC
uxantispam002.stockholm.se 217.21.227.31 MX=10 DNSSEC
Coerced resolver DNSSEC support on.
set transport remote_smtp
queued for remote_smtp transport: local_part = ABC
domain = stockholm.se
errors_to=NULL
domain_data=NULL localpart_data=NULL
routed by dnslookup router
envelope to: [email protected]
transport: remote_smtp
host uxantispam001.stockholm.se [217.21.227.30] MX=10 dnssec=yes
host uxantispam002.stockholm.se [217.21.227.31] MX=10 dnssec=yes
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
After routing:
Local deliveries:
Remote deliveries:
[email protected]
Failed addresses:
Deferred addresses:
search_tidyup called
>>>>>>>>>>>>>>>> Remote deliveries >>>>>>>>>>>>>>>>
--------> [email protected] <--------
search_tidyup called
set_process_info: 26770 delivering 1mI8oI-0000o9-8J: waiting for a remote
delivery subprocess to finish
selecting on subprocess pipes
changed uid/gid: remote delivery to [email protected] with transport=remote_smtp
uid=107 gid=113 pid=26771
auxiliary group list: <none>
set_process_info: 26771 delivering 1mI8oI-0000o9-8J using remote_smtp
T: remote_smtp for [email protected]
remote_smtp transport entered
[email protected]
hostlist:
'uxantispam001.stockholm.se' IP 217.21.227.30 port -1
'uxantispam002.stockholm.se' IP 217.21.227.31 port -1
checking status of uxantispam001.stockholm.se
locking /var/spool/exim4/db/retry.lockfile
locked /var/spool/exim4/db/retry.lockfile
EXIM_DBOPEN: file </var/spool/exim4/db/retry> dir </var/spool/exim4/db>
flags=O_RDONLY
returned from EXIM_DBOPEN: 0x5560028bb660
opened hints database /var/spool/exim4/db/retry: flags=O_RDONLY
dbfn_read: key=T:uxantispam001.stockholm.se:217.21.227.30
dbfn_read: key=T:uxantispam001.stockholm.se:217.21.227.30:1mI8oI-0000o9-8J
EXIM_DBCLOSE(0x5560028bb660)
closed hints database and lockfile
no message retry record
uxantispam001.stockholm.se [217.21.227.30] retry-status = usable
217.21.227.30 in serialize_hosts? no (option unset)
delivering 1mI8oI-0000o9-8J to uxantispam001.stockholm.se [217.21.227.30]
([email protected])
set_process_info: 26771 delivering 1mI8oI-0000o9-8J to
uxantispam001.stockholm.se [217.21.227.30] ([email protected])
217.21.227.30 in hosts_require_dane? no (option unset)
217.21.227.30 in hosts_try_dane? yes (matched "*")
selecting on subprocess pipes
DNS lookup of _25._tcp.uxantispam001.stockholm.se (TLSA) gave TRY_AGAIN
_25._tcp.uxantispam001.stockholm.se in dns_again_means_nonexist? no (option
unset)
returning DNS_AGAIN
TLSA lookup ret 3 DNSSEC
LOG: MAIN
H=uxantispam001.stockholm.se [217.21.227.30]:25: DANE error: tlsa lookup DEFER
set_process_info: 26771 delivering 1mI8oI-0000o9-8J: just tried
uxantispam001.stockholm.se [217.21.227.30] for [email protected]: result DEFER
added retry item for T:uxantispam001.stockholm.se:217.21.227.30: errno=-36
more_errno=0,M flags=2
address match test: subject=*@uxantispam001.stockholm.se pattern=*
uxantispam001.stockholm.se in "*"? yes (matched "*")
*@uxantispam001.stockholm.se in "*"? yes (matched "*")
checking status of uxantispam002.stockholm.se
locking /var/spool/exim4/db/retry.lockfile
locked /var/spool/exim4/db/retry.lockfile
EXIM_DBOPEN: file </var/spool/exim4/db/retry> dir </var/spool/exim4/db>
flags=O_RDONLY
returned from EXIM_DBOPEN: 0x5560028bb660
opened hints database /var/spool/exim4/db/retry: flags=O_RDONLY
dbfn_read: key=T:uxantispam002.stockholm.se:217.21.227.31
dbfn_read: key=T:uxantispam002.stockholm.se:217.21.227.31:1mI8oI-0000o9-8J
EXIM_DBCLOSE(0x5560028bb660)
closed hints database and lockfile
no message retry record
uxantispam002.stockholm.se [217.21.227.31] retry-status = usable
217.21.227.31 in serialize_hosts? no (option unset)
delivering 1mI8oI-0000o9-8J to uxantispam002.stockholm.se [217.21.227.31]
([email protected])
set_process_info: 26771 delivering 1mI8oI-0000o9-8J to
uxantispam002.stockholm.se [217.21.227.31] ([email protected])
217.21.227.31 in hosts_require_dane? no (option unset)
217.21.227.31 in hosts_try_dane? yes (matched "*")
selecting on subprocess pipes
selecting on subprocess pipes
DNS lookup of _25._tcp.uxantispam002.stockholm.se (TLSA) gave TRY_AGAIN
_25._tcp.uxantispam002.stockholm.se in dns_again_means_nonexist? no (option
unset)
returning DNS_AGAIN
TLSA lookup ret 3 DNSSEC
LOG: MAIN
H=uxantispam002.stockholm.se [217.21.227.31]:25: DANE error: tlsa lookup DEFER
set_process_info: 26771 delivering 1mI8oI-0000o9-8J: just tried
uxantispam002.stockholm.se [217.21.227.31] for [email protected]: result DEFER
added retry item for T:uxantispam002.stockholm.se:217.21.227.31: errno=-36
more_errno=0,M flags=2
all IP addresses skipped or deferred at least one address
updating wait-remote_smtp database
locking /var/spool/exim4/db/wait-remote_smtp.lockfile
locked /var/spool/exim4/db/wait-remote_smtp.lockfile
EXIM_DBOPEN: file </var/spool/exim4/db/wait-remote_smtp> dir
</var/spool/exim4/db> flags=O_RDWR
returned from EXIM_DBOPEN: 0x5560028bb660
opened hints database /var/spool/exim4/db/wait-remote_smtp: flags=O_RDWR
dbfn_read: key=uxantispam001.stockholm.se
already listed for uxantispam001.stockholm.se
dbfn_read: key=uxantispam002.stockholm.se
already listed for uxantispam002.stockholm.se
EXIM_DBCLOSE(0x5560028bb660)
closed hints database and lockfile
Leaving remote_smtp transport
set_process_info: 26771 delivering 1mI8oI-0000o9-8J (just run remote_smtp for
[email protected] in subprocess)
search_tidyup called
header write id:H,subid:0,size:16,final:H000016
header write id:H,subid:0,size:16,final:H000016
header write id:S,subid:0,size:4,final:S000004
header write id:D,subid:0,size:4,final:D000004
header write id:R,subid:0,size:82,final:R000082
header write id:R,subid:0,size:82,final:R000082
header write id:A,subid:0,size:52,final:A000052
header write id:Z,subid:0,size:1,final:Z000001
reading pipe for subprocess 26771 (not ended yet)
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 16 bytes (pipedata) from transport process 26771
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 16 bytes (pipedata) from transport process 26771
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 4 bytes (pipedata) from transport process 26771
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 4 bytes (pipedata) from transport process 26771
DSN read: addr->dsn_aware = 0
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 82 bytes (pipedata) from transport process 26771
reading retry information for T:uxantispam002.stockholm.se:217.21.227.31 from
subprocess
added retry item
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 82 bytes (pipedata) from transport process 26771
reading retry information for T:uxantispam001.stockholm.se:217.21.227.30 from
subprocess
added retry item
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 52 bytes (pipedata) from transport process 26771
A0 [email protected] tret 1
expect 7 bytes (pipeheader) from tpt process 26771
got 7 bytes (pipeheader) from transport process 26771
expect 1 bytes (pipedata) from transport process 26771
Z00 item read
remote delivery process 26771 ended
set_process_info: 26770 delivering 1mI8oI-0000o9-8J
post-process [email protected] (1)
LOG: MAIN
== [email protected] R=dnslookup T=remote_smtp defer (-36): DANE error: tlsa
lookup DEFER
>>>>>>>>>>>>>>>> deliveries are done >>>>>>>>>>>>>>>>
changed uid/gid: post-delivery tidying
uid=107 gid=113 pid=26770
auxiliary group list: <none>
set_process_info: 26770 tidying up after delivering 1mI8oI-0000o9-8J
Processing retry items
Succeeded addresses:
Failed addresses:
Deferred addresses:
[email protected]
locking /var/spool/exim4/db/retry.lockfile
locked /var/spool/exim4/db/retry.lockfile
EXIM_DBOPEN: file </var/spool/exim4/db/retry> dir </var/spool/exim4/db>
flags=O_RDWR
returned from EXIM_DBOPEN: 0x5560028bb660
opened hints database /var/spool/exim4/db/retry: flags=O_RDWR
address match test: subject=*@uxantispam001.stockholm.se pattern=*
uxantispam001.stockholm.se in "*"? yes (matched "*")
*@uxantispam001.stockholm.se in "*"? yes (matched "*")
retry for T:uxantispam001.stockholm.se:217.21.227.30 (stockholm.se) = * 0 0
dbfn_read: key=T:uxantispam001.stockholm.se:217.21.227.30
failing_interval=161717 message_age=161670
Writing retry data for T:uxantispam001.stockholm.se:217.21.227.30
first failed=1629720876 last try=1629882593 next try=1629904193 expired=0
errno=-36 more_errno=0,M DANE error: tlsa lookup DEFER
dbfn_write: key=T:uxantispam001.stockholm.se:217.21.227.30
address match test: subject=*@uxantispam002.stockholm.se pattern=*
uxantispam002.stockholm.se in "*"? yes (matched "*")
*@uxantispam002.stockholm.se in "*"? yes (matched "*")
retry for T:uxantispam002.stockholm.se:217.21.227.31 (stockholm.se) = * 0 0
dbfn_read: key=T:uxantispam002.stockholm.se:217.21.227.31
failing_interval=161717 message_age=161670
Writing retry data for T:uxantispam002.stockholm.se:217.21.227.31
first failed=1629720876 last try=1629882593 next try=1629904193 expired=0
errno=-36 more_errno=0,M DANE error: tlsa lookup DEFER
dbfn_write: key=T:uxantispam002.stockholm.se:217.21.227.31
EXIM_DBCLOSE(0x5560028bb660)
closed hints database and lockfile
end of retry processing
time on queue = 1d20h57m39s id 1mI8oI-0000o9-8J addr [email protected]
warning counts: required 1 done 1
delivery deferred: update_spool=0 header_rewritten=0
end delivery of 1mI8oI-0000o9-8J
search_tidyup called
set_process_info: 26767 running queue: waiting for children of 26770
set_process_info: 26767 running queue
LOG: queue_run MAIN
End queue run: pid=26767 -qff
search_tidyup called
>>>>>>>>>>>>>>>> Exim pid=26767 (main) terminating with rc=0 >>>>>>>>>>>>>>>>
real 3m9.034s
user 0m0.012s
sys 0m0.034s
root@uggla:~#
signature.asc
Description: PGP signature
--- End Message ---