cli/ctl: Add --no-specialuse flag for imap-acct create

This commit is contained in:
fox.cpp 2025-01-28 23:34:03 +03:00
parent 69b434f341
commit 06fd5249d2
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -81,6 +81,11 @@ creates a set of default folder (mailboxes) with special-use attribute set.`,
EnvVars: []string{"MADDY_CFGBLOCK"},
Value: "local_mailboxes",
},
&cli.BoolFlag{
Name: "no-specialuse",
Usage: "Do not create special-use folders",
Value: false,
},
&cli.StringFlag{
Name: "sent-name",
Usage: "Name of special mailbox for sent messages, use empty string to not create any",
@ -235,6 +240,10 @@ func imapAcctCreate(be module.Storage, ctx *cli.Context) error {
fmt.Fprintf(os.Stderr, "Note: Storage backend does not support SPECIAL-USE IMAP extension")
}
if ctx.Bool("no-specialuse") {
return nil
}
createMbox := func(name, specialUseAttr string) error {
if suu == nil {
return act.CreateMailbox(name)