2018-10-25 15:51:47 +02:00
|
|
|
package messenger
|
|
|
|
|
|
|
|
import (
|
2020-05-17 17:37:48 +02:00
|
|
|
"crypto/tls"
|
2018-10-25 15:51:47 +02:00
|
|
|
"fmt"
|
|
|
|
"math/rand"
|
|
|
|
"net/smtp"
|
2020-05-31 17:46:56 +02:00
|
|
|
"net/textproto"
|
2018-10-25 15:51:47 +02:00
|
|
|
|
2020-04-10 00:27:39 +02:00
|
|
|
"github.com/jaytaylor/html2text"
|
2020-05-16 19:11:30 +02:00
|
|
|
"github.com/knadh/smtppool"
|
2018-10-25 15:51:47 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const emName = "email"
|
|
|
|
|
|
|
|
// Server represents an SMTP server's credentials.
|
|
|
|
type Server struct {
|
2020-05-17 17:37:48 +02:00
|
|
|
Name string
|
2020-05-31 17:46:56 +02:00
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
AuthProtocol string `json:"auth_protocol"`
|
|
|
|
EmailFormat string `json:"email_format"`
|
|
|
|
TLSEnabled bool `json:"tls_enabled"`
|
|
|
|
TLSSkipVerify bool `json:"tls_skip_verify"`
|
|
|
|
EmailHeaders map[string]string `json:"email_headers"`
|
2020-05-16 19:11:30 +02:00
|
|
|
|
|
|
|
// Rest of the options are embedded directly from the smtppool lib.
|
|
|
|
// The JSON tag is for config unmarshal to work.
|
|
|
|
smtppool.Opt `json:",squash"`
|
|
|
|
|
|
|
|
pool *smtppool.Pool
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 19:11:30 +02:00
|
|
|
// Emailer is the SMTP e-mail messenger.
|
|
|
|
type Emailer struct {
|
2018-10-25 15:51:47 +02:00
|
|
|
servers map[string]*Server
|
|
|
|
serverNames []string
|
|
|
|
numServers int
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewEmailer creates and returns an e-mail Messenger backend.
|
|
|
|
// It takes multiple SMTP configurations.
|
2020-05-17 17:37:48 +02:00
|
|
|
func NewEmailer(servers ...Server) (*Emailer, error) {
|
2020-05-16 19:11:30 +02:00
|
|
|
e := &Emailer{
|
2018-10-25 15:51:47 +02:00
|
|
|
servers: make(map[string]*Server),
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:37:48 +02:00
|
|
|
for _, srv := range servers {
|
|
|
|
s := srv
|
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":
|
2020-05-16 20:08:19 +02:00
|
|
|
auth = &smtppool.LoginAuth{Username: s.Username, Password: s.Password}
|
2020-04-01 16:26:40 +02:00
|
|
|
case "":
|
|
|
|
default:
|
2020-05-11 17:30:06 +02:00
|
|
|
return nil, fmt.Errorf("unknown SMTP auth type '%s'", s.AuthProtocol)
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
2020-05-16 19:11:30 +02:00
|
|
|
s.Opt.Auth = auth
|
2018-10-25 15:51:47 +02:00
|
|
|
|
2020-05-17 17:37:48 +02:00
|
|
|
// TLS config.
|
|
|
|
if s.TLSEnabled {
|
|
|
|
s.TLSConfig = &tls.Config{}
|
|
|
|
if s.TLSSkipVerify {
|
|
|
|
s.TLSConfig.InsecureSkipVerify = s.TLSSkipVerify
|
|
|
|
} else {
|
|
|
|
s.TLSConfig.ServerName = s.Host
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-16 19:11:30 +02:00
|
|
|
pool, err := smtppool.New(s.Opt)
|
2018-10-25 15:51:47 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-16 19:11:30 +02:00
|
|
|
s.pool = pool
|
2018-10-25 15:51:47 +02:00
|
|
|
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.
|
2020-05-16 19:11:30 +02:00
|
|
|
func (e *Emailer) Name() string {
|
2018-10-25 15:51:47 +02:00
|
|
|
return emName
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push pushes a message to the server.
|
2020-05-16 19:11:30 +02:00
|
|
|
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]
|
|
|
|
}
|
|
|
|
|
2019-07-18 09:10:48 +02:00
|
|
|
// Are there attachments?
|
2020-05-16 19:11:30 +02:00
|
|
|
var files []smtppool.Attachment
|
2019-07-18 09:10:48 +02:00
|
|
|
if atts != nil {
|
2020-05-16 19:11:30 +02:00
|
|
|
files = make([]smtppool.Attachment, 0, len(atts))
|
2019-07-18 09:10:48 +02:00
|
|
|
for _, f := range atts {
|
2020-05-16 19:11:30 +02:00
|
|
|
a := smtppool.Attachment{
|
2019-07-18 09:10:48 +02:00
|
|
|
Filename: f.Name,
|
|
|
|
Header: f.Header,
|
|
|
|
Content: make([]byte, len(f.Content)),
|
|
|
|
}
|
|
|
|
copy(a.Content, f.Content)
|
|
|
|
files = append(files, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 00:27:39 +02:00
|
|
|
mtext, err := html2text.FromString(string(m), html2text.Options{PrettyTables: true})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-25 15:51:47 +02:00
|
|
|
srv := e.servers[key]
|
2020-05-16 19:11:30 +02:00
|
|
|
em := smtppool.Email{
|
2019-07-18 09:10:48 +02:00
|
|
|
From: fromAddr,
|
|
|
|
To: toAddr,
|
|
|
|
Subject: subject,
|
|
|
|
Attachments: files,
|
2020-04-10 00:27:39 +02:00
|
|
|
}
|
|
|
|
|
2020-05-31 17:46:56 +02:00
|
|
|
// If there are custom e-mail headers, attach them.
|
|
|
|
if len(srv.EmailHeaders) > 0 {
|
|
|
|
em.Headers = textproto.MIMEHeader{}
|
|
|
|
for k, v := range srv.EmailHeaders {
|
|
|
|
em.Headers.Set(k, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 00:27:39 +02:00
|
|
|
switch srv.EmailFormat {
|
|
|
|
case "html":
|
|
|
|
em.HTML = m
|
|
|
|
case "plain":
|
|
|
|
em.Text = []byte(mtext)
|
|
|
|
default:
|
|
|
|
em.HTML = m
|
|
|
|
em.Text = []byte(mtext)
|
|
|
|
}
|
2018-10-25 15:51:47 +02:00
|
|
|
|
2020-05-16 19:11:30 +02:00
|
|
|
return srv.pool.Send(em)
|
2018-10-25 15:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Flush flushes the message queue to the server.
|
2020-05-16 19:11:30 +02:00
|
|
|
func (e *Emailer) Flush() error {
|
2018-10-25 15:51:47 +02:00
|
|
|
return nil
|
|
|
|
}
|