mirror of
https://github.com/mjl-/mox.git
synced 2025-06-27 21:48:16 +03:00

to facilitate migrations from/to other mail setups. a domain can be added in "disabled" mode (or can be disabled/enabled later on). you can configure a disabled domain, but incoming/outgoing messages involving the domain are rejected with temporary error codes (as this may occur during a migration, remote servers will try again, hopefully to the correct machine or after this machine has been configured correctly). also, no acme tls certs will be requested for disabled domains (the autoconfig/mta-sts dns records may still point to the current/previous machine). accounts with addresses at disabled domains can still login, unless logins are disabled for their accounts. an account now has an option to disable logins. you can specify an error message to show. this will be shown in smtp, imap and the web interfaces. it could contain a message about migrations, and possibly a URL to a page with information about how to migrate. incoming/outgoing email involving accounts with login disabled are still accepted/delivered as normal (unless the domain involved in the messages is disabled too). account operations by the admin, such as importing/exporting messages still works. in the admin web interface, listings of domains/accounts show if they are disabled. domains & accounts can be enabled/disabled through the config file, cli commands and admin web interface. for issue #175 by RobSlgm
408 lines
12 KiB
Go
408 lines
12 KiB
Go
package queue
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"net"
|
|
"os"
|
|
"slices"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
"github.com/mjl-/bstore"
|
|
|
|
"github.com/mjl-/mox/dns"
|
|
"github.com/mjl-/mox/dsn"
|
|
"github.com/mjl-/mox/message"
|
|
"github.com/mjl-/mox/mlog"
|
|
"github.com/mjl-/mox/mox-"
|
|
"github.com/mjl-/mox/smtp"
|
|
"github.com/mjl-/mox/smtpclient"
|
|
"github.com/mjl-/mox/store"
|
|
"github.com/mjl-/mox/webhook"
|
|
)
|
|
|
|
var (
|
|
metricDMARCReportFailure = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "mox_queue_dmarcreport_failure_total",
|
|
Help: "Permanent failures to deliver a DMARC report.",
|
|
},
|
|
)
|
|
)
|
|
|
|
// failMsgsDB calls failMsgsTx with a new transaction, logging transaction errors.
|
|
func failMsgsDB(qlog mlog.Log, msgs []*Msg, dialedIPs map[string][]net.IP, backoff time.Duration, remoteMTA dsn.NameIP, err error) {
|
|
xerr := DB.Write(context.Background(), func(tx *bstore.Tx) error {
|
|
failMsgsTx(qlog, tx, msgs, dialedIPs, backoff, remoteMTA, err)
|
|
return nil
|
|
})
|
|
if xerr != nil {
|
|
for _, m := range msgs {
|
|
qlog.Errorx("error marking delivery as failed", xerr,
|
|
slog.String("delivererr", err.Error()),
|
|
slog.Int64("msgid", m.ID),
|
|
slog.Any("recipient", m.Recipient()),
|
|
slog.Duration("backoff", backoff),
|
|
slog.Time("nextattempt", m.NextAttempt))
|
|
}
|
|
}
|
|
kick()
|
|
}
|
|
|
|
// todo: perhaps put some of the params in a delivery struct so we don't pass all the params all the time?
|
|
|
|
// failMsgsTx processes a failure to deliver msgs. If the error is permanent, a DSN
|
|
// is delivered to the sender account.
|
|
// Caller must call kick() after commiting the transaction for any (re)scheduling
|
|
// of messages and webhooks.
|
|
func failMsgsTx(qlog mlog.Log, tx *bstore.Tx, msgs []*Msg, dialedIPs map[string][]net.IP, backoff time.Duration, remoteMTA dsn.NameIP, err error) {
|
|
// todo future: when we implement relaying, we should be able to send DSNs to non-local users. and possibly specify a null mailfrom. ../rfc/5321:1503
|
|
// todo future: when we implement relaying, and a dsn cannot be delivered, and requiretls was active, we cannot drop the message. instead deliver to local postmaster? though ../rfc/8689:383 may intend to say the dsn should be delivered without requiretls?
|
|
// todo future: when we implement smtp dsn extension, parameter RET=FULL must be disregarded for messages with REQUIRETLS. ../rfc/8689:379
|
|
|
|
m0 := msgs[0]
|
|
|
|
var smtpLines []string
|
|
var cerr smtpclient.Error
|
|
var permanent bool
|
|
var errmsg = err.Error()
|
|
var code int
|
|
var secodeOpt string
|
|
var event webhook.OutgoingEvent
|
|
if errors.As(err, &cerr) {
|
|
if cerr.Line != "" {
|
|
smtpLines = append([]string{cerr.Line}, cerr.MoreLines...)
|
|
}
|
|
permanent = cerr.Permanent
|
|
code = cerr.Code
|
|
secodeOpt = cerr.Secode
|
|
}
|
|
qlog = qlog.With(
|
|
slog.Bool("permanent", permanent),
|
|
slog.Int("code", code),
|
|
slog.String("secode", secodeOpt),
|
|
)
|
|
|
|
ids := make([]int64, len(msgs))
|
|
for i, m := range msgs {
|
|
ids[i] = m.ID
|
|
}
|
|
|
|
if permanent || m0.MaxAttempts == 0 && m0.Attempts >= 8 || m0.MaxAttempts > 0 && m0.Attempts >= m0.MaxAttempts {
|
|
event = webhook.EventFailed
|
|
if errors.Is(err, errSuppressed) {
|
|
event = webhook.EventSuppressed
|
|
}
|
|
|
|
rmsgs := make([]Msg, len(msgs))
|
|
var scl []suppressionCheck
|
|
for i, m := range msgs {
|
|
rm := *m
|
|
rm.DialedIPs = dialedIPs
|
|
rm.markResult(code, secodeOpt, errmsg, false)
|
|
|
|
qmlog := qlog.With(slog.Int64("msgid", rm.ID), slog.Any("recipient", m.Recipient()))
|
|
qmlog.Errorx("permanent failure delivering from queue", err)
|
|
deliverDSNFailure(qmlog, rm, remoteMTA, secodeOpt, errmsg, smtpLines)
|
|
|
|
rmsgs[i] = rm
|
|
|
|
// If this was an smtp error from remote, we'll pass the failure to the
|
|
// suppression list.
|
|
if code == 0 {
|
|
continue
|
|
}
|
|
sc := suppressionCheck{
|
|
MsgID: rm.ID,
|
|
Account: rm.SenderAccount,
|
|
Recipient: rm.Recipient(),
|
|
Code: code,
|
|
Secode: secodeOpt,
|
|
Source: "queue",
|
|
}
|
|
scl = append(scl, sc)
|
|
}
|
|
var suppressedMsgIDs []int64
|
|
if len(scl) > 0 {
|
|
var err error
|
|
suppressedMsgIDs, err = suppressionProcess(qlog, tx, scl...)
|
|
if err != nil {
|
|
qlog.Errorx("processing delivery failure in suppression list", err)
|
|
return
|
|
}
|
|
}
|
|
err := retireMsgs(qlog, tx, event, code, secodeOpt, suppressedMsgIDs, rmsgs...)
|
|
if err != nil {
|
|
qlog.Errorx("deleting queue messages from database after permanent failure", err)
|
|
} else if err := removeMsgsFS(qlog, rmsgs...); err != nil {
|
|
qlog.Errorx("remove queue messages from file system after permanent failure", err)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
if m0.Attempts == 5 {
|
|
// We've attempted deliveries at these intervals: 0, 7.5m, 15m, 30m, 1h, 2u.
|
|
// Let sender know delivery is delayed.
|
|
|
|
retryUntil := m0.LastAttempt.Add((4 + 8 + 16) * time.Hour)
|
|
for _, m := range msgs {
|
|
qmlog := qlog.With(slog.Int64("msgid", m.ID), slog.Any("recipient", m.Recipient()))
|
|
qmlog.Errorx("temporary failure delivering from queue, sending delayed dsn", err, slog.Duration("backoff", backoff))
|
|
deliverDSNDelay(qmlog, *m, remoteMTA, secodeOpt, errmsg, smtpLines, retryUntil)
|
|
}
|
|
} else {
|
|
for _, m := range msgs {
|
|
qlog.Errorx("temporary failure delivering from queue", err,
|
|
slog.Int64("msgid", m.ID),
|
|
slog.Any("recipient", m.Recipient()),
|
|
slog.Duration("backoff", backoff),
|
|
slog.Time("nextattempt", m0.NextAttempt))
|
|
}
|
|
}
|
|
|
|
process := func() error {
|
|
// Update DialedIPs in message, and record the result.
|
|
qup := bstore.QueryTx[Msg](tx)
|
|
qup.FilterIDs(ids)
|
|
umsgs, err := qup.List()
|
|
if err != nil {
|
|
return fmt.Errorf("retrieving messages for marking temporary delivery error: %v", err)
|
|
}
|
|
for _, um := range umsgs {
|
|
// All messages should have the same DialedIPs.
|
|
um.DialedIPs = dialedIPs
|
|
um.markResult(code, secodeOpt, errmsg, false)
|
|
if err := tx.Update(&um); err != nil {
|
|
return fmt.Errorf("updating message after temporary failure to deliver: %v", err)
|
|
}
|
|
}
|
|
|
|
// If configured, we'll queue webhooks for delivery.
|
|
accConf, ok := mox.Conf.Account(m0.SenderAccount)
|
|
if !(ok && accConf.OutgoingWebhook != nil && (len(accConf.OutgoingWebhook.Events) == 0 || slices.Contains(accConf.OutgoingWebhook.Events, string(webhook.EventDelayed)))) {
|
|
return nil
|
|
}
|
|
|
|
hooks := make([]Hook, len(msgs))
|
|
for i, m := range msgs {
|
|
var err error
|
|
hooks[i], err = hookCompose(*m, accConf.OutgoingWebhook.URL, accConf.OutgoingWebhook.Authorization, webhook.EventDelayed, false, code, secodeOpt)
|
|
if err != nil {
|
|
return fmt.Errorf("composing webhook for failed delivery attempt for msg id %d: %v", m.ID, err)
|
|
}
|
|
}
|
|
now := time.Now()
|
|
for i := range hooks {
|
|
if err := hookInsert(tx, &hooks[i], now, accConf.KeepRetiredWebhookPeriod); err != nil {
|
|
return fmt.Errorf("inserting webhook into queue: %v", err)
|
|
}
|
|
qlog.Debug("queueing webhook for temporary delivery errors", hooks[i].attrs()...)
|
|
}
|
|
return nil
|
|
}
|
|
if err := process(); err != nil {
|
|
qlog.Errorx("processing temporary delivery error", err, slog.String("deliveryerror", errmsg))
|
|
}
|
|
}
|
|
|
|
func deliverDSNFailure(log mlog.Log, m Msg, remoteMTA dsn.NameIP, secodeOpt, errmsg string, smtpLines []string) {
|
|
const subject = "mail delivery failed"
|
|
message := fmt.Sprintf(`
|
|
Delivery has failed permanently for your email to:
|
|
|
|
%s
|
|
|
|
No further deliveries will be attempted.
|
|
|
|
Error during the last delivery attempt:
|
|
|
|
%s
|
|
`, m.Recipient().XString(m.SMTPUTF8), errmsg)
|
|
if len(smtpLines) > 0 {
|
|
message += "\nFull SMTP response:\n\n\t" + strings.Join(smtpLines, "\n\t") + "\n"
|
|
}
|
|
|
|
deliverDSN(log, m, remoteMTA, secodeOpt, errmsg, smtpLines, true, nil, subject, message)
|
|
}
|
|
|
|
func deliverDSNDelay(log mlog.Log, m Msg, remoteMTA dsn.NameIP, secodeOpt, errmsg string, smtpLines []string, retryUntil time.Time) {
|
|
// Should not happen, but doesn't hurt to prevent sending delayed delivery
|
|
// notifications for DMARC reports. We don't want to waste postmaster attention.
|
|
if m.IsDMARCReport {
|
|
return
|
|
}
|
|
|
|
const subject = "mail delivery delayed"
|
|
message := fmt.Sprintf(`
|
|
Delivery has been delayed of your email to:
|
|
|
|
%s
|
|
|
|
Next attempts to deliver: in 4 hours, 8 hours and 16 hours.
|
|
If these attempts all fail, you will receive a notice.
|
|
|
|
Error during the last delivery attempt:
|
|
|
|
%s
|
|
`, m.Recipient().XString(false), errmsg)
|
|
if len(smtpLines) > 0 {
|
|
message += "\nFull SMTP response:\n\n\t" + strings.Join(smtpLines, "\n\t") + "\n"
|
|
}
|
|
|
|
deliverDSN(log, m, remoteMTA, secodeOpt, errmsg, smtpLines, false, &retryUntil, subject, message)
|
|
}
|
|
|
|
// We only queue DSNs for delivery failures for emails submitted by authenticated
|
|
// users. So we are delivering to local users. ../rfc/5321:1466
|
|
// ../rfc/5321:1494
|
|
// ../rfc/7208:490
|
|
func deliverDSN(log mlog.Log, m Msg, remoteMTA dsn.NameIP, secodeOpt, errmsg string, smtpLines []string, permanent bool, retryUntil *time.Time, subject, textBody string) {
|
|
kind := "delayed delivery"
|
|
if permanent {
|
|
kind = "failure"
|
|
}
|
|
|
|
qlog := func(text string, err error) {
|
|
log.Errorx("queue dsn: "+text+": sender will not be informed about dsn", err, slog.String("sender", m.Sender().XString(m.SMTPUTF8)), slog.String("kind", kind))
|
|
}
|
|
|
|
msgf, err := os.Open(m.MessagePath())
|
|
if err != nil {
|
|
qlog("opening queued message", err)
|
|
return
|
|
}
|
|
msgr := store.FileMsgReader(m.MsgPrefix, msgf)
|
|
defer func() {
|
|
err := msgr.Close()
|
|
log.Check(err, "closing message reader after queuing dsn")
|
|
}()
|
|
headers, err := message.ReadHeaders(bufio.NewReader(msgr))
|
|
if err != nil {
|
|
qlog("reading headers of queued message", err)
|
|
return
|
|
}
|
|
|
|
var action dsn.Action
|
|
var status string
|
|
if permanent {
|
|
status = "5."
|
|
action = dsn.Failed
|
|
} else {
|
|
action = dsn.Delayed
|
|
status = "4."
|
|
}
|
|
if secodeOpt != "" {
|
|
status += secodeOpt
|
|
} else {
|
|
status += "0.0"
|
|
}
|
|
|
|
// ../rfc/3461:1329
|
|
var smtpDiag string
|
|
if len(smtpLines) > 0 {
|
|
smtpDiag = strings.Join(smtpLines, " ")
|
|
}
|
|
|
|
dsnMsg := &dsn.Message{
|
|
SMTPUTF8: m.SMTPUTF8,
|
|
From: smtp.Path{Localpart: "postmaster", IPDomain: dns.IPDomain{Domain: mox.Conf.Static.HostnameDomain}},
|
|
To: m.Sender(),
|
|
Subject: subject,
|
|
MessageID: mox.MessageIDGen(false),
|
|
References: m.MessageID,
|
|
TextBody: textBody,
|
|
|
|
ReportingMTA: mox.Conf.Static.HostnameDomain.ASCII,
|
|
ArrivalDate: m.Queued,
|
|
FutureReleaseRequest: m.FutureReleaseRequest,
|
|
|
|
Recipients: []dsn.Recipient{
|
|
{
|
|
FinalRecipient: m.Recipient(),
|
|
Action: action,
|
|
Status: status,
|
|
StatusComment: errmsg,
|
|
RemoteMTA: remoteMTA,
|
|
DiagnosticCodeSMTP: smtpDiag,
|
|
LastAttemptDate: *m.LastAttempt,
|
|
WillRetryUntil: retryUntil,
|
|
},
|
|
},
|
|
|
|
Original: headers,
|
|
}
|
|
msgData, err := dsnMsg.Compose(log, m.SMTPUTF8)
|
|
if err != nil {
|
|
qlog("composing dsn", err)
|
|
return
|
|
}
|
|
|
|
prefix := []byte("Return-Path: <" + dsnMsg.From.XString(m.SMTPUTF8) + ">\r\n" + "Delivered-To: " + m.Sender().XString(m.SMTPUTF8) + "\r\n")
|
|
msgData = append(prefix, msgData...)
|
|
|
|
mailbox := "Inbox"
|
|
senderAccount := m.SenderAccount
|
|
if m.IsDMARCReport {
|
|
// senderAccount should already by postmaster, but doesn't hurt to ensure it.
|
|
senderAccount = mox.Conf.Static.Postmaster.Account
|
|
}
|
|
acc, err := store.OpenAccount(log, senderAccount, false)
|
|
if err != nil {
|
|
acc, err = store.OpenAccount(log, mox.Conf.Static.Postmaster.Account, false)
|
|
if err != nil {
|
|
qlog("looking up postmaster account after sender account was not found", err)
|
|
return
|
|
}
|
|
mailbox = mox.Conf.Static.Postmaster.Mailbox
|
|
}
|
|
defer func() {
|
|
err := acc.Close()
|
|
log.Check(err, "queue dsn: closing account", slog.String("sender", m.Sender().XString(m.SMTPUTF8)), slog.String("kind", kind))
|
|
}()
|
|
|
|
msgFile, err := store.CreateMessageTemp(log, "queue-dsn")
|
|
if err != nil {
|
|
qlog("creating temporary message file", err)
|
|
return
|
|
}
|
|
defer store.CloseRemoveTempFile(log, msgFile, "dsn message")
|
|
|
|
msgWriter := message.NewWriter(msgFile)
|
|
if _, err := msgWriter.Write(msgData); err != nil {
|
|
qlog("writing dsn message", err)
|
|
return
|
|
}
|
|
|
|
msg := store.Message{
|
|
Received: time.Now(),
|
|
Size: msgWriter.Size,
|
|
MsgPrefix: []byte{},
|
|
DSN: true,
|
|
}
|
|
|
|
// If this is a DMARC report, deliver it as seen message to a submailbox of the
|
|
// postmaster mailbox. We mark it as seen so it doesn't waste postmaster attention,
|
|
// but we deliver them so they can be checked in case of problems.
|
|
if m.IsDMARCReport {
|
|
mailbox = fmt.Sprintf("%s/dmarc", mox.Conf.Static.Postmaster.Mailbox)
|
|
msg.Seen = true
|
|
metricDMARCReportFailure.Inc()
|
|
log.Info("delivering dsn for failure to deliver outgoing dmarc report")
|
|
}
|
|
|
|
acc.WithWLock(func() {
|
|
if err := acc.DeliverMailbox(log, mailbox, &msg, msgFile); err != nil {
|
|
qlog("delivering dsn to mailbox", err)
|
|
return
|
|
}
|
|
})
|
|
}
|