-
What happened?I have a sieve script similar to the following, for testing redirects: if address :is "To" "[email protected]"
{
set "FromOrig" "${envelope.from}";
deleteheader "From";
addheader "From" "[email protected]";
addheader "Reply-To" "${FromOrig}";
redirect "[email protected]";
redirect "[email protected]";
discard;
} It changes the from so that dmarc/dkim/etc work properly, and that works fine. however it only redirects to the first e-mail address listed (in this case [email protected]). from a quick search it looks like more than 1 should be supported? or maybe i'm doing something wrong? How can we reproduce the problem?see above for a sieve script to reproduce the issue. Versionv0.9.x What database are you using?RocksDB What blob storage are you using?RocksDB Where is your directory located?Internal What operating system are you using?Linux Relevant log outputNo response Code of Conduct
|
Beta Was this translation helpful? Give feedback.
Answered by
mdecimus
Aug 23, 2024
Replies: 1 comment 1 reply
-
Check your max-redirects setting. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
smorks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check your max-redirects setting.