mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
cli/ctl: Add --no-specialuse flag for imap-acct create
This commit is contained in:
parent
69b434f341
commit
06fd5249d2
1 changed files with 9 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue