I got extended delivery status code which crashes detector.
Action: failedStatus: 5.7.133Diagnostic-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, "");
}
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: