From 86579bb4781c559917d9495eeb982137ade04bac Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 13 Nov 2020 10:33:19 -0500 Subject: Remove async SMTP queue --- plugins/base/imap.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'plugins/base/imap.go') 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 -- cgit v1.2.3-59-g8ed1b