This commit is contained in:
angelnu 2022-01-31 21:59:27 +00:00
parent cd45490c16
commit db569891a5
6 changed files with 17 additions and 17 deletions

View file

@ -301,7 +301,7 @@ func (dd *msgpipelineDelivery) AddRcpt(ctx context.Context, to string) error {
if err != nil {
return err
}
newTo = append(newTo, tempTo...)
newTo = append(newTo, tempTo...)
}
dd.log.Debugln("per-source rcpt modifiers:", to, "=>", newTo)
resultTo = newTo
@ -337,7 +337,7 @@ func (dd *msgpipelineDelivery) AddRcpt(ctx context.Context, to string) error {
return wrapErr(err)
}
dd.log.Debugln("per-rcpt modifiers:", to, "=>", newTo)
for _, to = range newTo {
wrapErr = func(err error) error {