dovecot-2.0-pigeonhole: Spamtest/Virustest extensions: forgot to...

pigeonhole at rename-it.nl pigeonhole at rename-it.nl
Fri May 14 13:38:37 EEST 2010


details:   http://hg.rename-it.nl/dovecot-2.0-pigeonhole/rev/a6b803177192
changeset: 1280:a6b803177192
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 86967c644d98 -r a6b803177192 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