listmonk/internal/messenger/emailer.go

151 lines
3.4 KiB
Go
Raw Normal View History

2018-10-25 15:51:47 +02:00
package messenger
import (
2020-04-01 16:26:40 +02:00
"errors"
2018-10-25 15:51:47 +02:00
"fmt"
"math/rand"
"net/smtp"
"time"
"github.com/jordan-wright/email"
)
const emName = "email"
2020-04-01 16:26:40 +02:00
// loginAuth is used for enabling SMTP "LOGIN" auth.
type loginAuth struct {
username string
password string
}
2018-10-25 15:51:47 +02:00
// Server represents an SMTP server's credentials.
type Server struct {
Name string
Host string `koanf:"host"`
Port int `koanf:"port"`
AuthProtocol string `koanf:"auth_protocol"`
Username string `koanf:"username"`
Password string `koanf:"password"`
HelloHostname string `koanf:"hello_hostname"`
SendTimeout time.Duration `koanf:"send_timeout"`
MaxConns int `koanf:"max_conns"`
2018-10-25 15:51:47 +02:00
mailer *email.Pool
}
type emailer struct {
servers map[string]*Server
serverNames []string
numServers int
}
// NewEmailer creates and returns an e-mail Messenger backend.
// It takes multiple SMTP configurations.
func NewEmailer(srv ...Server) (Messenger, error) {
e := &emailer{
servers: make(map[string]*Server),
}
for _, server := range srv {
s := server
2018-10-25 15:51:47 +02:00
var auth smtp.Auth
2020-04-01 16:26:40 +02:00
switch s.AuthProtocol {
case "cram":
2018-10-25 15:51:47 +02:00
auth = smtp.CRAMMD5Auth(s.Username, s.Password)
2020-04-01 16:26:40 +02:00
case "plain":
2018-10-25 15:51:47 +02:00
auth = smtp.PlainAuth("", s.Username, s.Password, s.Host)
2020-04-01 16:26:40 +02:00
case "login":
auth = &loginAuth{username: s.Username, password: s.Password}
case "":
default:
return nil, fmt.Errorf("unknown SMTP auth typer '%s'", s.AuthProtocol)
2018-10-25 15:51:47 +02:00
}
2018-11-05 15:14:21 +01:00
pool, err := email.NewPool(fmt.Sprintf("%s:%d", s.Host, s.Port), s.MaxConns, auth)
2018-10-25 15:51:47 +02:00
if err != nil {
return nil, err
}
// Optional SMTP HELLO hostname.
if server.HelloHostname != "" {
pool.SetHelloHostname(server.HelloHostname)
}
2018-10-25 15:51:47 +02:00
s.mailer = pool
e.servers[s.Name] = &s
e.serverNames = append(e.serverNames, s.Name)
}
e.numServers = len(e.serverNames)
return e, nil
}
// Name returns the Server's name.
func (e *emailer) Name() string {
return emName
}
// Push pushes a message to the server.
func (e *emailer) Push(fromAddr string, toAddr []string, subject string, m []byte, atts []*Attachment) error {
2018-10-25 15:51:47 +02:00
var key string
// If there are more than one SMTP servers, send to a random
// one from the list.
if e.numServers > 1 {
key = e.serverNames[rand.Intn(e.numServers)]
} else {
key = e.serverNames[0]
}
// Are there attachments?
var files []*email.Attachment
if atts != nil {
files = make([]*email.Attachment, 0, len(atts))
for _, f := range atts {
a := &email.Attachment{
Filename: f.Name,
Header: f.Header,
Content: make([]byte, len(f.Content)),
}
copy(a.Content, f.Content)
files = append(files, a)
}
}
2018-10-25 15:51:47 +02:00
srv := e.servers[key]
err := srv.mailer.Send(&email.Email{
From: fromAddr,
To: toAddr,
Subject: subject,
HTML: m,
Attachments: files,
2018-10-25 15:51:47 +02:00
}, srv.SendTimeout)
return err
}
// Flush flushes the message queue to the server.
func (e *emailer) Flush() error {
return nil
}
2020-04-01 16:26:40 +02:00
// https://gist.github.com/andelf/5118732
// Adds support for SMTP LOGIN auth.
func (a *loginAuth) Start(server *smtp.ServerInfo) (string, []byte, error) {
return "LOGIN", []byte{}, nil
}
func (a *loginAuth) Next(fromServer []byte, more bool) ([]byte, error) {
if more {
switch string(fromServer) {
case "Username:":
return []byte(a.username), nil
case "Password:":
return []byte(a.password), nil
default:
return nil, errors.New("unkown SMTP fromServer")
}
}
return nil, nil
}