about summary refs log tree commit diff stats
path: root/ui
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-01-14 11:30:11 +0100
committerDrew DeVault <sir@cmpwn.com>2018-01-14 10:26:38 -0500
commit1710c9054898e820700d673e21e7c7a90a3f67b1 (patch)
treeca0c18c038b43ec9b456088d90e4dffa7c1210e8 /ui
parent4074445cbb45dc6ec132e67b7eac9f32dcfd53de (diff)
downloadaerc-1710c9054898e820700d673e21e7c7a90a3f67b1.tar.gz
Connect to IMAP server, login and idle
Diffstat (limited to 'ui')
-rw-r--r--ui/account.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/account.go b/ui/account.go
index 50f41e4..8353db3 100644
--- a/ui/account.go
+++ b/ui/account.go
@@ -26,6 +26,7 @@ func NewAccountTab(conf *config.AccountConfig) (*AccountTab, error) {
 	}
 	go work.Run()
 	work.PostAction(types.Configure{Config: conf})
+	work.PostAction(types.Connect{})
 	return &AccountTab{
 		Config: conf,
 		Worker: work,