From b1f0b8f60177c982299ceed18de3f89817424dce Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Fri, 6 Sep 2024 09:43:38 +0200 Subject: [PATCH] pop3: fix multi-line with LIST arg The POP3 LIST command is not multi-line when having an argument. Fix the definition to correct the behaviour. Reported-by: ralfjunker on github Fixes #14801 Closes #14808 --- lib/pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pop3.c b/lib/pop3.c index 1d12a71632..1f5334d917 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -215,7 +215,7 @@ static const struct pop3_cmd pop3cmds[] = { { "AUTH", 4, FALSE, FALSE }, { "CAPA", 4, TRUE, TRUE }, { "DELE", 4, FALSE, FALSE }, - { "LIST", 4, TRUE, TRUE }, + { "LIST", 4, TRUE, FALSE }, { "MSG", 3, TRUE, TRUE }, { "NOOP", 4, FALSE, FALSE }, { "PASS", 4, FALSE, FALSE },