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
I got extended delivery status code which crashes detector. Action: failed Status: 5.7.133 Diagnostic-Code: smtp;550 5.7.133 RESOLVER.RST.SenderNotAuthenticatedForGroup; authentication required; Delivery restriction check failed because the sender was not authenticated when sending to this group
I propose this to fix an issue:
private static BounceStatus ParseBounceStatus(string statusCode, IDictionary<int, string> statusCodes)
{
var value = int.Parse(statusCode);
if (statusCodes.ContainsKey(value))
return new BounceStatus(value, statusCodes[value]);
else
return new BounceStatus(value, "");
}
The text was updated successfully, but these errors were encountered:
I got extended delivery status code which crashes detector.
Action: failed
Status: 5.7.133
Diagnostic-Code: smtp;550 5.7.133 RESOLVER.RST.SenderNotAuthenticatedForGroup; authentication required; Delivery restriction check failed because the sender was not authenticated when sending to this group
I propose this to fix an issue:
The text was updated successfully, but these errors were encountered: