More libsieve detect fixes
authorArt Cancro <ajc@citadel.org>
Mon, 11 Sep 2006 14:57:20 +0000 (14:57 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 11 Sep 2006 14:57:20 +0000 (14:57 +0000)
citadel/configure.ac
citadel/serv_extensions.c

index 3f45f66080587161c8214d5cebcc5479025328ae..b1584a6eacce6c69bdf790eff9a0286067ad2686 100644 (file)
@@ -725,7 +725,7 @@ echo ------------------------------------------------------------------------
 echo 'zlib compression:                ' $ok_zlib
 echo 'Calendar support:                ' $ok_libical
 echo 'LDAP support:                    ' $ok_ldap
-echo 'Sieve mailbox filtering support: ' $ok_sieve
+echo 'Sieve mailbox filtering support: ' $ok_libsieve
 echo 
 echo 'Note: if you are not using Linux, make sure you are using GNU make'
 echo '(gmake) to compile Citadel.'
index cb0618a61cdee24d3affd39ed8a2b499c30ce3af..dc37cb74e77237950fa29a896969e63b9a5023ce 100644 (file)
@@ -127,6 +127,9 @@ void initialize_server_extensions(void)
        lprintf(CTDL_INFO, "%s\n", serv_fulltext_init());
        lprintf(CTDL_INFO, "%s\n", serv_autocompletion_init());
        lprintf(CTDL_INFO, "%s\n", serv_postfix_tcpdict());
+#ifdef HAVE_LIBSIEVE
+       lprintf(CTDL_INFO, "%s\n", "FIXME do serv_libsieve_init() here");
+#endif
        lprintf(CTDL_INFO, "%s\n", serv_managesieve_init());
 }