From e41ed82cf3dbb4a1152a562ab754a9dc4a6c57b3 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 1 Nov 2021 21:38:26 +0100 Subject: imap: add manual {dis,}connect support Signed-off-by: Robin Jarry --- commands/account/connection.go | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 commands/account/connection.go (limited to 'commands') diff --git a/commands/account/connection.go b/commands/account/connection.go new file mode 100644 index 0000000..a87993b --- /dev/null +++ b/commands/account/connection.go @@ -0,0 +1,37 @@ +package account + +import ( + "errors" + + "git.sr.ht/~rjarry/aerc/widgets" + "git.sr.ht/~rjarry/aerc/worker/types" +) + +type Connection struct{} + +func init() { + register(Connection{}) +} + +func (Connection) Aliases() []string { + return []string{"connect", "disconnect"} +} + +func (Connection) Complete(aerc *widgets.Aerc, args []string) []string { + return nil +} + +func (Connection) Execute(aerc *widgets.Aerc, args []string) error { + acct := aerc.SelectedAccount() + if acct == nil { + return errors.New("No account selected") + } + if args[0] == "connect" { + acct.Worker().PostAction(&types.Connect{}, nil) + acct.SetStatus("Connecting...") + } else { + acct.Worker().PostAction(&types.Disconnect{}, nil) + acct.SetStatus("Disconnecting...") + } + return nil +} -- cgit 1.4.1-2-gfad0 href='/danisanti/profani-tty/log/tests/unittests/test_chat_session.c'>log tree commit diff stats
blob: 26845dbcbf4e85c456df19ea47b7f7a2c1088c6d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55