]> code.citadel.org Git - citadel.git/blobdiff - citadel/citserver.c
Added a RENU command (REName a User)
[citadel.git] / citadel / citserver.c
index abfb31db24c5c67ebdb2ea0296c38c0cdd34145f..efcaed9e48b3a84f25c621fdad02678815808984 100644 (file)
@@ -314,6 +314,8 @@ void cmd_info(void) {
 #else
        cprintf("0\n");         /* no */
 #endif
+
+       cprintf("%d\n", config.c_enable_fulltext);
        
        cprintf("000\n");
 }
@@ -1425,6 +1427,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);
        }