Load IMAP worker for imap+insecure

This commit is contained in:
Drew DeVault 2019-05-20 19:20:20 -04:00
parent cc90cd2161
commit 2dc436555d
3 changed files with 13 additions and 4 deletions

View File

@ -37,7 +37,8 @@ func NewAccountView(conf *config.AercConfig, acct *config.AccountConfig,
worker, err := worker.NewWorker(acct.Source, logger)
if err != nil {
host.SetStatus(fmt.Sprintf("%s: %s", acct.Name, err))
host.SetStatus(fmt.Sprintf("%s: %s", acct.Name, err)).
Color(tcell.ColorDefault, tcell.ColorRed)
return &AccountView{
acct: acct,
grid: grid,
@ -74,6 +75,9 @@ func NewAccountView(conf *config.AercConfig, acct *config.AccountConfig,
}
func (acct *AccountView) Tick() bool {
if acct.worker == nil {
return false
}
select {
case msg := <-acct.worker.Messages:
msg = acct.worker.ProcessMessage(msg)

View File

@ -71,10 +71,9 @@ func (w *IMAPWorker) handleMessage(msg types.WorkerMessage) error {
w.config.addr = u.Host
if !strings.ContainsRune(w.config.addr, ':') {
w.config.addr += ":" + u.Scheme
w.config.addr += ":" + w.config.scheme
}
w.config.scheme = u.Scheme
w.config.user = u.User
case *types.Connect:
var (

View File

@ -7,6 +7,7 @@ import (
"fmt"
"log"
"net/url"
"strings"
)
// Guesses the appropriate worker type based on the given source string
@ -16,7 +17,12 @@ func NewWorker(source string, logger *log.Logger) (*types.Worker, error) {
return nil, err
}
worker := types.NewWorker(logger)
switch u.Scheme {
scheme := u.Scheme
if strings.ContainsRune(scheme, '+') {
scheme = scheme[:strings.IndexRune(scheme, '+')]
fmt.Println(scheme)
}
switch scheme {
case "imap":
fallthrough
case "imaps":