diff options
author | 2020-11-13 10:33:19 -0500 | |
---|---|---|
committer | 2020-11-13 10:33:19 -0500 | |
commit | 86579bb4781c559917d9495eeb982137ade04bac (patch) | |
tree | 1fd85c0ff24a99a83ea3b079697157aea269a71d /plugins/base/imap.go | |
parent | 0d1cca191bd054516fa70d5715996ea085a0dde6 (diff) | |
download | alps-86579bb4781c559917d9495eeb982137ade04bac.tar.gz alps-86579bb4781c559917d9495eeb982137ade04bac.tar.bz2 alps-86579bb4781c559917d9495eeb982137ade04bac.zip |
Remove async SMTP queue
Diffstat (limited to 'plugins/base/imap.go')
-rw-r--r-- | plugins/base/imap.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/base/imap.go b/plugins/base/imap.go index 85cd428..c7718e9 100644 --- a/plugins/base/imap.go +++ b/plugins/base/imap.go @@ -96,7 +96,6 @@ type mailboxType int const ( mailboxSent mailboxType = iota - mailboxOutbox mailboxType = iota mailboxDrafts ) @@ -117,9 +116,6 @@ func getMailboxByType(conn *imapclient.Client, mboxType mailboxType) (*MailboxIn case mailboxDrafts: attr = imapspecialuse.Drafts fallbackNames = []string{"Draft", "Drafts"} - case mailboxOutbox: - attr = "" - fallbackNames = []string{"Outbox"} } var attrMatched bool |