melib/smtp: fix SMTP syntax error on DSN notify use

jmap-eventsource
Manos Pitsidianakis 2020-11-10 20:03:00 +02:00
parent 2544f54107
commit aa7ebf2918
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ impl SmtpConnection {
current_command.push(b"RCPT TO:<");
current_command.push(addr.address_spec_raw().trim());
if let Some(dsn_notify) = dsn_notify.as_ref() {
current_command.push(b" NOTIFY=");
current_command.push(b"> NOTIFY=");
current_command.push(dsn_notify.as_bytes());
} else {
current_command.push(b">");