]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/expire/serv_expire.c
Replaced some of the 'autoconverted - document me' strings
[citadel.git] / citadel / modules / expire / serv_expire.c
index 25c926bf1b31d86acabe359ab338c947ed10fa14..b08fb974fca7a1054c8d8abcbbdf90acbe09eae7 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * This module handles the expiry of old messages and the purging of old users.
  *
  * You might also see this module affectionately referred to as the DAP (the Dreaded Auto-Purger).
@@ -1053,11 +1051,11 @@ CTDL_MODULE_INIT(expire)
                /* CtdlRegisterProtoHook(cmd_fsck, "FSCK", "Check message ref counts"); */
                CtdlRegisterProtoHook(cmd_tdap, "TDAP", "Manually initiate auto-purger");
 
-               CtdlRegisterProtoHook(cmd_gpex, "GPEX", "Autoconverted. TODO: document me.");
-               CtdlRegisterProtoHook(cmd_spex, "SPEX", "Autoconverted. TODO: document me.");
+               CtdlRegisterProtoHook(cmd_gpex, "GPEX", "Get expire policy");
+               CtdlRegisterProtoHook(cmd_spex, "SPEX", "Set expire policy");
        }
        else
                CtdlThreadCreate("Auto Purger", CTDLTHREAD_BIGSTACK, purge_databases, NULL);
        /* return our Subversion id for the Log */
-       return "$Id$";
+       return "expire";
 }