blob: d31b2648e8283ab116fd9aa5068d3833bd2cee10 (
plain) (
tree)
|
|
package account
import (
"errors"
"git.sr.ht/~rjarry/aerc/app"
)
type CheckMail struct{}
func init() {
register(CheckMail{})
}
func (CheckMail) Aliases() []string {
return []string{"check-mail"}
}
func (CheckMail) Execute(args []string) error {
acct := app.SelectedAccount()
if acct == nil {
return errors.New("No account selected")
}
acct.CheckMailReset()
acct.CheckMail()
return nil
}
|