[Mailer] Throw TransportException
when unable to read from socket
#53157
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We are seeing error
fgets(): SSL: Connection reset by peer
multiple times a day from connection to Office 365 SMTP server (smtp.office365.com:587).It's certainly related to some kind of timeout as we are sending emails from long running queue dispatcher and error shows up only occasionally and never with the first message. We are not seeing this issue with any other SMTP server, but we have not tested much past smtp.mandrillapp.com and local MailHog.
We have tried adjusting the
$pingThreshold
and$restartThreshold
options, but without much success (well$restartThreshold = 1
resolves the issue, but it also forces the transport to close connection after each message).Stack trace:
App is running on PHP 8.0.28 on Debian Linux x64, Mailer v5.4.22.
I would gladly written some tests for this, but I don't know how to simulate calls to low-level stream functions like fgets.