Skip to content
Snippets Groups Projects
Commit 418816cd authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: redirect action: Always set X-Sieve-Redirected-From header to...

lib-sieve: redirect action: Always set X-Sieve-Redirected-From header to sieve_user_email if configured.

Set it to the final recipient only when there is an envelope and sieve_user_email is unconfigured.
parent b38df93b
No related branches found
No related tags found
No related merge requests found
......@@ -362,7 +362,8 @@ static int act_redirect_send
/* Prepend sieve headers (should not affect signatures) */
rfc2822_header_append(hdr,
"X-Sieve", SIEVE_IMPLEMENTATION, FALSE, NULL);
if ( (aenv->flags & SIEVE_EXECUTE_FLAG_NO_ENVELOPE) == 0 )
if ( svinst->user_email == NULL &&
(aenv->flags & SIEVE_EXECUTE_FLAG_NO_ENVELOPE) == 0 )
user_email = sieve_message_get_final_recipient(msgctx);
else
user_email = sieve_get_user_email(aenv->svinst);
......
......@@ -36,6 +36,11 @@ test "Redirect" {
if not envelope :is "from" "sirius@example.org" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -66,6 +71,11 @@ test "Redirect from <>" {
if not envelope :is "from" "" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -99,6 +109,11 @@ test "Redirect from [recipient]" {
if not envelope :is "from" "timo@example.net" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -133,8 +148,12 @@ test "Redirect from [original recipient]" {
if not envelope :is "from" "tss@example.net" {
test_fail "envelope sender incorrect";
}
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
test_set "message" text:
......@@ -168,6 +187,11 @@ test "Redirect from [<explicit>]" {
if not envelope :is "from" "backscatter@example.net" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -201,6 +225,11 @@ test "Redirect from [<>]" {
if not envelope :is "from" "" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -235,6 +264,11 @@ test "Redirect from <> with [<explicit>]" {
if not envelope :is "from" "" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -265,6 +299,11 @@ test "Redirect from [user email - fallback default]" {
if not envelope :is "from" "timo@example.net" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"timo@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
test_result_reset;
......@@ -300,5 +339,10 @@ test "Redirect from [user email]" {
if not envelope :is "from" "t.sirainen@example.net" {
test_fail "envelope sender incorrect";
}
if not header :contains "x-sieve-redirected-from"
"t.sirainen@example.net" {
test_fail "x-sieve-redirected-from header is incorrect";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.