1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-18 14:47:03 +00:00

queue: Send DSN for messages that time out in the queue

The queue currently only considers failed recipients when deciding
whether to send a DSN or not. This is a bug, as recipients that time out
are not taken into account.

This patch fixes that issue by including both failed and pending
recipients in the DSN.

It also adds more comprehensive tests for this case, both in the queue
and in the dsn generation code.
This commit is contained in:
Alberto Bertogli
2016-10-17 20:59:57 +01:00
parent 6f048027a7
commit d660f88f67
5 changed files with 186 additions and 27 deletions

View File

@@ -23,11 +23,18 @@ func deliveryStatusNotification(domainFrom string, item *Item) ([]byte, error) {
Date: time.Now().Format(time.RFC1123Z), Date: time.Now().Format(time.RFC1123Z),
To: item.To, To: item.To,
Recipients: item.Rcpt, Recipients: item.Rcpt,
FailedTo: map[string]string{},
} }
for _, rcpt := range item.Rcpt { for _, rcpt := range item.Rcpt {
if rcpt.Status == Recipient_FAILED { if rcpt.Status != Recipient_SENT {
info.FailedRcpts = append(info.FailedRcpts, rcpt) info.FailedTo[rcpt.OriginalAddress] = rcpt.OriginalAddress
switch rcpt.Status {
case Recipient_FAILED:
info.FailedRecipients = append(info.FailedRecipients, rcpt)
case Recipient_PENDING:
info.PendingRecipients = append(info.PendingRecipients, rcpt)
}
} }
} }
@@ -43,14 +50,16 @@ func deliveryStatusNotification(domainFrom string, item *Item) ([]byte, error) {
} }
type dsnInfo struct { type dsnInfo struct {
OurDomain string OurDomain string
Destination string Destination string
MessageID string MessageID string
Date string Date string
To []string To []string
Recipients []*Recipient FailedTo map[string]string
FailedRcpts []*Recipient Recipients []*Recipient
OriginalMessage string FailedRecipients []*Recipient
PendingRecipients []*Recipient
OriginalMessage string
} }
var dsnTemplate = template.Must(template.New("dsn").Parse( var dsnTemplate = template.Must(template.New("dsn").Parse(
@@ -59,17 +68,22 @@ To: <{{.Destination}}>
Subject: Mail delivery failed: returning message to sender Subject: Mail delivery failed: returning message to sender
Message-ID: <{{.MessageID}}> Message-ID: <{{.MessageID}}>
Date: {{.Date}} Date: {{.Date}}
X-Failed-Recipients: {{range .To}}{{.}}, {{end}} X-Failed-Recipients: {{range .FailedTo}}{{.}}, {{end}}
Auto-Submitted: auto-replied Auto-Submitted: auto-replied
Delivery to the following recipient(s) failed permanently: Delivery to the following recipient(s) failed permanently:
{{range .To -}} - {{.}} {{range .FailedTo -}} - {{.}}
{{end}} {{- end}}
----- Technical details ----- ----- Technical details -----
{{range .Recipients}} {{range .FailedRecipients}}
- "{{.Address}}" ({{.Type}}) failed with error: - "{{.Address}}" ({{.Type}}) failed permanently with error:
{{.LastFailureMessage}}
{{end}}
{{- range .PendingRecipients}}
- "{{.Address}}" ({{.Type}}) failed repeatedly and timed out, last error:
{{.LastFailureMessage}} {{.LastFailureMessage}}
{{end}} {{end}}

View File

@@ -1,6 +1,11 @@
package queue package queue
import "testing" import (
"fmt"
"sort"
"strings"
"testing"
)
func TestDSN(t *testing.T) { func TestDSN(t *testing.T) {
item := &Item{ item := &Item{
@@ -10,9 +15,12 @@ func TestDSN(t *testing.T) {
To: []string{"toto@africa.org", "negra@sosa.org"}, To: []string{"toto@africa.org", "negra@sosa.org"},
Rcpt: []*Recipient{ Rcpt: []*Recipient{
{"poe@rcpt", Recipient_EMAIL, Recipient_FAILED, {"poe@rcpt", Recipient_EMAIL, Recipient_FAILED,
"oh! horror!", ""}, "oh! horror!", "toto@africa.org"},
{"newman@rcpt", Recipient_EMAIL, Recipient_FAILED, {"newman@rcpt", Recipient_EMAIL, Recipient_PENDING,
"oh! the humanity!", ""}}, "oh! the humanity!", "toto@africa.org"},
{"ant@rcpt", Recipient_EMAIL, Recipient_SENT,
"", "negra@sosa.org"},
},
Data: []byte("data ñaca"), Data: []byte("data ñaca"),
}, },
} }
@@ -21,6 +29,100 @@ func TestDSN(t *testing.T) {
if err != nil { if err != nil {
t.Error(err) t.Error(err)
} }
if !flexibleEq(expectedDSN, string(msg)) {
t.Log(string(msg)) t.Errorf("generated DSN different than expected")
printDiff(func(s string) { t.Error(s) }, expectedDSN, string(msg))
} else {
t.Log(string(msg))
}
}
const expectedDSN = `From: Mail Delivery System <postmaster-dsn@dsnDomain>
To: <from@from.org>
Subject: Mail delivery failed: returning message to sender
Message-ID: <chasquid-dsn-???????????@dsnDomain>
Date: *
X-Failed-Recipients: toto@africa.org,
Auto-Submitted: auto-replied
Delivery to the following recipient(s) failed permanently:
- toto@africa.org
----- Technical details -----
- "poe@rcpt" (EMAIL) failed permanently with error:
oh! horror!
- "newman@rcpt" (EMAIL) failed repeatedly and timed out, last error:
oh! the humanity!
----- Original message -----
data ñaca
`
// flexibleEq compares two strings, supporting wildcards.
// Not particularly nice or robust, only useful for testing.
func flexibleEq(expected, got string) bool {
posG := 0
for i := 0; i < len(expected); i++ {
if posG >= len(got) {
return false
}
c := expected[i]
if c == '?' {
posG++
continue
} else if c == '*' {
for got[posG] != '\n' {
posG++
}
continue
} else if byte(c) != got[posG] {
return false
}
posG++
}
return true
}
// printDiff prints the difference between the strings using the given
// function. This is a _horrible_ implementation, only useful for testing.
func printDiff(print func(s string), expected, got string) {
lines := []string{}
// expected lines and map.
eM := map[string]int{}
for _, l := range strings.Split(expected, "\n") {
eM[l]++
lines = append(lines, l)
}
// got lines and map.
gM := map[string]int{}
for _, l := range strings.Split(got, "\n") {
gM[l]++
lines = append(lines, l)
}
// sort the lines, to make it easier to see the differences (this works
// ok when there's few, horrible when there's lots).
sort.Strings(lines)
// print diff of expected vs. got
seen := map[string]bool{}
print("E G | Line")
for _, l := range lines {
if !seen[l] && eM[l] != gM[l] {
print(fmt.Sprintf("%2d %2d | %q", eM[l], gM[l], l))
seen[l] = true
}
}
} }

View File

@@ -334,7 +334,7 @@ func (item *Item) SendLoop(q *Queue) {
} }
// Completed to all recipients (some may not have succeeded). // Completed to all recipients (some may not have succeeded).
if item.countRcpt(Recipient_FAILED) > 0 && item.From != "<>" { if item.countRcpt(Recipient_FAILED, Recipient_PENDING) > 0 && item.From != "<>" {
sendDSN(tr, q, item) sendDSN(tr, q, item)
} }
@@ -420,11 +420,14 @@ func (item *Item) deliver(q *Queue, rcpt *Recipient) (err error, permanent bool)
} }
// countRcpt counts how many recipients are in the given status. // countRcpt counts how many recipients are in the given status.
func (item *Item) countRcpt(status Recipient_Status) int { func (item *Item) countRcpt(statuses ...Recipient_Status) int {
c := 0 c := 0
for _, rcpt := range item.Rcpt { for _, rcpt := range item.Rcpt {
if rcpt.Status == status { for _, status := range statuses {
c++ if rcpt.Status == status {
c++
break
}
} }
} }
return c return c

View File

@@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"reflect" "reflect"
"strings"
"sync" "sync"
"testing" "testing"
"time" "time"
@@ -113,6 +114,45 @@ func TestBasic(t *testing.T) {
} }
} }
func TestDSNOnTimeout(t *testing.T) {
localC := newTestCourier()
remoteC := newTestCourier()
q := New("/tmp/queue_test", set.NewString("loco"), aliases.NewResolver(),
localC, remoteC, "dsndomain")
// Insert an expired item in the queue.
item := &Item{
Message: Message{
ID: <-newID,
From: fmt.Sprintf("from@loco"),
Rcpt: []*Recipient{
{"to@to", Recipient_EMAIL, Recipient_PENDING, "err", "to@to"}},
Data: []byte("data"),
},
CreatedAt: time.Now().Add(-24 * time.Hour),
}
q.q[item.ID] = item
err := item.WriteTo(q.path)
if err != nil {
t.Errorf("failed to write item: %v", err)
}
// Launch the sending loop, expect 1 local delivery (the DSN).
localC.wg.Add(1)
go item.SendLoop(q)
localC.wg.Wait()
req := localC.reqFor["from@loco"]
if req == nil {
t.Fatal("missing DSN")
}
if req.from != "<>" || req.to != "from@loco" ||
!strings.Contains(string(req.data), "X-Failed-Recipients: to@to,") {
t.Errorf("wrong DSN: %q", string(req.data))
}
}
func TestFullQueue(t *testing.T) { func TestFullQueue(t *testing.T) {
q := New("/tmp/queue_test", set.NewString(), aliases.NewResolver(), q := New("/tmp/queue_test", set.NewString(), aliases.NewResolver(),
dumbCourier, dumbCourier, "dsndomain") dumbCourier, dumbCourier, "dsndomain")

View File

@@ -10,11 +10,11 @@ Auto-Submitted: auto-replied
Delivery to the following recipient(s) failed permanently: Delivery to the following recipient(s) failed permanently:
- fail@testserver - fail@testserver
----- Technical details ----- ----- Technical details -----
- "false" (PIPE) failed with error: - "false" (PIPE) failed permanently with error:
exit status 1 exit status 1