cmd/maddyctl: Fix use of "*" to list all messages

Using "*" comes from times when go-imap-sql mishandled it as 1:*
This commit is contained in:
fox.cpp 2020-07-24 12:18:32 +03:00
parent b108ca625b
commit 799ff0ba34
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -360,7 +360,7 @@ func msgsList(be module.Storage, ctx *cli.Context) error {
} }
seqset := ctx.Args().Get(2) seqset := ctx.Args().Get(2)
if seqset == "" { if seqset == "" {
seqset = "*" seqset = "1:*"
} }
seq, err := imap.ParseSeqSet(seqset) seq, err := imap.ParseSeqSet(seqset)