aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/account/check-mail.go31
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
+}