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

@@ -1,6 +1,11 @@
package queue
import "testing"
import (
"fmt"
"sort"
"strings"
"testing"
)
func TestDSN(t *testing.T) {
item := &Item{
@@ -10,9 +15,12 @@ func TestDSN(t *testing.T) {
To: []string{"toto@africa.org", "negra@sosa.org"},
Rcpt: []*Recipient{
{"poe@rcpt", Recipient_EMAIL, Recipient_FAILED,
"oh! horror!", ""},
{"newman@rcpt", Recipient_EMAIL, Recipient_FAILED,
"oh! the humanity!", ""}},
"oh! horror!", "toto@africa.org"},
{"newman@rcpt", Recipient_EMAIL, Recipient_PENDING,
"oh! the humanity!", "toto@africa.org"},
{"ant@rcpt", Recipient_EMAIL, Recipient_SENT,
"", "negra@sosa.org"},
},
Data: []byte("data ñaca"),
},
}
@@ -21,6 +29,100 @@ func TestDSN(t *testing.T) {
if err != nil {
t.Error(err)
}
t.Log(string(msg))
if !flexibleEq(expectedDSN, 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
}
}
}