gofmt'ing the IMAP changes

pull/1867/head
Jordan Wright 2020-06-16 20:13:24 -05:00
parent 61bbb22f7c
commit 0f6439de5a
2 changed files with 6 additions and 7 deletions

View File

@ -191,7 +191,6 @@ func (mbox *Mailbox) newClient() (*client.Client, error) {
return imapClient, err return imapClient, err
} }
err = imapClient.Login(mbox.User, mbox.Pwd) err = imapClient.Login(mbox.User, mbox.Pwd)
if err != nil { if err != nil {
return imapClient, err return imapClient, err

View File

@ -9,11 +9,11 @@ package imap
import ( import (
"bytes" "bytes"
"context" "context"
"path/filepath"
"regexp" "regexp"
"strconv" "strconv"
"strings" "strings"
"time" "time"
"path/filepath"
log "github.com/gophish/gophish/logger" log "github.com/gophish/gophish/logger"
"github.com/jordan-wright/email" "github.com/jordan-wright/email"