when parsing a dsn, actually set the Action field

noticed when writing dsn-processing code
This commit is contained in:
Mechiel Lukkien 2024-02-21 21:19:52 +01:00
parent 79da4faaa1
commit f6497b1aaf
No known key found for this signature in database

View file

@ -217,6 +217,7 @@ func parseRecipientHeader(mr *textproto.Reader, utf8 bool) (Recipient, error) {
for _, x := range actions {
if a == x {
ok = true
r.Action = a
break
}
}