From 227c43a78394d957fda061f46c5cd46d4cb117ad Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 5 Jun 2021 15:51:49 -0400 Subject: [PATCH] =?utf8?q?2021-06-02=2003:45=20from=20jmb100770=20Subject:?= =?utf8?q?=20Re:=20500=20No=20such=20user=20on=20AUTH=20LOGIN=20I=20encoun?= =?utf8?q?tered=20this=20same=20authentication=20problem=20with=20version?= =?utf8?q?=20931=20built=20via=20easy-install.=C2=A0=20I=20think=20the=20p?= =?utf8?q?roblem=20is=20with=20citadel/modules/smtp/serv=5Fsmtp.c=20where?= =?utf8?q?=C2=A0smtp=5Fget=5Fuser(5)=20is=20called=20in=C2=A0smtp=5Fcomman?= =?utf8?q?d=5Floop.=C2=A0=20From=20this=20context,=20the=20offset=20parame?= =?utf8?q?ter=205=20should=20be=20replaced=20by=20zero=20(0).=C2=A0=20I=20?= =?utf8?q?modified=20the=20easy-install=20script=20to=20work=20with=20a=20?= =?utf8?q?patched=20copy=20of=20the=20tarball=20and=20the=20resulting=20bu?= =?utf8?q?ild=20seems=20to=20work=20correctly.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- 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 0987cb80b..f8d7466d6 100644 --- a/citadel/modules/smtp/serv_smtp.c +++ b/citadel/modules/smtp/serv_smtp.c @@ -980,7 +980,7 @@ void smtp_command_loop(void) { smtp_try_plain(); } else { - smtp_get_user(5); + smtp_get_user(0); } return; } -- 2.30.2