From 5fef73565bdc59c4b578c5f6e70efc8b9b42fe55 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 6 Oct 2013 17:48:49 +0200 Subject: [PATCH] fix a bug introduced in a8bb950b3da00b7933912c27e2ad92814b10d75b ; we want to set the user if its not set. --- citadel/modules/smtp/serv_smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); } -- 2.30.2