X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_vandelay.c;h=9152160eaafd2c7e059d6ec68ab6f770ec854be3;hb=b2e2126e922c2428d7dd1a39c953cc920c65e68b;hp=0ab094f054bd2e82dc7f3f1fa9b0cb8972160328;hpb=06ea86f2ec12155fdd969f8c348d31f65900345a;p=citadel.git diff --git a/citadel/serv_vandelay.c b/citadel/serv_vandelay.c index 0ab094f05..9152160ea 100644 --- a/citadel/serv_vandelay.c +++ b/citadel/serv_vandelay.c @@ -324,6 +324,7 @@ void artv_do_export(void) { cprintf("%d\n", config.c_funambol_port); cprintf("%s\n", config.c_funambol_source); cprintf("%s\n", config.c_funambol_auth); + cprintf("%d\n", config.c_rbl_at_greeting); /* Export the control file */ get_control(); @@ -412,6 +413,7 @@ void artv_import_config(void) { client_getln(buf, sizeof buf); config.c_funambol_port = atoi(buf); client_getln(config.c_funambol_source, sizeof config.c_funambol_source); client_getln(config.c_funambol_auth, sizeof config.c_funambol_auth); + client_getln(buf, sizeof buf); config.c_rbl_at_greeting = atoi(buf); config.c_enable_fulltext = 0; /* always disable */ put_config();