diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2022-07-29 13:30:02 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-01 10:37:28 +0200 |
commit | db195bebf061d793ff34ba209059fe3f43e189e2 (patch) | |
tree | 37e6a23f7d2e1d728bab7bf0827519520fa531de /commands/account | |
parent | 44651b43b3a59d35b98936e0bcd4edf797f68b42 (diff) | |
download | aerc-db195bebf061d793ff34ba209059fe3f43e189e2.tar.gz |
commands: add check-mail command
Add :check-mail command for ad-hoc checking of mail. Reset timer for
automatic checking if it is enabled.
Suggested-by: staceee
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/account')
-rw-r--r-- | commands/account/check-mail.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/commands/account/check-mail.go b/commands/account/check-mail.go new file mode 100644 index 00000000..eb57c0c0 --- /dev/null +++ b/commands/account/check-mail.go @@ -0,0 +1,31 @@ +package account + +import ( + "errors" + + "git.sr.ht/~rjarry/aerc/widgets" +) + +type CheckMail struct{} + +func init() { + register(CheckMail{}) +} + +func (CheckMail) Aliases() []string { + return []string{"check-mail"} +} + +func (CheckMail) Complete(aerc *widgets.Aerc, args []string) []string { + return nil +} + +func (CheckMail) Execute(aerc *widgets.Aerc, args []string) error { + acct := aerc.SelectedAccount() + if acct == nil { + return errors.New("No account selected") + } + acct.CheckMailReset() + acct.CheckMail() + return nil +} |