summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haardt <michael@moria.de>2008-12-18 13:42:26 +0000
committerMichael Haardt <michael@moria.de>2008-12-18 13:42:26 +0000
commit9683a68f97514134e8b0f52293d72b760cbdeaf2 (patch)
tree7fd01c836fd3407d3cea91f0b45c48056b46c180
parentefd9a4221230676150af3f26d08432c5567c3a07 (diff)
downloadexim4-9683a68f97514134e8b0f52293d72b760cbdeaf2.tar.gz
Patch to previously committed patch that sorts the new option correctly.
-rw-r--r--src/src/routers/redirect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/src/routers/redirect.c b/src/src/routers/redirect.c
index 7a8f5b755..35af9ac94 100644
--- a/src/src/routers/redirect.c
+++ b/src/src/routers/redirect.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/routers/redirect.c,v 1.21 2008/12/18 13:13:54 michael Exp $ */
+/* $Cambridge: exim/src/src/routers/redirect.c,v 1.22 2008/12/18 13:42:26 michael Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -101,14 +101,14 @@ optionlist redirect_router_options[] = {
(void *)offsetof(redirect_router_options_block, reply_transport_name) },
{ "rewrite", opt_bit | (RDON_REWRITE << 16),
(void *)offsetof(redirect_router_options_block, bit_options) },
+ { "sieve_enotify_mailto_owner", opt_stringptr,
+ (void *)offsetof(redirect_router_options_block, sieve_enotify_mailto_owner) },
{ "sieve_subaddress", opt_stringptr,
(void *)offsetof(redirect_router_options_block, sieve_subaddress) },
{ "sieve_useraddress", opt_stringptr,
(void *)offsetof(redirect_router_options_block, sieve_useraddress) },
{ "sieve_vacation_directory", opt_stringptr,
(void *)offsetof(redirect_router_options_block, sieve_vacation_directory) },
- { "sieve_enotify_mailto_owner", opt_stringptr,
- (void *)offsetof(redirect_router_options_block, sieve_enotify_mailto_owner) },
{ "skip_syntax_errors", opt_bool,
(void *)offsetof(redirect_router_options_block, skip_syntax_errors) },
#ifdef EXPERIMENTAL_SRS