X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=textclient%2Ftuiconfig.c;h=48e009750acb22fad6966044455ae5bd103cc8a1;hb=da6bb5e24252a0ff56d314a60081ae9ed31ab1a7;hp=efc7affc5a03c83fcf663ff36c87b30413c46cd0;hpb=2dfd5bee542a9d635e380097e63c307bd6c27d65;p=citadel.git diff --git a/textclient/tuiconfig.c b/textclient/tuiconfig.c index efc7affc5..48e009750 100644 --- a/textclient/tuiconfig.c +++ b/textclient/tuiconfig.c @@ -27,7 +27,7 @@ char editor_path[PATH_MAX]; /* * General system configuration command */ -void do_system_configuration(CtdlIPC *ipc) +void do_system_configuration(CtdlIPC * ipc) { /* NUM_CONFIGS is now defined in citadel.h */ @@ -49,13 +49,14 @@ void do_system_configuration(CtdlIPC *ipc) r = CtdlIPCGetSystemConfig(ipc, &resp, buf); if (r / 100 == 1) { server_configs = num_tokens(resp, '\n'); - for (a=0; aServInfo.supports_ldap) { @@ -186,8 +173,7 @@ void do_system_configuration(CtdlIPC *ipc) strprompt("Base DN", &sc[34][0], 255); strprompt("Bind DN (or blank for anonymous bind)", &sc[35][0], 255); strprompt("Password for bind DN (or blank for anonymous bind)", &sc[36][0], 255); - } - else { + } else { strcpy(&sc[32][0], ""); } } @@ -199,13 +185,11 @@ void do_system_configuration(CtdlIPC *ipc) /* Angels and demons dancing in my head... */ do { snprintf(buf, sizeof buf, "%d", site_expirepolicy->expire_mode); - strprompt("System default message expire policy (? for list)", - buf, 1); + strprompt("System default message expire policy (? for list)", buf, 1); if (buf[0] == '?') { scr_printf("\n" - "1. Never automatically expire messages\n" - "2. Expire by message count\n" - "3. Expire by message age\n"); + "1. Never automatically expire messages\n" + "2. Expire by message count\n" "3. Expire by message age\n"); } } while ((buf[0] < '1') || (buf[0] > '3')); site_expirepolicy->expire_mode = buf[0] - '0'; @@ -225,14 +209,12 @@ void do_system_configuration(CtdlIPC *ipc) /* Media messiahs preying on my fears... */ do { snprintf(buf, sizeof buf, "%d", mbx_expirepolicy->expire_mode); - strprompt("Mailbox default message expire policy (? for list)", - buf, 1); + strprompt("Mailbox default message expire policy (? for list)", buf, 1); if (buf[0] == '?') { scr_printf("\n" - "0. Go with the system default\n" - "1. Never automatically expire messages\n" - "2. Expire by message count\n" - "3. Expire by message age\n"); + "0. Go with the system default\n" + "1. Never automatically expire messages\n" + "2. Expire by message count\n" "3. Expire by message age\n"); } } while ((buf[0] < '0') || (buf[0] > '3')); mbx_expirepolicy->expire_mode = buf[0] - '0'; @@ -253,19 +235,13 @@ void do_system_configuration(CtdlIPC *ipc) strprompt("Default frequency to run POP3 collection (in seconds)", &sc[64][0], 5); strprompt("Fastest frequency to run POP3 collection (in seconds)", &sc[65][0], 5); strprompt("Hour to run purges (0-23)", &sc[31][0], 2); - snprintf(sc[42], sizeof sc[42], "%d", (boolprompt( - "Enable full text search index (warning: resource intensive)", - atoi(&sc[42][0])))); - - snprintf(sc[46], sizeof sc[46], "%d", (boolprompt( - "Perform journaling of email messages", - atoi(&sc[46][0])))); - snprintf(sc[47], sizeof sc[47], "%d", (boolprompt( - "Perform journaling of non-email messages", - atoi(&sc[47][0])))); - if ( (atoi(&sc[46][0])) || (atoi(&sc[47][0])) ) { - strprompt("Email destination of journalized messages", - &sc[48][0], 127); + snprintf(sc[42], sizeof sc[42], "%d", (boolprompt("Enable full text search index (warning: resource intensive)", + atoi(&sc[42][0])))); + + snprintf(sc[46], sizeof sc[46], "%d", (boolprompt("Perform journaling of email messages", atoi(&sc[46][0])))); + snprintf(sc[47], sizeof sc[47], "%d", (boolprompt("Perform journaling of non-email messages", atoi(&sc[47][0])))); + if ((atoi(&sc[46][0])) || (atoi(&sc[47][0]))) { + strprompt("Email destination of journalized messages", &sc[48][0], 127); } /* No more Funambol */ @@ -276,24 +252,24 @@ void do_system_configuration(CtdlIPC *ipc) /* External pager stuff */ int yes_pager = 0; - if (strlen(sc[60]) > 0) yes_pager = 1; + if (strlen(sc[60]) > 0) + yes_pager = 1; yes_pager = boolprompt("Configure an external pager tool", yes_pager); if (yes_pager) { strprompt("External pager tool", &sc[60][0], 255); - } - else { + } else { sc[60][0] = 0; } /* Master user account */ int yes_muacct = 0; - if (strlen(sc[58]) > 0) yes_muacct = 1; + if (strlen(sc[58]) > 0) + yes_muacct = 1; yes_muacct = boolprompt("Enable a 'master user' account", yes_muacct); if (yes_muacct) { strprompt("Master user name", &sc[58][0], 31); strprompt("Master user password", &sc[59][0], -31); - } - else { + } else { strcpy(&sc[58][0], ""); strcpy(&sc[59][0], "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); } @@ -305,7 +281,7 @@ void do_system_configuration(CtdlIPC *ipc) for (a = 0; a < NUM_CONFIGS; a++) { r += 1 + strlen(sc[a]); } - resp = (char *)calloc(1, r); + resp = (char *) calloc(1, r); if (!resp) { scr_printf("Can't save config - out of memory!\n"); logoff(ipc, 1); @@ -331,15 +307,18 @@ void do_system_configuration(CtdlIPC *ipc) } } - if (site_expirepolicy) free(site_expirepolicy); - if (mbx_expirepolicy) free(mbx_expirepolicy); + if (site_expirepolicy) + free(site_expirepolicy); + if (mbx_expirepolicy) + free(mbx_expirepolicy); } /* * support function for do_internet_configuration() */ -void get_inet_rec_type(CtdlIPC *ipc, char *buf) { +void get_inet_rec_type(CtdlIPC * ipc, char *buf) +{ int sel; keyopt(" <1> localhost (Alias for this computer)\n"); @@ -350,21 +329,28 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) { keyopt(" <6> masq domains (Domains as which users are allowed to masquerade)\n"); keyopt(" <7> ClamAV (Address of ClamAV clamd server)\n"); sel = intprompt("Which one", 1, 1, 8); - switch(sel) { - case 1: strcpy(buf, "localhost"); - return; - case 2: strcpy(buf, "smarthost"); - return; - case 3: strcpy(buf, "fallbackhost"); - return; - case 4: strcpy(buf, "spamassassin"); - return; - case 5: strcpy(buf, "rbl"); - return; - case 6: strcpy(buf, "masqdomain"); - return; - case 7: strcpy(buf, "clamav"); - return; + switch (sel) { + case 1: + strcpy(buf, "localhost"); + return; + case 2: + strcpy(buf, "smarthost"); + return; + case 3: + strcpy(buf, "fallbackhost"); + return; + case 4: + strcpy(buf, "spamassassin"); + return; + case 5: + strcpy(buf, "rbl"); + return; + case 6: + strcpy(buf, "masqdomain"); + return; + case 7: + strcpy(buf, "clamav"); + return; } } @@ -372,7 +358,7 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) { /* * Internet mail configuration */ -void do_internet_configuration(CtdlIPC *ipc) +void do_internet_configuration(CtdlIPC * ipc) { char buf[256]; char *resp = NULL; @@ -383,7 +369,7 @@ void do_internet_configuration(CtdlIPC *ipc) int quitting = 0; int modified = 0; int r; - + r = CtdlIPCGetSystemConfigByType(ipc, INTERNETCFG, &resp, buf); if (r / 100 == 1) { while (!IsEmptyStr(resp)) { @@ -397,13 +383,16 @@ void do_internet_configuration(CtdlIPC *ipc) } ++num_recs; - if (num_recs == 1) recs = malloc(sizeof(char *)); - else recs = realloc(recs, (sizeof(char *)) * num_recs); - recs[num_recs-1] = malloc(strlen(buf) + 1); - strcpy(recs[num_recs-1], buf); + if (num_recs == 1) + recs = malloc(sizeof(char *)); + else + recs = realloc(recs, (sizeof(char *)) * num_recs); + recs[num_recs - 1] = malloc(strlen(buf) + 1); + strcpy(recs[num_recs - 1], buf); } } - if (resp) free(resp); + if (resp) + free(resp); do { scr_printf("\n"); @@ -411,79 +400,79 @@ void do_internet_configuration(CtdlIPC *ipc) scr_printf("### Host or domain Record type \n"); color(DIM_WHITE); scr_printf("--- -------------------------------------------------- --------------------\n"); - for (i=0; idd|elete|ave|uit"); - switch(ch) { - case 'a': - newprompt("Enter host name: ", buf, 50); - striplt(buf); - if (!IsEmptyStr(buf)) { - ++num_recs; - if (num_recs == 1) { - recs = malloc(sizeof(char *)); - } - else { - recs = realloc(recs, (sizeof(char *)) * num_recs); - } - strcat(buf, "|"); - get_inet_rec_type(ipc, &buf[strlen(buf)]); - recs[num_recs-1] = strdup(buf); - } - modified = 1; - break; - case 'd': - i = intprompt("Delete which one", 1, 1, num_recs) - 1; - free(recs[i]); - --num_recs; - for (j=i; j= 0)); - editor_pid = (-1); - stty_ctdl(0); + editor_pid = (-1); + stty_ctdl(0); } if (file_checksum(filename) == cksum) { @@ -577,13 +565,13 @@ void network_config_management(CtdlIPC *ipc, char *entrytype, char *comment) e_ex_code = 1; } - if (e_ex_code == 0) { /* Save changes */ + if (e_ex_code == 0) { /* Save changes */ changefp = fopen(changefile, "w"); /* Load all netconfig entries that are *not* of the type we are editing */ r = CtdlIPCGetRoomNetworkConfig(ipc, &listing, buf); if (r / 100 == 1) { - while(listing && !IsEmptyStr(listing)) { + while (listing && !IsEmptyStr(listing)) { extract_token(buf, listing, 0, '\n', sizeof buf); remove_token(listing, 0, '\n'); extract_token(instr, buf, 0, '|', sizeof instr); @@ -600,8 +588,9 @@ void network_config_management(CtdlIPC *ipc, char *entrytype, char *comment) /* ...and merge that with the data we just edited */ tempfp = fopen(filename, "r"); while (fgets(buf, sizeof buf, tempfp) != NULL) { - for (i=0; idd|elete|ave|uit"); - switch(ch) { - case 'a': - ++num_recs; - if (num_recs == 1) { - recs = malloc(sizeof(char *)); - } - else { - recs = realloc(recs, (sizeof(char *)) * num_recs); - } - strcpy(buf, "pop3client|"); - newprompt("Enter host name: ", &buf[strlen(buf)], 28); - strcat(buf, "|"); - newprompt("Enter user name: ", &buf[strlen(buf)], 28); - strcat(buf, "|"); - newprompt("Enter password : ", &buf[strlen(buf)], 16); - strcat(buf, "|"); - scr_printf("Keep messages on server instead of deleting them? "); - sprintf(&buf[strlen(buf)], "%d", yesno()); - strcat(buf, "|"); - recs[num_recs-1] = strdup(buf); - modified = 1; - break; - case 'd': - i = intprompt("Delete which one", - 1, 1, num_recs) - 1; - free(recs[i]); - --num_recs; - for (j=i; jdd|elete|ave|uit"); - switch(ch) { - case 'a': - ++num_recs; - if (num_recs == 1) { - recs = malloc(sizeof(char *)); - } - else { - recs = realloc(recs, (sizeof(char *)) * num_recs); - } - strcpy(buf, "rssclient|"); - newprompt("Enter feed URL: ", &buf[strlen(buf)], 75); - strcat(buf, "|"); - recs[num_recs-1] = strdup(buf); - modified = 1; - break; - case 'd': - i = intprompt("Delete which one", 1, 1, num_recs) - 1; - free(recs[i]); - --num_recs; - for (j=i; j