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
Yes, RFC 4954 Section 8 states the sasl-mech should be case insensitive. It seems aiosmtpd.smtp provides the auth_mechanism decorator that does just what you're trying to achieve:
Yes, RFC 4954 Section 8 states the sasl-mech should be case insensitive. It seems aiosmtpd.smtp provides the auth_mechanism decorator that does just what you're trying to achieve:
Hello,
I am currently implementing a smtp handler from requests coming from a C# System.Net.Mail.SMTPClient instance with credentials (code).
I didn't understand the problem until I discovered with tcpdump that the login method is spelled "login" in lowercase:

and indeed your code is not doing any case matching on the said authentication method:

Would it be possible to transform method to uppercase before handling it?
Thanks in advance.
The text was updated successfully, but these errors were encountered: