summaryrefslogtreecommitdiff
path: root/src/src/filtertest.c
diff options
context:
space:
mode:
authorMichael Haardt <michael@moria.de>2008-12-18 13:13:53 +0000
committerMichael Haardt <michael@moria.de>2008-12-18 13:13:53 +0000
commitefd9a4221230676150af3f26d08432c5567c3a07 (patch)
tree523720ad0382afba614fe566522f802f0f113b18 /src/src/filtertest.c
parentb52bc06efc7a59bd262994eda285d2b125b767d7 (diff)
downloadexim4-efd9a4221230676150af3f26d08432c5567c3a07.tar.gz
Implement the infrastructure of the mailto notification owner as
required by draft-ietf-sieve-notify-mailto-10. There is a new redirect router option sieve_enotify_mailto_owner, which is passed to the Sieve interpreter. The actual Sieve patch will follow later.
Diffstat (limited to 'src/src/filtertest.c')
-rw-r--r--src/src/filtertest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/filtertest.c b/src/src/filtertest.c
index 30f29562a..37fc13d45 100644
--- a/src/src/filtertest.c
+++ b/src/src/filtertest.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/filtertest.c,v 1.10 2007/01/08 10:50:18 ph10 Exp $ */
+/* $Cambridge: exim/src/src/filtertest.c,v 1.11 2008/12/18 13:13:54 michael Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -272,7 +272,7 @@ if (is_system)
else
{
yield = (filter_type == FILTER_SIEVE)?
- sieve_interpret(filebuf, RDO_REWRITE, NULL, NULL, NULL, &generated, &error)
+ sieve_interpret(filebuf, RDO_REWRITE, NULL, NULL, NULL, NULL, &generated, &error)
:
filter_interpret(filebuf, RDO_REWRITE, &generated, &error);
}