mirror of
https://github.com/curl/curl.git
synced 2026-04-19 21:11:14 +03:00
SMTP: add brackets for MAIL FROM
Similar to what is done already for RCPT TO, the code now checks for and adds angle brackets (<>) around the email address that is provided for CURLOPT_MAIL_RCPT unless the app has done so itself.
This commit is contained in:
parent
5f829456c1
commit
375aa41ba1
1 changed files with 7 additions and 3 deletions
10
lib/smtp.c
10
lib/smtp.c
|
|
@ -754,9 +754,13 @@ static CURLcode smtp_mail(struct connectdata *conn)
|
|||
CURLcode result = CURLE_OK;
|
||||
struct SessionHandle *data = conn->data;
|
||||
|
||||
/* send MAIL */
|
||||
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "MAIL FROM:%s",
|
||||
data->set.str[STRING_MAIL_FROM]);
|
||||
/* send MAIL FROM */
|
||||
if (data->set.str[STRING_MAIL_FROM][0] == '<')
|
||||
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "MAIL FROM:%s",
|
||||
data->set.str[STRING_MAIL_FROM]);
|
||||
else
|
||||
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "MAIL FROM:<%s>",
|
||||
data->set.str[STRING_MAIL_FROM]);
|
||||
if(result)
|
||||
return result;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue