mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
only pass true original_rcpt_to
This commit is contained in:
parent
d78cf5a746
commit
e33c8d6f91
3 changed files with 10 additions and 13 deletions
|
@ -96,9 +96,8 @@ command executable_name args... { }
|
|||
|
||||
Same as check.command, following placeholders are supported for command
|
||||
arguments: {source_ip}, {source_host}, {source_rdns}, {msg_id}, {auth_user},
|
||||
{sender}, {rcpt_to}, {original_rcpts}, {original_rcpt_to}, {address}. Note:
|
||||
placeholders in command name are not processed to avoid possible command
|
||||
injection attacks.
|
||||
{sender}, {rcpt_to}, {original_rcpt_to}, {address}. Note: placeholders in command
|
||||
name are not processed to avoid possible command injection attacks.
|
||||
|
||||
Additionally, for imap.filter.command, {account_name} placeholder is replaced
|
||||
with effective IMAP account name.
|
||||
|
|
|
@ -28,7 +28,6 @@ import (
|
|||
"os"
|
||||
"os/exec"
|
||||
"regexp"
|
||||
"strings"
|
||||
|
||||
"github.com/emersion/go-message/textproto"
|
||||
"github.com/foxcpp/maddy/framework/buffer"
|
||||
|
@ -139,14 +138,12 @@ func (c *Check) expandCommand(msgMeta *module.MsgMetadata, accountName string, r
|
|||
return msgMeta.OriginalFrom
|
||||
case "{rcpt_to}":
|
||||
return rcptTo
|
||||
case "{original_rcpts}":
|
||||
rcpts := []string{}
|
||||
for _, value := range msgMeta.OriginalRcpts {
|
||||
rcpts = append(rcpts, value)
|
||||
}
|
||||
return strings.Join(rcpts, "\n")
|
||||
case "{original_rcpt_to}":
|
||||
return msgMeta.OriginalRcpts[rcptTo]
|
||||
oldestOriginalRcpt := rcptTo
|
||||
for originalRcpt, ok := rcptTo, true; ok; originalRcpt, ok = msgMeta.OriginalRcpts[originalRcpt] {
|
||||
oldestOriginalRcpt = originalRcpt
|
||||
}
|
||||
return oldestOriginalRcpt
|
||||
case "{account_name}":
|
||||
return accountName
|
||||
}
|
||||
|
|
|
@ -338,8 +338,9 @@ func (dd *msgpipelineDelivery) AddRcpt(ctx context.Context, to string) error {
|
|||
})
|
||||
}
|
||||
|
||||
//Always setting so it can be retrieved by imap_filter
|
||||
dd.msgMeta.OriginalRcpts[to] = originalTo
|
||||
if originalTo != to {
|
||||
dd.msgMeta.OriginalRcpts[to] = originalTo
|
||||
}
|
||||
|
||||
for _, tgt := range rcptBlock.targets {
|
||||
// Do not wrap errors coming from nested pipeline target delivery since
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue