ntfy/server/smtp_server.go

196 lines
4.3 KiB
Go
Raw Normal View History

2021-12-28 04:39:28 +13:00
package server
import (
"bytes"
"errors"
"github.com/emersion/go-smtp"
"io"
2021-12-28 13:26:20 +13:00
"mime"
"mime/multipart"
2021-12-28 04:39:28 +13:00
"net/mail"
"strings"
"sync"
)
2021-12-28 10:06:40 +13:00
var (
2021-12-28 13:26:20 +13:00
errInvalidDomain = errors.New("invalid domain")
errInvalidAddress = errors.New("invalid address")
errInvalidTopic = errors.New("invalid topic")
errTooManyRecipients = errors.New("too many recipients")
errUnsupportedContentType = errors.New("unsupported content type")
2021-12-28 10:06:40 +13:00
)
2021-12-28 04:39:28 +13:00
// smtpBackend implements SMTP server methods.
type smtpBackend struct {
2021-12-28 10:06:40 +13:00
config *Config
sub subscriber
success int64
failure int64
mu sync.Mutex
2021-12-28 04:39:28 +13:00
}
func newMailBackend(conf *Config, sub subscriber) *smtpBackend {
return &smtpBackend{
config: conf,
sub: sub,
}
}
func (b *smtpBackend) Login(state *smtp.ConnectionState, username, password string) (smtp.Session, error) {
2021-12-28 10:06:40 +13:00
return &smtpSession{backend: b}, nil
2021-12-28 04:39:28 +13:00
}
func (b *smtpBackend) AnonymousLogin(state *smtp.ConnectionState) (smtp.Session, error) {
2021-12-28 10:06:40 +13:00
return &smtpSession{backend: b}, nil
}
func (b *smtpBackend) Counts() (success int64, failure int64) {
b.mu.Lock()
defer b.mu.Unlock()
return b.success, b.failure
2021-12-28 04:39:28 +13:00
}
// smtpSession is returned after EHLO.
type smtpSession struct {
2021-12-28 10:06:40 +13:00
backend *smtpBackend
topic string
mu sync.Mutex
2021-12-28 04:39:28 +13:00
}
func (s *smtpSession) AuthPlain(username, password string) error {
return nil
}
func (s *smtpSession) Mail(from string, opts smtp.MailOptions) error {
return nil
}
func (s *smtpSession) Rcpt(to string) error {
2021-12-28 10:06:40 +13:00
return s.withFailCount(func() error {
conf := s.backend.config
addressList, err := mail.ParseAddressList(to)
if err != nil {
return err
} else if len(addressList) != 1 {
return errTooManyRecipients
}
to = addressList[0].Address
if !strings.HasSuffix(to, "@"+conf.SMTPServerDomain) {
return errInvalidDomain
}
to = strings.TrimSuffix(to, "@"+conf.SMTPServerDomain)
if conf.SMTPServerAddrPrefix != "" {
if !strings.HasPrefix(to, conf.SMTPServerAddrPrefix) {
return errInvalidAddress
}
to = strings.TrimPrefix(to, conf.SMTPServerAddrPrefix)
}
if !topicRegex.MatchString(to) {
return errInvalidTopic
}
s.mu.Lock()
s.topic = to
s.mu.Unlock()
return nil
})
2021-12-28 04:39:28 +13:00
}
func (s *smtpSession) Data(r io.Reader) error {
2021-12-28 10:06:40 +13:00
return s.withFailCount(func() error {
2021-12-28 13:26:20 +13:00
conf := s.backend.config
2021-12-28 10:06:40 +13:00
b, err := io.ReadAll(r) // Protected by MaxMessageBytes
if err != nil {
return err
}
msg, err := mail.ReadMessage(bytes.NewReader(b))
if err != nil {
return err
}
2021-12-28 13:26:20 +13:00
body, err := readMailBody(msg)
2021-12-28 10:06:40 +13:00
if err != nil {
return err
}
body = strings.TrimSpace(body)
2021-12-28 13:26:20 +13:00
if len(body) > conf.MessageLimit {
body = body[:conf.MessageLimit]
}
m := newDefaultMessage(s.topic, body)
subject := strings.TrimSpace(msg.Header.Get("Subject"))
2021-12-28 10:06:40 +13:00
if subject != "" {
2021-12-28 13:26:20 +13:00
dec := mime.WordDecoder{}
subject, err := dec.DecodeHeader(subject)
if err != nil {
return err
}
2021-12-28 10:06:40 +13:00
m.Title = subject
}
if m.Title != "" && m.Message == "" {
m.Message = m.Title // Flip them, this makes more sense
m.Title = ""
}
2021-12-28 10:06:40 +13:00
if err := s.backend.sub(m); err != nil {
return err
}
s.backend.mu.Lock()
s.backend.success++
s.backend.mu.Unlock()
return nil
})
2021-12-28 04:39:28 +13:00
}
func (s *smtpSession) Reset() {
s.mu.Lock()
2021-12-28 10:06:40 +13:00
s.topic = ""
2021-12-28 04:39:28 +13:00
s.mu.Unlock()
}
func (s *smtpSession) Logout() error {
return nil
}
2021-12-28 10:06:40 +13:00
func (s *smtpSession) withFailCount(fn func() error) error {
err := fn()
s.backend.mu.Lock()
defer s.backend.mu.Unlock()
if err != nil {
s.backend.failure++
}
return err
}
2021-12-28 13:26:20 +13:00
func readMailBody(msg *mail.Message) (string, error) {
contentType, params, err := mime.ParseMediaType(msg.Header.Get("Content-Type"))
if err != nil {
return "", err
}
if contentType == "text/plain" {
body, err := io.ReadAll(msg.Body)
if err != nil {
return "", err
}
return string(body), nil
}
if strings.HasPrefix(contentType, "multipart/") {
mr := multipart.NewReader(msg.Body, params["boundary"])
for {
part, err := mr.NextPart()
if err != nil { // may be io.EOF
return "", err
}
partContentType, _, err := mime.ParseMediaType(part.Header.Get("Content-Type"))
if err != nil {
return "", err
}
if partContentType != "text/plain" {
continue
}
body, err := io.ReadAll(part)
if err != nil {
return "", err
}
return string(body), nil
}
}
return "", errUnsupportedContentType
}