]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_vandelay.c
* Removed the "weekly" script and began installing a facility to allow
[citadel.git] / citadel / serv_vandelay.c
index 1608804b5c4df90267c729c64712eeff293338f3..2ef114d4794da676a6afd0aa2150046f0826f3b5 100644 (file)
@@ -282,6 +282,7 @@ void artv_do_export(void) {
        cprintf("%d\n", config.c_max_workers);
        cprintf("%d\n", config.c_pop3_port);
        cprintf("%d\n", config.c_smtp_port);
+       cprintf("%d\n", config.c_purge_hour);
 
        /* Export the control file */
        get_control();
@@ -339,6 +340,7 @@ void artv_import_config(void) {
        client_gets(buf);       config.c_max_workers = atoi(buf);
        client_gets(buf);       config.c_pop3_port = atoi(buf);
        client_gets(buf);       config.c_smtp_port = atoi(buf);
+       client_gets(buf);       config.c_purge_hour = atoi(buf);
        put_config();
        lprintf(7, "Imported config file\n");
 }