From 799ff0ba34d8ad2a447d807a60d99a2331deb93b Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Fri, 24 Jul 2020 12:18:32 +0300 Subject: [PATCH] cmd/maddyctl: Fix use of "*" to list all messages Using "*" comes from times when go-imap-sql mishandled it as 1:* --- cmd/maddyctl/imap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/maddyctl/imap.go b/cmd/maddyctl/imap.go index 2236b35..e5215b5 100644 --- a/cmd/maddyctl/imap.go +++ b/cmd/maddyctl/imap.go @@ -360,7 +360,7 @@ func msgsList(be module.Storage, ctx *cli.Context) error { } seqset := ctx.Args().Get(2) if seqset == "" { - seqset = "*" + seqset = "1:*" } seq, err := imap.ParseSeqSet(seqset)