From 7e9b24118b1b19997d26b68ed86c6e1f8acf6f00 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Mon, 21 Oct 2013 00:07:52 +0200 Subject: [PATCH] As pointed out by koelbli, we have to send the passvoid this time. --- citadel/modules/smtp/smtp_clienthandlers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citadel/modules/smtp/smtp_clienthandlers.c b/citadel/modules/smtp/smtp_clienthandlers.c index 9e5d61193..bbdbc4684 100644 --- a/citadel/modules/smtp/smtp_clienthandlers.c +++ b/citadel/modules/smtp/smtp_clienthandlers.c @@ -326,8 +326,8 @@ eNextState SMTPC_send_authplain_2(SmtpOutMsg *Msg) encodedlen = CtdlEncodeBase64( encoded, - Msg->pCurrRelay->User, - strlen(Msg->pCurrRelay->User), + Msg->pCurrRelay->Pass, + strlen(Msg->pCurrRelay->Pass), 0); StrBufPlain(Msg->IO.SendBuf.Buf, -- 2.30.2