Removed SIZE= from FROM: in sendmail

SVN revision: 1654
This commit is contained in:
2006-02-09 08:07:56 +00:00
parent 51377a72e6
commit 652d99bc91
+1 -1
View File
@@ -2181,7 +2181,7 @@ int sendmail(LOGBOOK * lbs, char *smtp_host, char *from, char *to, char *text, c
goto smtp_error;
}
snprintf(str, strsize - 1, "MAIL FROM: %s SIZE=%d\r\n", from, strlen(text));
snprintf(str, strsize - 1, "MAIL FROM: %s\r\n", from);
send(s, str, strlen(str), 0);
if (verbose)
efputs(str);