More removal of $Id$ tags
[citadel.git] / citadel / textclient / tuiconfig.c
1 /*
2  * Configuration screens that are part of the text mode client.
3  *
4  */
5
6 #include <stdlib.h>
7 #include <unistd.h>
8 #include <sys/types.h>
9 #include <sys/stat.h>
10 #include <fcntl.h>
11 #include <stdio.h>
12 #include <ctype.h>
13 #include <string.h>
14 #include <limits.h>
15
16 #if TIME_WITH_SYS_TIME
17 # include <sys/time.h>
18 # include <time.h>
19 #else
20 # if HAVE_SYS_TIME_H
21 #  include <sys/time.h>
22 # else
23 #  include <time.h>
24 # endif
25 #endif
26
27 #include <signal.h>
28 #include <pwd.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include <libcitadel.h>
32 #include "sysdep.h"
33 #include "citadel.h"
34 #include "citadel_ipc.h"
35 #include "citadel_decls.h"
36 #include "tuiconfig.h"
37 #include "messages.h"
38 #include "routines.h"
39 #include "commands.h"
40 #ifndef HAVE_SNPRINTF
41 #include "snprintf.h"
42 #endif
43 #include "screen.h"
44
45 /* work around solaris include files */
46 #ifdef reg
47 #undef reg
48 #endif
49
50 extern char temp[];
51 extern char tempdir[];
52 extern char *axdefs[8];
53 extern long highest_msg_read;
54 extern long maxmsgnum;
55 extern unsigned room_flags;
56 extern int screenwidth;
57
58
59 /* 
60  * General system configuration command
61  */
62 void do_system_configuration(CtdlIPC *ipc)
63 {
64
65 #define NUM_CONFIGS 68
66
67         char buf[256];
68         char sc[NUM_CONFIGS][256];
69         char *resp = NULL;
70         struct ExpirePolicy *site_expirepolicy = NULL;
71         struct ExpirePolicy *mbx_expirepolicy = NULL;
72         int a;
73         int logpages = 0;
74         int r;                  /* IPC response code */
75         int server_configs = 0;
76
77         /* Clear out the config buffers */
78         memset(&sc[0][0], 0, sizeof(sc));
79
80         /* Fetch the current config */
81         r = CtdlIPCGetSystemConfig(ipc, &resp, buf);
82         if (r / 100 == 1) {
83                 server_configs = num_tokens(resp, '\n');
84                 for (a=0; a<server_configs; ++a) {
85                         if (a < NUM_CONFIGS) {
86                                 extract_token(&sc[a][0], resp, a, '\n', sizeof sc[a]);
87                         }
88                 }
89         }
90         if (resp) free(resp);
91         resp = NULL;
92         /* Fetch the expire policy (this will silently fail on old servers,
93          * resulting in "default" policy)
94          */
95         r = CtdlIPCGetMessageExpirationPolicy(ipc, 2, &site_expirepolicy, buf);
96         r = CtdlIPCGetMessageExpirationPolicy(ipc, 3, &mbx_expirepolicy, buf);
97
98         /* Identification parameters */
99
100         strprompt("Node name", &sc[0][0], 15);
101         strprompt("Fully qualified domain name", &sc[1][0], 63);
102         strprompt("Human readable node name", &sc[2][0], 20);
103         strprompt("Telephone number", &sc[3][0], 15);
104         strprompt("Geographic location of this system", &sc[12][0], 31);
105         strprompt("Name of system administrator", &sc[13][0], 25);
106         strprompt("Paginator prompt", &sc[10][0], 79);
107
108         /* Security parameters */
109
110         snprintf(sc[7], sizeof sc[7], "%d", (boolprompt(
111                 "Require registration for new users",
112                 atoi(&sc[7][0]))));
113         snprintf(sc[29], sizeof sc[29], "%d", (boolprompt(
114                 "Disable self-service user account creation",
115                 atoi(&sc[29][0]))));
116         strprompt("Initial access level for new users", &sc[6][0], 1);
117         strprompt("Access level required to create rooms", &sc[19][0], 1);
118         snprintf(sc[67], sizeof sc[67], "%d", (boolprompt(
119                 "Allow anonymous guest logins",
120                 atoi(&sc[67][0]))));
121         snprintf(sc[4], sizeof sc[4], "%d", (boolprompt(
122                 "Automatically give room aide privs to a user who creates a private room",
123                 atoi(&sc[4][0]))));
124
125         snprintf(sc[8], sizeof sc[8], "%d", (boolprompt(
126                 "Automatically move problem user messages to twit room",
127                 atoi(&sc[8][0]))));
128
129         strprompt("Name of twit room", &sc[9][0], ROOMNAMELEN);
130         snprintf(sc[11], sizeof sc[11], "%d", (boolprompt(
131                 "Restrict Internet mail to only those with that privilege",
132                 atoi(&sc[11][0]))));
133         snprintf(sc[26], sizeof sc[26], "%d", (boolprompt(
134                 "Allow Aides to Zap (forget) rooms",
135                 atoi(&sc[26][0]))));
136
137         if (!IsEmptyStr(&sc[18][0])) {
138                 logpages = 1;
139         }
140         else {
141                 logpages = 0;
142         }
143         logpages = boolprompt("Log all instant messages", logpages);
144         if (logpages) {
145                 strprompt("Name of logging room", &sc[18][0], ROOMNAMELEN);
146         }
147         else {
148                 sc[18][0] = 0;
149         }
150
151         /* Commented out because this setting isn't really appropriate to
152          * change while the server is running.
153          *
154          * snprintf(sc[52], sizeof sc[52], "%d", (boolprompt(
155          *      "Use system authentication",
156          *      atoi(&sc[52][0]))));
157          */
158
159         /* Server tuning */
160
161         strprompt("Server connection idle timeout (in seconds)", &sc[5][0], 4);
162         strprompt("Maximum concurrent sessions", &sc[14][0], 4);
163         strprompt("Maximum message length", &sc[20][0], 20);
164         strprompt("Minimum number of worker threads", &sc[21][0], 3);
165         strprompt("Maximum number of worker threads", &sc[22][0], 3);
166         snprintf(sc[43], sizeof sc[43], "%d", (boolprompt(
167                 "Automatically delete committed database logs",
168                 atoi(&sc[43][0]))));
169
170         strprompt("Server IP address (* for 'any')", &sc[37][0], 15);
171         strprompt("POP3 server port (-1 to disable)", &sc[23][0], 5);
172         strprompt("POP3S server port (-1 to disable)", &sc[40][0], 5);
173         strprompt("IMAP server port (-1 to disable)", &sc[27][0], 5);
174         strprompt("IMAPS server port (-1 to disable)", &sc[39][0], 5);
175         strprompt("SMTP MTA server port (-1 to disable)", &sc[24][0], 5);
176         strprompt("SMTP MSA server port (-1 to disable)", &sc[38][0], 5);
177         strprompt("SMTPS server port (-1 to disable)", &sc[41][0], 5);
178         strprompt("Postfix TCP Dictionary Port server port (-1 to disable)", &sc[50][0], 5);
179         strprompt("ManageSieve server port (-1 to disable)", &sc[51][0], 5);
180
181         strprompt("XMPP (Jabber) client to server port (-1 to disable)", &sc[62][0], 5);
182         /* No prompt because we don't implement this service yet, it's just a placeholder */
183         /* strprompt("XMPP (Jabber) server to server port (-1 to disable)", &sc[63][0], 5); */
184
185         /* This logic flips the question around, because it's one of those
186          * situations where 0=yes and 1=no
187          */
188         a = atoi(sc[25]);
189         a = (a ? 0 : 1);
190         a = boolprompt("Correct forged From: lines during authenticated SMTP",
191                 a);
192         a = (a ? 0 : 1);
193         snprintf(sc[25], sizeof sc[25], "%d", a);
194
195         snprintf(sc[66], sizeof sc[66], "%d", (boolprompt(
196                 "Flag messages as spam instead of rejecting",
197                 atoi(&sc[66][0]))));
198
199         /* This logic flips the question around, because it's one of those
200          * situations where 0=yes and 1=no
201          */
202         a = atoi(sc[61]);
203         a = (a ? 0 : 1);
204         a = boolprompt("Force IMAP posts in public rooms to be from the user who submitted them", a);
205         a = (a ? 0 : 1);
206         snprintf(sc[61], sizeof sc[61], "%d", a);
207
208         snprintf(sc[45], sizeof sc[45], "%d", (boolprompt(
209                 "Allow unauthenticated SMTP clients to spoof my domains",
210                 atoi(&sc[45][0]))));
211         snprintf(sc[57], sizeof sc[57], "%d", (boolprompt(
212                 "Perform RBL checks at greeting instead of after RCPT",
213                 atoi(&sc[57][0]))));
214         snprintf(sc[44], sizeof sc[44], "%d", (boolprompt(
215                 "Instantly expunge deleted IMAP messages",
216                 atoi(&sc[44][0]))));
217
218         /* LDAP settings */
219         if (ipc->ServInfo.supports_ldap) {
220                 a = strlen(&sc[32][0]);
221                 a = (a ? 1 : 0);        /* Set only to 1 or 0 */
222                 a = boolprompt("Do you want to configure LDAP authentication?", a);
223                 if (a) {
224                         strprompt("Host name of LDAP server",
225                                 &sc[32][0], 127);
226                         strprompt("Port number of LDAP service",
227                                 &sc[33][0], 5);
228                         strprompt("Base DN", &sc[34][0], 255);
229                         strprompt("Bind DN (or blank for anonymous bind)", &sc[35][0], 255);
230                         strprompt("Password for bind DN (or blank for anonymous bind)", &sc[36][0], 255);
231                 }
232                 else {
233                         strcpy(&sc[32][0], "");
234                 }
235         }
236
237         /* Expiry settings */
238         strprompt("Default user purge time (days)", &sc[16][0], 5);
239         strprompt("Default room purge time (days)", &sc[17][0], 5);
240
241         /* Angels and demons dancing in my head... */
242         do {
243                 snprintf(buf, sizeof buf, "%d", site_expirepolicy->expire_mode);
244                 strprompt("System default message expire policy (? for list)",
245                           buf, 1);
246                 if (buf[0] == '?') {
247                         scr_printf("\n"
248                                 "1. Never automatically expire messages\n"
249                                 "2. Expire by message count\n"
250                                 "3. Expire by message age\n");
251                 }
252         } while ((buf[0] < '1') || (buf[0] > '3'));
253         site_expirepolicy->expire_mode = buf[0] - '0';
254
255         /* ...lunatics and monsters underneath my bed */
256         if (site_expirepolicy->expire_mode == 2) {
257                 snprintf(buf, sizeof buf, "%d", site_expirepolicy->expire_value);
258                 strprompt("Keep how many messages online?", buf, 10);
259                 site_expirepolicy->expire_value = atol(buf);
260         }
261         if (site_expirepolicy->expire_mode == 3) {
262                 snprintf(buf, sizeof buf, "%d", site_expirepolicy->expire_value);
263                 strprompt("Keep messages for how many days?", buf, 10);
264                 site_expirepolicy->expire_value = atol(buf);
265         }
266
267         /* Media messiahs preying on my fears... */
268         do {
269                 snprintf(buf, sizeof buf, "%d", mbx_expirepolicy->expire_mode);
270                 strprompt("Mailbox default message expire policy (? for list)",
271                           buf, 1);
272                 if (buf[0] == '?') {
273                         scr_printf("\n"
274                                 "0. Go with the system default\n"
275                                 "1. Never automatically expire messages\n"
276                                 "2. Expire by message count\n"
277                                 "3. Expire by message age\n");
278                 }
279         } while ((buf[0] < '0') || (buf[0] > '3'));
280         mbx_expirepolicy->expire_mode = buf[0] - '0';
281
282         /* ...Pop culture prophets playing in my ears */
283         if (mbx_expirepolicy->expire_mode == 2) {
284                 snprintf(buf, sizeof buf, "%d", mbx_expirepolicy->expire_value);
285                 strprompt("Keep how many messages online?", buf, 10);
286                 mbx_expirepolicy->expire_value = atol(buf);
287         }
288         if (mbx_expirepolicy->expire_mode == 3) {
289                 snprintf(buf, sizeof buf, "%d", mbx_expirepolicy->expire_value);
290                 strprompt("Keep messages for how many days?", buf, 10);
291                 mbx_expirepolicy->expire_value = atol(buf);
292         }
293
294         strprompt("How often to run network jobs (in seconds)", &sc[28][0], 5);
295         strprompt("Default frequency to run POP3 collection (in seconds)", &sc[64][0], 5);
296         strprompt("Fastest frequency to run POP3 collection (in seconds)", &sc[65][0], 5);
297         strprompt("Hour to run purges (0-23)", &sc[31][0], 2);
298         snprintf(sc[42], sizeof sc[42], "%d", (boolprompt(
299                 "Enable full text search index (warning: resource intensive)",
300                 atoi(&sc[42][0]))));
301
302         snprintf(sc[46], sizeof sc[46], "%d", (boolprompt(
303                 "Perform journaling of email messages",
304                 atoi(&sc[46][0]))));
305         snprintf(sc[47], sizeof sc[47], "%d", (boolprompt(
306                 "Perform journaling of non-email messages",
307                 atoi(&sc[47][0]))));
308         if ( (atoi(&sc[46][0])) || (atoi(&sc[47][0])) ) {
309                 strprompt("Email destination of journalized messages",
310                         &sc[48][0], 127);
311         }
312
313         /* Funambol push stuff */
314         int yes_funambol = 0;
315         if (strlen(sc[53]) > 0) yes_funambol = 1;
316         yes_funambol = boolprompt("Connect to an external Funambol sync server", yes_funambol);
317         if (yes_funambol) {
318                 strprompt("Funambol server (blank to disable)", &sc[53][0], 63);
319                 strprompt("Funambol server port", &sc[54][0], 5);
320                 strprompt("Funambol sync source", &sc[55][0], 63);
321                 strprompt("Funambol authentication details (user:pass in Base64)", &sc[56][0],63);
322         }
323         else {
324                 sc[53][0] = 0;
325                 sc[54][0] = 0;
326                 sc[55][0] = 0;
327                 sc[56][0] = 0;
328         }
329
330         /* External pager stuff */
331         int yes_pager = 0;
332         if (strlen(sc[60]) > 0) yes_pager = 1;
333         yes_pager = boolprompt("Configure an external pager tool", yes_pager);
334         if (yes_pager) {
335                 strprompt("External pager tool", &sc[60][0], 255);
336         }
337         else {
338                 sc[60][0] = 0;
339         }
340
341         /* Master user account */
342         int yes_muacct = 0;
343         if (strlen(sc[58]) > 0) yes_muacct = 1;
344         yes_muacct = boolprompt("Enable a 'master user' account", yes_muacct);
345         if (yes_muacct) {
346                 strprompt("Master user name", &sc[58][0], 31);
347                 strprompt("Master user password", &sc[59][0], -31);
348         }
349         else {
350                 strcpy(&sc[58][0], "");
351                 strcpy(&sc[59][0], "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
352         }
353
354         /* Save it */
355         scr_printf("Save this configuration? ");
356         if (yesno()) {
357                 r = 1;
358                 for (a = 0; a < NUM_CONFIGS; a++)
359                         r += 1 + strlen(sc[a]);
360                 resp = (char *)calloc(1, r);
361                 if (!resp) {
362                         err_printf("Can't save config - out of memory!\n");
363                         logoff(ipc, 1);
364                 }
365                 for (a = 0; a < NUM_CONFIGS; a++) {
366                         strcat(resp, sc[a]);
367                         strcat(resp, "\n");
368                 }
369                 r = CtdlIPCSetSystemConfig(ipc, resp, buf);
370                 if (r / 100 != 4) {
371                         err_printf("%s\n", buf);
372                 }
373                 free(resp);
374
375                 r = CtdlIPCSetMessageExpirationPolicy(ipc, 2, site_expirepolicy, buf);
376                 if (r / 100 != 2) {
377                         err_printf("%s\n", buf);
378                 }
379
380                 r = CtdlIPCSetMessageExpirationPolicy(ipc, 3, mbx_expirepolicy, buf);
381                 if (r / 100 != 2) {
382                         err_printf("%s\n", buf);
383                 }
384
385         }
386     if (site_expirepolicy) free(site_expirepolicy);
387     if (mbx_expirepolicy) free(mbx_expirepolicy);
388 }
389
390
391 /*
392  * support function for do_internet_configuration()
393  */
394 void get_inet_rec_type(CtdlIPC *ipc, char *buf) {
395         int sel;
396
397         keyopt(" <1> localhost      (Alias for this computer)\n");
398         keyopt(" <2> smart host     (Forward all outbound mail to this host)\n");
399         keyopt(" <3> fallback host  (Send mail to this host only if direct delivery fails)\n");
400         keyopt(" <4> directory      (Consult the Global Address Book)\n");
401         keyopt(" <5> SpamAssassin   (Address of SpamAssassin server)\n");
402         keyopt(" <6> RBL            (domain suffix of spam hunting RBL)\n");
403         keyopt(" <7> masq domains   (Domains as which users are allowed to masquerade)\n");
404         keyopt(" <8> ClamAV         (Address of ClamAV clamd server)\n");
405         sel = intprompt("Which one", 1, 1, 7);
406         switch(sel) {
407                 case 1: strcpy(buf, "localhost");
408                         return;
409                 case 2: strcpy(buf, "smarthost");
410                         return;
411                 case 3: strcpy(buf, "fallbackhost");
412                         return;
413                 case 4: strcpy(buf, "directory");
414                         return;
415                 case 5: strcpy(buf, "spamassassin");
416                         return;
417                 case 6: strcpy(buf, "rbl");
418                         return;
419                 case 7: strcpy(buf, "masqdomain");
420                         return;
421                 case 8: strcpy(buf, "clamav");
422                         return;
423         }
424 }
425
426
427 /*
428  * Internet mail configuration
429  */
430 void do_internet_configuration(CtdlIPC *ipc)
431 {
432         char buf[256];
433         char *resp = NULL;
434         int num_recs = 0;
435         char **recs = NULL;
436         char ch;
437         int badkey;
438         int i, j;
439         int quitting = 0;
440         int modified = 0;
441         int r;
442         
443         r = CtdlIPCGetSystemConfigByType(ipc, INTERNETCFG, &resp, buf);
444         if (r / 100 == 1) {
445                 while (!IsEmptyStr(resp)) {
446                         extract_token(buf, resp, 0, '\n', sizeof buf);
447                         remove_token(resp, 0, '\n');
448                         ++num_recs;
449                         if (num_recs == 1) recs = malloc(sizeof(char *));
450                         else recs = realloc(recs, (sizeof(char *)) * num_recs);
451                         recs[num_recs-1] = malloc(strlen(buf) + 1);
452                         strcpy(recs[num_recs-1], buf);
453                 }
454         }
455         if (resp) free(resp);
456
457         do {
458                 scr_printf("\n");
459                 color(BRIGHT_WHITE);
460                 scr_printf("###                    Host or domain                     Record type      \n");
461                 color(DIM_WHITE);
462                 scr_printf("--- -------------------------------------------------- --------------------\n");
463                 for (i=0; i<num_recs; ++i) {
464                 color(DIM_WHITE);
465                 scr_printf("%3d ", i+1);
466                 extract_token(buf, recs[i], 0, '|', sizeof buf);
467                 color(BRIGHT_CYAN);
468                 scr_printf("%-50s ", buf);
469                 extract_token(buf, recs[i], 1, '|', sizeof buf);
470                 color(BRIGHT_MAGENTA);
471                 scr_printf("%-20s\n", buf);
472                 color(DIM_WHITE);
473                 }
474
475                 ch = keymenu("", "<A>dd|<D>elete|<S>ave|<Q>uit");
476                 switch(ch) {
477                         case 'a':
478                                 newprompt("Enter host name: ",
479                                         buf, 50);
480                                 striplt(buf);
481                                 if (!IsEmptyStr(buf)) {
482                                         ++num_recs;
483                                         if (num_recs == 1)
484                                                 recs = malloc(sizeof(char *));
485                                         else recs = realloc(recs,
486                                                 (sizeof(char *)) * num_recs);
487                                         strcat(buf, "|");
488                                         get_inet_rec_type(ipc,
489                                                         &buf[strlen(buf)]);
490                                         recs[num_recs-1] = strdup(buf);
491                                 }
492                                 modified = 1;
493                                 break;
494                         case 'd':
495                                 i = intprompt("Delete which one",
496                                         1, 1, num_recs) - 1;
497                                 free(recs[i]);
498                                 --num_recs;
499                                 for (j=i; j<num_recs; ++j)
500                                         recs[j] = recs[j+1];
501                                 modified = 1;
502                                 break;
503                         case 's':
504                                 r = 1;
505                                 for (i = 0; i < num_recs; i++)
506                                         r += 1 + strlen(recs[i]);
507                                 resp = (char *)calloc(1, r);
508                                 if (!resp) {
509                                         err_printf("Can't save config - out of memory!\n");
510                                         logoff(ipc, 1);
511                                 }
512                                 if (num_recs) for (i = 0; i < num_recs; i++) {
513                                         strcat(resp, recs[i]);
514                                         strcat(resp, "\n");
515                                 }
516                                 r = CtdlIPCSetSystemConfigByType(ipc, INTERNETCFG, resp, buf);
517                                 if (r / 100 != 4) {
518                                         err_printf("%s\n", buf);
519                                 } else {
520                                         scr_printf("Wrote %d records.\n", num_recs);
521                                         modified = 0;
522                                 }
523                 free(resp);
524                                 break;
525                         case 'q':
526                                 quitting = !modified || boolprompt(
527                                         "Quit without saving", 0);
528                                 break;
529                         default:
530                                 badkey = 1;
531                 }
532         } while (!quitting);
533
534         if (recs != NULL) {
535                 for (i=0; i<num_recs; ++i) free(recs[i]);
536                 free(recs);
537         }
538 }
539
540
541
542 /*
543  * Edit network configuration for room sharing, mailing lists, etc.
544  */
545 void network_config_management(CtdlIPC *ipc, char *entrytype, char *comment)
546 {
547         char filename[PATH_MAX];
548         char changefile[PATH_MAX];
549         int e_ex_code;
550         pid_t editor_pid;
551         int cksum;
552         int b, i, tokens;
553         char buf[1024];
554         char instr[1024];
555         char addr[1024];
556         FILE *tempfp;
557         FILE *changefp;
558         char *listing = NULL;
559         int r;
560
561         if (IsEmptyStr(editor_paths[0])) {
562                 scr_printf("You must have an external editor configured in"
563                         " order to use this function.\n");
564                 return;
565         }
566
567         CtdlMakeTempFileName(filename, sizeof filename);
568         CtdlMakeTempFileName(changefile, sizeof changefile);
569
570         tempfp = fopen(filename, "w");
571         if (tempfp == NULL) {
572                 err_printf("Cannot open %s: %s\n", filename, strerror(errno));
573                 return;
574         }
575
576         fprintf(tempfp, "# Configuration for room: %s\n", room_name);
577         fprintf(tempfp, "# %s\n", comment);
578         fprintf(tempfp, "# Specify one per line.\n"
579                         "\n\n");
580
581         r = CtdlIPCGetRoomNetworkConfig(ipc, &listing, buf);
582         if (r / 100 == 1) {
583                 while(listing && !IsEmptyStr(listing)) {
584                         extract_token(buf, listing, 0, '\n', sizeof buf);
585                         remove_token(listing, 0, '\n');
586                         extract_token(instr, buf, 0, '|', sizeof instr);
587                         if (!strcasecmp(instr, entrytype)) {
588                                 tokens = num_tokens(buf, '|');
589                                 for (i=1; i<tokens; ++i) {
590                                         extract_token(addr, buf, i, '|', sizeof addr);
591                                         fprintf(tempfp, "%s", addr);
592                                         if (i < (tokens-1)) {
593                                                 fprintf(tempfp, "|");
594                                         }
595                                 }
596                                 fprintf(tempfp, "\n");
597                         }
598                 }
599         }
600         if (listing) {
601                 free(listing);
602                 listing = NULL;
603         }
604         fclose(tempfp);
605
606         e_ex_code = 1;  /* start with a failed exit code */
607         screen_reset();
608         stty_ctdl(SB_RESTORE);
609         editor_pid = fork();
610         cksum = file_checksum(filename);
611         if (editor_pid == 0) {
612                 chmod(filename, 0600);
613                 putenv("WINDOW_TITLE=Network configuration");
614                 execlp(editor_paths[0], editor_paths[0], filename, NULL);
615                 exit(1);
616         }
617         if (editor_pid > 0) {
618                 do {
619                         e_ex_code = 0;
620                         b = ka_wait(&e_ex_code);
621                 } while ((b != editor_pid) && (b >= 0));
622         editor_pid = (-1);
623         stty_ctdl(0);
624         screen_set();
625         }
626
627         if (file_checksum(filename) == cksum) {
628                 err_printf("*** No changes to save.\n");
629                 e_ex_code = 1;
630         }
631
632         if (e_ex_code == 0) {           /* Save changes */
633                 changefp = fopen(changefile, "w");
634
635                 /* Load all netconfig entries that are *not* of the type we are editing */
636                 r = CtdlIPCGetRoomNetworkConfig(ipc, &listing, buf);
637                 if (r / 100 == 1) {
638                         while(listing && !IsEmptyStr(listing)) {
639                                 extract_token(buf, listing, 0, '\n', sizeof buf);
640                                 remove_token(listing, 0, '\n');
641                                 extract_token(instr, buf, 0, '|', sizeof instr);
642                                 if (strcasecmp(instr, entrytype)) {
643                                         fprintf(changefp, "%s\n", buf);
644                                 }
645                         }
646                 }
647                 if (listing) {
648                         free(listing);
649                         listing = NULL;
650                 }
651
652                 /* ...and merge that with the data we just edited */
653                 tempfp = fopen(filename, "r");
654                 while (fgets(buf, sizeof buf, tempfp) != NULL) {
655                         for (i=0; i<strlen(buf); ++i) {
656                                 if (buf[i] == '#') buf[i] = 0;
657                         }
658                         striplt(buf);
659                         if (!IsEmptyStr(buf)) {
660                                 fprintf(changefp, "%s|%s\n", entrytype, buf);
661                         }
662                 }
663                 fclose(tempfp);
664                 fclose(changefp);
665
666                 /* now write it to the server... */
667                 changefp = fopen(changefile, "r");
668                 if (changefp != NULL) {
669                         listing = load_message_from_file(changefp);
670                         if (listing) {
671                                 r = CtdlIPCSetRoomNetworkConfig(ipc, listing, buf);
672                                 free(listing);
673                                 listing = NULL;
674                         }
675                         fclose(changefp);
676                 }
677         }
678
679         unlink(filename);               /* Delete the temporary files */
680         unlink(changefile);
681 }
682
683
684 /*
685  * IGnet node configuration
686  */
687 void do_ignet_configuration(CtdlIPC *ipc) {
688         char buf[SIZ];
689         int num_recs = 0;
690         char **recs = NULL;
691         char ch;
692         int badkey;
693         int i, j;
694         int quitting = 0;
695         int modified = 0;
696         char *listing = NULL;
697         int r;
698
699         r = CtdlIPCGetSystemConfigByType(ipc, IGNETCFG, &listing, buf);
700         if (r / 100 == 1) while (*listing && !IsEmptyStr(listing)) {
701                 extract_token(buf, listing, 0, '\n', sizeof buf);
702                 remove_token(listing, 0, '\n');
703
704                 ++num_recs;
705                 if (num_recs == 1) recs = malloc(sizeof(char *));
706                 else recs = realloc(recs, (sizeof(char *)) * num_recs);
707                 recs[num_recs-1] = malloc(SIZ);
708                 strcpy(recs[num_recs-1], buf);
709         }
710         if (listing) free(listing);
711
712         do {
713                 scr_printf("\n");
714                 color(BRIGHT_WHITE);
715                 scr_printf(     "### "
716                         "   Node          "
717                         "  Secret           "
718                         "          Host or IP             "
719                         "Port#\n");
720                 color(DIM_WHITE);
721                 scr_printf(     "--- "
722                         "---------------- "
723                         "------------------ "
724                         "-------------------------------- "
725                         "-----\n");
726                 for (i=0; i<num_recs; ++i) {
727                 color(DIM_WHITE);
728                 scr_printf("%3d ", i+1);
729                 extract_token(buf, recs[i], 0, '|', sizeof buf);
730                 color(BRIGHT_CYAN);
731                 scr_printf("%-16s ", buf);
732                 extract_token(buf, recs[i], 1, '|', sizeof buf);
733                 color(BRIGHT_MAGENTA);
734                 scr_printf("%-18s ", buf);
735                 extract_token(buf, recs[i], 2, '|', sizeof buf);
736                 color(BRIGHT_CYAN);
737                 scr_printf("%-32s ", buf);
738                 extract_token(buf, recs[i], 3, '|', sizeof buf);
739                 color(BRIGHT_MAGENTA);
740                 scr_printf("%-3s\n", buf);
741                 color(DIM_WHITE);
742                 }
743                 scr_printf("\n");
744
745                 ch = keymenu("", "<A>dd|<D>elete|<S>ave|<Q>uit");
746                 switch(ch) {
747                         case 'a':
748                                 ++num_recs;
749                                 if (num_recs == 1)
750                                         recs = malloc(sizeof(char *));
751                                 else recs = realloc(recs,
752                                         (sizeof(char *)) * num_recs);
753                                 newprompt("Enter node name    : ", buf, 16);
754                                 strcat(buf, "|");
755                                 newprompt("Enter shared secret: ",
756                                         &buf[strlen(buf)], 18);
757                                 strcat(buf, "|");
758                                 newprompt("Enter host or IP   : ",
759                                         &buf[strlen(buf)], 32);
760                                 strcat(buf, "|504");
761                                 strprompt("Enter port number  : ",
762                                         &buf[strlen(buf)-3], 5);
763                                 recs[num_recs-1] = strdup(buf);
764                                 modified = 1;
765                                 break;
766                         case 'd':
767                                 i = intprompt("Delete which one",
768                                         1, 1, num_recs) - 1;
769                                 free(recs[i]);
770                                 --num_recs;
771                                 for (j=i; j<num_recs; ++j)
772                                         recs[j] = recs[j+1];
773                                 modified = 1;
774                                 break;
775                         case 's':
776                                 r = 1;
777                                 for (i = 0; i < num_recs; ++i)
778                                         r += 1 + strlen(recs[i]);
779                                 listing = (char*) calloc(1, r);
780                                 if (!listing) {
781                                         err_printf("Can't save config - out of memory!\n");
782                                         logoff(ipc, 1);
783                                 }
784                                 if (num_recs) for (i = 0; i < num_recs; ++i) {
785                                         strcat(listing, recs[i]);
786                                         strcat(listing, "\n");
787                                 }
788                                 r = CtdlIPCSetSystemConfigByType(ipc, IGNETCFG, listing, buf);
789                                 if (r / 100 != 4) {
790                                         scr_printf("%s\n", buf);
791                                 } else {
792                                         scr_printf("Wrote %d records.\n", num_recs);
793                                         modified = 0;
794                                 }
795                 free(listing);
796                                 break;
797                         case 'q':
798                                 quitting = !modified || boolprompt(
799                                         "Quit without saving", 0);
800                                 break;
801                         default:
802                                 badkey = 1;
803                 }
804         } while (!quitting);
805
806         if (recs != NULL) {
807                 for (i=0; i<num_recs; ++i) free(recs[i]);
808                 free(recs);
809         }
810 }
811
812
813 /*
814  * Filter list configuration
815  */
816 void do_filterlist_configuration(CtdlIPC *ipc)
817 {
818         char buf[SIZ];
819         int num_recs = 0;
820         char **recs = NULL;
821         char ch;
822         int badkey;
823         int i, j;
824         int quitting = 0;
825         int modified = 0;
826         char *listing = NULL;
827         int r;
828
829         r = CtdlIPCGetSystemConfigByType(ipc, FILTERLIST, &listing, buf);
830         if (r / 100 == 1) while (*listing && !IsEmptyStr(listing)) {
831                 extract_token(buf, listing, 0, '\n', sizeof buf);
832                 remove_token(listing, 0, '\n');
833
834                 ++num_recs;
835                 if (num_recs == 1) recs = malloc(sizeof(char *));
836                 else recs = realloc(recs, (sizeof(char *)) * num_recs);
837                 recs[num_recs-1] = malloc(SIZ);
838                 strcpy(recs[num_recs-1], buf);
839         }
840         if (listing) free(listing);
841
842         do {
843                 scr_printf("\n");
844                 color(BRIGHT_WHITE);
845                 scr_printf(     "### "
846                         "         User name           "
847                         "         Room name           "
848                         "    Node name    "
849                         "\n");
850                 color(DIM_WHITE);
851                 scr_printf(     "--- "
852                         "---------------------------- "
853                         "---------------------------- "
854                         "---------------- "
855                         "\n");
856                 for (i=0; i<num_recs; ++i) {
857                 color(DIM_WHITE);
858                 scr_printf("%3d ", i+1);
859                 extract_token(buf, recs[i], 0, '|', sizeof buf);
860                 color(BRIGHT_CYAN);
861                 scr_printf("%-28s ", buf);
862                 extract_token(buf, recs[i], 1, '|', sizeof buf);
863                 color(BRIGHT_MAGENTA);
864                 scr_printf("%-28s ", buf);
865                 extract_token(buf, recs[i], 2, '|', sizeof buf);
866                 color(BRIGHT_CYAN);
867                 scr_printf("%-16s\n", buf);
868                 extract_token(buf, recs[i], 3, '|', sizeof buf);
869                 color(DIM_WHITE);
870                 }
871
872                 ch = keymenu("", "<A>dd|<D>elete|<S>ave|<Q>uit");
873                 switch(ch) {
874                         case 'a':
875                                 ++num_recs;
876                                 if (num_recs == 1)
877                                         recs = malloc(sizeof(char *));
878                                 else recs = realloc(recs,
879                                         (sizeof(char *)) * num_recs);
880                                 newprompt("Enter user name: ", buf, 28);
881                                 strcat(buf, "|");
882                                 newprompt("Enter room name: ",
883                                         &buf[strlen(buf)], 28);
884                                 strcat(buf, "|");
885                                 newprompt("Enter node name: ",
886                                         &buf[strlen(buf)], 16);
887                                 strcat(buf, "|");
888                                 recs[num_recs-1] = strdup(buf);
889                                 modified = 1;
890                                 break;
891                         case 'd':
892                                 i = intprompt("Delete which one",
893                                         1, 1, num_recs) - 1;
894                                 free(recs[i]);
895                                 --num_recs;
896                                 for (j=i; j<num_recs; ++j)
897                                         recs[j] = recs[j+1];
898                                 modified = 1;
899                                 break;
900                         case 's':
901                                 r = 1;
902                                 for (i = 0; i < num_recs; ++i)
903                                         r += 1 + strlen(recs[i]);
904                                 listing = (char*) calloc(1, r);
905                                 if (!listing) {
906                                         err_printf("Can't save config - out of memory!\n");
907                                         logoff(ipc, 1);
908                                 }
909                                 if (num_recs) for (i = 0; i < num_recs; ++i) {
910                                         strcat(listing, recs[i]);
911                                         strcat(listing, "\n");
912                                 }
913                                 r = CtdlIPCSetSystemConfigByType(ipc, FILTERLIST, listing, buf);
914                                 if (r / 100 != 4) {
915                                         scr_printf("%s\n", buf);
916                                 } else {
917                                         scr_printf("Wrote %d records.\n", num_recs);
918                                         modified = 0;
919                                 }
920                 free(listing);
921                                 break;
922                         case 'q':
923                                 quitting = !modified || boolprompt(
924                                         "Quit without saving", 0);
925                                 break;
926                         default:
927                                 badkey = 1;
928                 }
929         } while (!quitting);
930
931         if (recs != NULL) {
932                 for (i=0; i<num_recs; ++i) free(recs[i]);
933                 free(recs);
934         }
935 }
936
937
938
939
940 /*
941  * POP3 aggregation client configuration
942  */
943 void do_pop3client_configuration(CtdlIPC *ipc)
944 {
945         char buf[SIZ];
946         int num_recs = 0;
947         char **recs = NULL;
948         char ch;
949         int badkey;
950         int i, j;
951         int quitting = 0;
952         int modified = 0;
953         char *listing = NULL;
954         char *other_listing = NULL;
955         int r;
956         char instr[SIZ];
957
958         r = CtdlIPCGetRoomNetworkConfig(ipc, &listing, buf);
959         if (r / 100 == 1) {
960                 while(listing && !IsEmptyStr(listing)) {
961                         extract_token(buf, listing, 0, '\n', sizeof buf);
962                         remove_token(listing, 0, '\n');
963                         extract_token(instr, buf, 0, '|', sizeof instr);
964                         if (!strcasecmp(instr, "pop3client")) {
965
966                                 ++num_recs;
967                                 if (num_recs == 1) recs = malloc(sizeof(char *));
968                                 else recs = realloc(recs, (sizeof(char *)) * num_recs);
969                                 recs[num_recs-1] = malloc(SIZ);
970                                 strcpy(recs[num_recs-1], buf);
971
972                         }
973                 }
974         }
975         if (listing) {
976                 free(listing);
977                 listing = NULL;
978         }
979
980         do {
981                 scr_printf("\n");
982                 color(BRIGHT_WHITE);
983                 scr_printf(     "### "
984                         "      Remote POP3 host       "
985                         "         User name           "
986                         "Keep on server? "
987                         "Fetching inteval"
988                         "\n");
989                 color(DIM_WHITE);
990                 scr_printf(     "--- "
991                         "---------------------------- "
992                         "---------------------------- "
993                         "--------------- "
994                         "---------------- "
995                         "\n");
996                 for (i=0; i<num_recs; ++i) {
997                 color(DIM_WHITE);
998                 scr_printf("%3d ", i+1);
999
1000                 extract_token(buf, recs[i], 1, '|', sizeof buf);
1001                 color(BRIGHT_CYAN);
1002                 scr_printf("%-28s ", buf);
1003
1004                 extract_token(buf, recs[i], 2, '|', sizeof buf);
1005                 color(BRIGHT_MAGENTA);
1006                 scr_printf("%-28s ", buf);
1007
1008                 color(BRIGHT_CYAN);
1009                 scr_printf("%-15s ", (extract_int(recs[i], 4) ? "Yes" : "No") );
1010                 color(BRIGHT_MAGENTA);
1011                 scr_printf("%ld\n", extract_long(recs[i], 5) );
1012                 color(DIM_WHITE);
1013                 }
1014
1015                 ch = keymenu("", "<A>dd|<D>elete|<S>ave|<Q>uit");
1016                 switch(ch) {
1017                         case 'a':
1018                                 ++num_recs;
1019                                 if (num_recs == 1) {
1020                                         recs = malloc(sizeof(char *));
1021                                 }
1022                                 else {
1023                                         recs = realloc(recs, (sizeof(char *)) * num_recs);
1024                                 }
1025                                 strcpy(buf, "pop3client|");
1026                                 newprompt("Enter host name: ", &buf[strlen(buf)], 28);
1027                                 strcat(buf, "|");
1028                                 newprompt("Enter user name: ", &buf[strlen(buf)], 28);
1029                                 strcat(buf, "|");
1030                                 newprompt("Enter password : ", &buf[strlen(buf)], 16);
1031                                 strcat(buf, "|");
1032                                 scr_printf("Keep messages on server instead of deleting them? ");
1033                                 sprintf(&buf[strlen(buf)], "%d", yesno());
1034                                 strcat(buf, "|");
1035                                 newprompt("Enter interval : ", &buf[strlen(buf)], 5);
1036                                 strcat(buf, "|");
1037                                 recs[num_recs-1] = strdup(buf);
1038                                 modified = 1;
1039                                 break;
1040                         case 'd':
1041                                 i = intprompt("Delete which one",
1042                                         1, 1, num_recs) - 1;
1043                                 free(recs[i]);
1044                                 --num_recs;
1045                                 for (j=i; j<num_recs; ++j)
1046                                         recs[j] = recs[j+1];
1047                                 modified = 1;
1048                                 break;
1049                         case 's':
1050                                 r = 1;
1051                                 for (i = 0; i < num_recs; ++i) {
1052                                         r += 1 + strlen(recs[i]);
1053                                 }
1054                                 listing = (char*) calloc(1, r);
1055                                 if (!listing) {
1056                                         err_printf("Can't save config - out of memory!\n");
1057                                         logoff(ipc, 1);
1058                                 }
1059                                 if (num_recs) for (i = 0; i < num_recs; ++i) {
1060                                         strcat(listing, recs[i]);
1061                                         strcat(listing, "\n");
1062                                 }
1063
1064                                 /* Retrieve all the *other* records for merging */
1065                                 r = CtdlIPCGetRoomNetworkConfig(ipc, &other_listing, buf);
1066                                 if (r / 100 == 1) {
1067                                         for (i=0; i<num_tokens(other_listing, '\n'); ++i) {
1068                                                 extract_token(buf, other_listing, i, '\n', sizeof buf);
1069                                                 if (strncasecmp(buf, "pop3client|", 11)) {
1070                                                         listing = realloc(listing, strlen(listing) +
1071                                                                 strlen(buf) + 10);
1072                                                         strcat(listing, buf);
1073                                                         strcat(listing, "\n");
1074                                                 }
1075                                         }
1076                                 }
1077                                 free(other_listing);
1078                                 r = CtdlIPCSetRoomNetworkConfig(ipc, listing, buf);
1079                                 free(listing);
1080                                 listing = NULL;
1081
1082                                 if (r / 100 != 4) {
1083                                         scr_printf("%s\n", buf);
1084                                 } else {
1085                                         scr_printf("Wrote %d records.\n", num_recs);
1086                                         modified = 0;
1087                                 }
1088                                 quitting = 1;
1089                                 break;
1090                         case 'q':
1091                                 quitting = !modified || boolprompt(
1092                                         "Quit without saving", 0);
1093                                 break;
1094                         default:
1095                                 badkey = 1;
1096                 }
1097         } while (!quitting);
1098
1099         if (recs != NULL) {
1100                 for (i=0; i<num_recs; ++i) free(recs[i]);
1101                 free(recs);
1102         }
1103 }
1104
1105
1106
1107
1108
1109
1110 /*
1111  * RSS feed retrieval client configuration
1112  */
1113 void do_rssclient_configuration(CtdlIPC *ipc)
1114 {
1115         char buf[SIZ];
1116         int num_recs = 0;
1117         char **recs = NULL;
1118         char ch;
1119         int badkey;
1120         int i, j;
1121         int quitting = 0;
1122         int modified = 0;
1123         char *listing = NULL;
1124         char *other_listing = NULL;
1125         int r;
1126         char instr[SIZ];
1127
1128         r = CtdlIPCGetRoomNetworkConfig(ipc, &listing, buf);
1129         if (r / 100 == 1) {
1130                 while(listing && !IsEmptyStr(listing)) {
1131                         extract_token(buf, listing, 0, '\n', sizeof buf);
1132                         remove_token(listing, 0, '\n');
1133                         extract_token(instr, buf, 0, '|', sizeof instr);
1134                         if (!strcasecmp(instr, "rssclient")) {
1135
1136                                 ++num_recs;
1137                                 if (num_recs == 1) recs = malloc(sizeof(char *));
1138                                 else recs = realloc(recs, (sizeof(char *)) * num_recs);
1139                                 recs[num_recs-1] = malloc(SIZ);
1140                                 strcpy(recs[num_recs-1], buf);
1141
1142                         }
1143                 }
1144         }
1145         if (listing) {
1146                 free(listing);
1147                 listing = NULL;
1148         }
1149
1150         do {
1151                 scr_printf("\n");
1152                 color(BRIGHT_WHITE);
1153                 scr_printf("### Feed URL\n");
1154                 color(DIM_WHITE);
1155                 scr_printf("--- "
1156                         "---------------------------------------------------------------------------"
1157                         "\n");
1158                 
1159                 for (i=0; i<num_recs; ++i) {
1160                 color(DIM_WHITE);
1161                 scr_printf("%3d ", i+1);
1162
1163                 extract_token(buf, recs[i], 1, '|', sizeof buf);
1164                 color(BRIGHT_CYAN);
1165                 scr_printf("%-75s\n", buf);
1166
1167                 color(DIM_WHITE);
1168                 }
1169
1170                 ch = keymenu("", "<A>dd|<D>elete|<S>ave|<Q>uit");
1171                 switch(ch) {
1172                         case 'a':
1173                                 ++num_recs;
1174                                 if (num_recs == 1) {
1175                                         recs = malloc(sizeof(char *));
1176                                 }
1177                                 else {
1178                                         recs = realloc(recs, (sizeof(char *)) * num_recs);
1179                                 }
1180                                 strcpy(buf, "rssclient|");
1181                                 newprompt("Enter feed URL: ", &buf[strlen(buf)], 75);
1182                                 strcat(buf, "|");
1183                                 recs[num_recs-1] = strdup(buf);
1184                                 modified = 1;
1185                                 break;
1186                         case 'd':
1187                                 i = intprompt("Delete which one", 1, 1, num_recs) - 1;
1188                                 free(recs[i]);
1189                                 --num_recs;
1190                                 for (j=i; j<num_recs; ++j)
1191                                         recs[j] = recs[j+1];
1192                                 modified = 1;
1193                                 break;
1194                         case 's':
1195                                 r = 1;
1196                                 for (i = 0; i < num_recs; ++i) {
1197                                         r += 1 + strlen(recs[i]);
1198                                 }
1199                                 listing = (char*) calloc(1, r);
1200                                 if (!listing) {
1201                                         err_printf("Can't save config - out of memory!\n");
1202                                         logoff(ipc, 1);
1203                                 }
1204                                 if (num_recs) for (i = 0; i < num_recs; ++i) {
1205                                         strcat(listing, recs[i]);
1206                                         strcat(listing, "\n");
1207                                 }
1208
1209                                 /* Retrieve all the *other* records for merging */
1210                                 r = CtdlIPCGetRoomNetworkConfig(ipc, &other_listing, buf);
1211                                 if (r / 100 == 1) {
1212                                         for (i=0; i<num_tokens(other_listing, '\n'); ++i) {
1213                                                 extract_token(buf, other_listing, i, '\n', sizeof buf);
1214                                                 if (strncasecmp(buf, "rssclient|", 10)) {
1215                                                         listing = realloc(listing, strlen(listing) +
1216                                                                 strlen(buf) + 10);
1217                                                         strcat(listing, buf);
1218                                                         strcat(listing, "\n");
1219                                                 }
1220                                         }
1221                                 }
1222                                 free(other_listing);
1223                                 r = CtdlIPCSetRoomNetworkConfig(ipc, listing, buf);
1224                                 free(listing);
1225                                 listing = NULL;
1226
1227                                 if (r / 100 != 4) {
1228                                         scr_printf("%s\n", buf);
1229                                 } else {
1230                                         scr_printf("Wrote %d records.\n", num_recs);
1231                                         modified = 0;
1232                                 }
1233                                 quitting = 1;
1234                                 break;
1235                         case 'q':
1236                                 quitting = !modified || boolprompt(
1237                                         "Quit without saving", 0);
1238                                 break;
1239                         default:
1240                                 badkey = 1;
1241                 }
1242         } while (!quitting);
1243
1244         if (recs != NULL) {
1245                 for (i=0; i<num_recs; ++i) free(recs[i]);
1246                 free(recs);
1247         }
1248 }
1249
1250