|
I see this when sending mail to outlook users. The mail is delivered, so seems to functionally work, but curious what the QUIT error is about: |
Answered by
foxcpp
Apr 2, 2022
Replies: 1 comment 1 reply
|
It is maddy trying to close idle SMTP connections "properly" while the remote server already closed the connection. This happens because maddy keeps a connection open after sending a message to reuse it if another message needs to be sent to the same domain, but SMTP servers frequently close idle connections before maddy checks whether it is still open. TLDR Nothing to worry about, unless you send messages to 10k different domains daily (in which case the amount of half-open connections left by maddy might be an issue). |
1 reply
Answer selected by
cbrake
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is maddy trying to close idle SMTP connections "properly" while the remote server already closed the connection. This happens because maddy keeps a connection open after sending a message to reuse it if another message needs to be sent to the same domain, but SMTP servers frequently close idle connections before maddy checks whether it is still open.
TLDR Nothing to worry about, unless you send messages to 10k different domains daily (in which case the amount of half-open connections left by maddy might be an issue).