From: Wilfried Goesgens Date: Sun, 6 Oct 2013 15:48:49 +0000 (+0200) Subject: fix a bug introduced in a8bb950b3da00b7933912c27e2ad92814b10d75b ; we want to set... X-Git-Tag: v9.01~223 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=5fef73565bdc59c4b578c5f6e70efc8b9b42fe55 fix a bug introduced in a8bb950b3da00b7933912c27e2ad92814b10d75b ; we want to set the user if its not set. --- diff --git a/citadel/modules/smtp/serv_smtp.c b/citadel/modules/smtp/serv_smtp.c index 1a5b6009c..6a06515c3 100644 --- a/citadel/modules/smtp/serv_smtp.c +++ b/citadel/modules/smtp/serv_smtp.c @@ -622,7 +622,7 @@ void smtp_mail(long offset, long flags) { * address so we don't have to contend with the empty string causing * other code to fail when it's expecting something there. */ - if (StrLength(sSMTP->from)) { + if (StrLength(sSMTP->from) == 0) { StrBufPlain(sSMTP->from, HKEY("someone@example.com")); }