You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We got a transient 4xx response from SMTP server.
246
246
// Give some time until the server-side error maybe goes away.
247
-
248
-
ifletSome(first_word) = response.first_word(){
249
-
if first_word.ends_with(".1.1")
250
-
|| first_word.ends_with(".1.2")
251
-
|| first_word.ends_with(".1.3")
252
-
{
253
-
// Sometimes we receive transient errors that should be permanent.
254
-
// Any extended smtp status codes like x.1.1, x.1.2 or x.1.3 that we
255
-
// receive as a transient error are misconfigurations of the smtp server.
256
-
// See <https://tools.ietf.org/html/rfc3463#section-3.2>
257
-
info!(context,"Received extended status code {first_word} for a transient error. This looks like a misconfigured SMTP server, let's fail immediately.");
0 commit comments