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