aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/check-mail.go
blob: a8d80a66f7c5bcbb2215d95a6a126f84fb1a16bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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) Complete(args []string) []string {
	return nil
}

func (CheckMail) Execute(args []string) error {
	acct := app.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	acct.CheckMailReset()
	acct.CheckMail()
	return nil
}