dovecot-1.2-sieve: Spamtest/Virustest extensions: forgot to call...
pigeonhole at rename-it.nl
pigeonhole at rename-it.nl
Fri May 14 13:17:31 EEST 2010
details: http://hg.rename-it.nl/dovecot-1.2-sieve/rev/544ec4e9c3b7
changeset: 1256:544ec4e9c3b7
user: Stephan Bosch <stephan at rename-it.nl>
date: Fri May 14 12:16:52 2010 +0200
description:
Spamtest/Virustest extensions: forgot to call extension unload handler.
diffstat:
src/lib-sieve/plugins/spamvirustest/ext-spamvirustest.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (30 lines):
diff -r 41df7edbee74 -r 544ec4e9c3b7 src/lib-sieve/plugins/spamvirustest/ext-spamvirustest.c
--- a/src/lib-sieve/plugins/spamvirustest/ext-spamvirustest.c Fri May 14 11:25:25 2010 +0200
+++ b/src/lib-sieve/plugins/spamvirustest/ext-spamvirustest.c Fri May 14 12:16:52 2010 +0200
@@ -70,7 +70,7 @@
const struct sieve_extension_def spamtest_extension = {
"spamtest",
ext_spamvirustest_load,
- NULL,
+ ext_spamvirustest_unload,
ext_spamvirustest_validator_load,
NULL, NULL, NULL, NULL, NULL,
SIEVE_EXT_DEFINE_OPERATION(spamtest_operation),
@@ -80,7 +80,7 @@
const struct sieve_extension_def spamtestplus_extension = {
"spamtestplus",
ext_spamvirustest_load,
- NULL,
+ ext_spamvirustest_unload,
ext_spamvirustest_validator_load,
NULL, NULL, NULL, NULL, NULL,
SIEVE_EXT_DEFINE_OPERATION(spamtest_operation),
@@ -90,7 +90,7 @@
const struct sieve_extension_def virustest_extension = {
"virustest",
ext_spamvirustest_load,
- NULL,
+ ext_spamvirustest_unload,
ext_spamvirustest_validator_load,
NULL, NULL, NULL, NULL, NULL,
SIEVE_EXT_DEFINE_OPERATION(virustest_operation),
More information about the dovecot-cvs
mailing list