MTA: Fix SASL challenge response

This commit is contained in:
Maurus Decimus
2026-03-27 19:43:21 +01:00
parent a973ad1d5d
commit 8128eb84aa

View File

@@ -51,7 +51,7 @@ impl<T: SessionStream> Session<T> {
if response.is_empty() {
match (token.mechanism, &token.credentials) {
(AUTH_PLAIN | AUTH_XOAUTH2 | AUTH_OAUTHBEARER, _) => {
self.write(b"334 Go ahead.\r\n").await?;
self.write(b"334 \r\n").await?;
return Ok(true);
}
(