mirror of
https://github.com/chatmail/relay.git
synced 2026-09-17 21:00:13 +00:00
fix: Correct a typo in SMTP answer (#11)
Signed-off-by: Jagoda Ślązak <jslazak@jslazak.com>
This commit is contained in:
@@ -117,7 +117,7 @@ where
|
|||||||
} else {
|
} else {
|
||||||
log::debug!("Invalid MAIL FROM command. Can't extract address.");
|
log::debug!("Invalid MAIL FROM command. Can't extract address.");
|
||||||
writer
|
writer
|
||||||
.write_all(b"500 Invalid addreess in MAIL FROM\r\n")
|
.write_all(b"500 Invalid address in MAIL FROM\r\n")
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
} else if cmd.to_uppercase().starts_with("RCPT TO:") {
|
} else if cmd.to_uppercase().starts_with("RCPT TO:") {
|
||||||
|
|||||||
Reference in New Issue
Block a user