0771eaf24c
Adding the [-t] temporary flag to the new-account command - when using -t a newly created account will not be stored into the accounts.conf Issue #134
28 lines
566 B
Go
28 lines
566 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
"git.sr.ht/~sircmpwn/getopt"
|
|
)
|
|
|
|
func init() {
|
|
register("new-account", CommandNewAccount)
|
|
}
|
|
|
|
func CommandNewAccount(aerc *widgets.Aerc, args []string) error {
|
|
opts, _, err := getopt.Getopts(args[1:], "t")
|
|
if err != nil {
|
|
return errors.New("Usage: new-account [-t]")
|
|
}
|
|
wizard := widgets.NewAccountWizard(aerc.Config(), aerc)
|
|
for _, opt := range opts {
|
|
switch opt.Option {
|
|
case 't':
|
|
wizard.ConfigureTemporaryAccount(true)
|
|
}
|
|
}
|
|
aerc.NewTab(wizard, "New account")
|
|
return nil
|
|
}
|