mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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:
parent
b108ca625b
commit
799ff0ba34
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue