* Bumped version number to 7.01
[citadel.git] / citadel / serv_vandelay.c
index 0627187a6b4c1fc1768a45b3336d4c699eb2d8e2..940e8e222d2d7238daa928ecdb1ed53dff6e3a39 100644 (file)
@@ -318,6 +318,9 @@ void artv_do_export(void) {
        cprintf("%s\n", config.c_journal_dest);
        cprintf("%s\n", config.c_default_cal_zone);
        cprintf("%d\n", config.c_pftcpdict_port);
+       cprintf("%d\n", config.c_managesieve_port);
+       cprintf("%d\n", config.c_auth_mode);
+       
 
        /* Export the control file */
        get_control();
@@ -400,13 +403,14 @@ void artv_import_config(void) {
        client_getln(config.c_journal_dest, sizeof config.c_journal_dest);
        client_getln(config.c_default_cal_zone, sizeof config.c_default_cal_zone);
        client_getln(buf, sizeof buf);  config.c_pftcpdict_port = atoi(buf);
+       client_getln(buf, sizeof buf);  config.c_managesieve_port = atoi(buf);
+       client_getln(buf, sizeof buf);  config.c_auth_mode = atoi(buf);
        config.c_enable_fulltext = 0;   /* always disable */
        put_config();
        lprintf(CTDL_INFO, "Imported config file\n");
 }
 
 
-
 void artv_import_control(void) {
        char buf[SIZ];