mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-10 16:04:55 +00:00
75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
package email
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/emersion/go-imap/v2/imapclient"
|
|
"github.com/warmbly/warmbly/internal/client/netbind"
|
|
"github.com/warmbly/warmbly/internal/models"
|
|
)
|
|
|
|
// VerifyImap probes a mailbox's IMAP credentials the way the sync client
|
|
// connects: the caller's security mode decides implicit TLS versus STARTTLS.
|
|
// security may be empty, in which case the port convention decides.
|
|
func VerifyImap(ctx context.Context, host string, port int, user, pass, security string) bool {
|
|
addr := fmt.Sprintf("%s:%d", host, port)
|
|
|
|
dialer := &net.Dialer{Timeout: 5 * time.Second}
|
|
conn, err := dialer.DialContext(ctx, "tcp", addr)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
defer conn.Close()
|
|
|
|
// Matches the sync client's TLS policy: MAIL_TLS_INSECURE is a dev-only
|
|
// knob for the local self-signed sandbox, never set in production. Without
|
|
// it, validation rejects mailboxes the worker would go on to sync fine.
|
|
tlsConf := &tls.Config{
|
|
ServerName: host,
|
|
InsecureSkipVerify: netbind.InsecureTLS(),
|
|
}
|
|
|
|
var c *imapclient.Client
|
|
|
|
if models.ResolveIMAPSecurity(security, port) == models.MailSecurityStartTLS {
|
|
// The greeting arrives in cleartext and the upgrade happens in-band.
|
|
if err := conn.SetDeadline(time.Now().Add(5 * time.Second)); err != nil {
|
|
return false
|
|
}
|
|
c, err = imapclient.NewStartTLS(conn, &imapclient.Options{TLSConfig: tlsConf})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
} else {
|
|
tlsConn := tls.Client(conn, tlsConf)
|
|
if err := tlsConn.SetDeadline(time.Now().Add(5 * time.Second)); err != nil {
|
|
return false
|
|
}
|
|
if err := tlsConn.HandshakeContext(ctx); err != nil {
|
|
return false
|
|
}
|
|
c = imapclient.New(tlsConn, nil)
|
|
}
|
|
|
|
defer func() {
|
|
_ = c.Logout().Wait()
|
|
_ = c.Close()
|
|
}()
|
|
|
|
done := make(chan error, 1)
|
|
go func() {
|
|
done <- c.Login(user, pass).Wait()
|
|
}()
|
|
|
|
select {
|
|
case err := <-done:
|
|
return err == nil
|
|
case <-ctx.Done():
|
|
return false
|
|
}
|
|
}
|