]> code.citadel.org Git - citadel.git/blobdiff - citadel/citserver.c
libical, expat, and libsieve are now *required*.
[citadel.git] / citadel / citserver.c
index 5234f7d5d337c2ee3e93bfa53ee4cb7f725c6a89..6dba619936c800ab85004676a4f547c02d10d46d 100644 (file)
@@ -308,13 +308,7 @@ void cmd_info(void) {
        cprintf("%f\n", CtdlThreadWorkerAvg);
        cprintf("%d\n", CtdlThreadGetCount());
 
-       /* Does this server support Sieve mail filtering? */
-#ifdef HAVE_LIBSIEVE
-       cprintf("1\n");         /* yes */
-#else
-       cprintf("0\n");         /* no */
-#endif
-
+       cprintf("1\n");         /* yes, Sieve mail filtering is supported */
        cprintf("%d\n", config.c_enable_fulltext);
        
        cprintf("000\n");
@@ -1427,6 +1421,10 @@ void do_command_loop(void) {
                cmd_isme(&cmdbuf[5]);
        }
 
+       else if (!strncasecmp(cmdbuf, "RENU", 4)) {
+               cmd_renu(&cmdbuf[5]);
+       }
+
        else if (!DLoader_Exec_Cmd(cmdbuf)) {
                cprintf("%d Unrecognized or unsupported command.\n", ERROR + CMD_NOT_SUPPORTED);
        }