f543e8d4382acd29c845b5adb82a3aaf8ca5b9cc
[citadel.git] / citadel / control.c
1 /*
2  * This module handles states which are global to the entire server.
3  *
4  * Copyright (c) 1987-2012 by the citadel.org team
5  *
6  *  This program is open source software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License version 3.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  */
14
15 #include <stdio.h>
16 #include <sys/file.h>
17 #include <libcitadel.h>
18
19 #include "ctdl_module.h"
20 #include "config.h"
21 #include "citserver.h"
22 #include "user_ops.h"
23
24 struct CitControl CitControl;
25 extern struct config config;
26 FILE *control_fp = NULL;
27 long control_highest_user = 0;
28
29
30 /*
31  * lock_control  -  acquire a lock on the control record file.
32  *                  This keeps multiple citservers from running concurrently.
33  */
34 void lock_control(void)
35 {
36 #if defined(LOCK_EX) && defined(LOCK_NB)
37         if (flock(fileno(control_fp), (LOCK_EX | LOCK_NB))) {
38                 syslog(LOG_EMERG, "citserver: unable to lock %s.\n", file_citadel_control);
39                 syslog(LOG_EMERG, "Is another citserver already running?\n");
40                 exit(CTDLEXIT_CONTROL);
41         }
42 #endif
43 }
44
45 /*
46  * callback to get highest room number when rebuilding control file
47  */
48 void control_find_highest(struct ctdlroom *qrbuf, void *data)
49 {
50         struct ctdlroom room;
51         struct cdbdata *cdbfr;
52         long *msglist;
53         int num_msgs=0;
54         int c;
55         int room_fixed = 0;
56         int message_fixed = 0;
57         
58         if (qrbuf->QRnumber > CitControl.MMnextroom)
59         {
60                 CitControl.MMnextroom = qrbuf->QRnumber;
61                 room_fixed = 1;
62         }
63                 
64         CtdlGetRoom (&room, qrbuf->QRname);
65         
66         /* Load the message list */
67         cdbfr = cdb_fetch(CDB_MSGLISTS, &room.QRnumber, sizeof(long));
68         if (cdbfr != NULL) {
69                 msglist = (long *) cdbfr->ptr;
70                 num_msgs = cdbfr->len / sizeof(long);
71         } else {
72                 return; /* No messages at all?  No further action. */
73         }
74
75         if (num_msgs>0)
76         {
77                 for (c=0; c<num_msgs; c++)
78                 {
79                         if (msglist[c] > CitControl.MMhighest)
80                         {
81                                 CitControl.MMhighest = msglist[c];
82                                 message_fixed = 1;
83                         }
84                 }
85         }
86         cdb_free(cdbfr);
87         if (room_fixed)
88                 syslog(LOG_INFO, "Control record checking....Fixed room counter\n");
89         if (message_fixed)
90                 syslog(LOG_INFO, "Control record checking....Fixed message count\n");
91         return;
92 }
93
94
95 /*
96  * Callback to get highest user number.
97  */
98  
99 void control_find_user (struct ctdluser *EachUser, void *out_data)
100 {
101         int user_fixed = 0;
102         
103         if (EachUser->usernum > CitControl.MMnextuser)
104         {
105                 CitControl.MMnextuser = EachUser->usernum;
106                 user_fixed = 1;
107         }
108         if(user_fixed)
109                 syslog(LOG_INFO, "Control record checking....Fixed user count\n");
110 }
111
112
113 /*
114  * get_control  -  read the control record into memory.
115  */
116 void get_control(void)
117 {
118         static int already_have_control = 0;
119         int rv = 0;
120
121         /*
122          * If we already have the control record in memory, there's no point
123          * in reading it from disk again.
124          */
125         if (already_have_control) return;
126
127         /* Zero it out.  If the control record on disk is missing or short,
128          * the system functions with all control record fields initialized
129          * to zero.
130          */
131         memset(&CitControl, 0, sizeof(struct CitControl));
132         if (control_fp == NULL) {
133                 control_fp = fopen(file_citadel_control, "rb+");
134                 if (control_fp != NULL) {
135                         lock_control();
136                         rv = fchown(fileno(control_fp), config.c_ctdluid, -1);
137                         if (rv == -1)
138                                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
139                                        file_citadel_control, strerror(errno));
140                         rv = fchmod(fileno(control_fp), S_IRUSR|S_IWUSR);
141                         if (rv == -1)
142                                 syslog(LOG_EMERG, "Failed to adjust accessrights of: %s [%s]\n", 
143                                        file_citadel_control, strerror(errno));
144                 }
145         }
146         if (control_fp == NULL) {
147                 control_fp = fopen(file_citadel_control, "wb+");
148                 if (control_fp != NULL) {
149                         lock_control();
150                         memset(&CitControl, 0, sizeof(struct CitControl));
151
152                         rv = fchown(fileno(control_fp), config.c_ctdluid, -1);
153                         if (rv == -1)
154                                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
155                                        file_citadel_control, strerror(errno));
156
157                         rv = fchmod(fileno(control_fp), S_IRUSR|S_IWUSR);
158                         if (rv == -1)
159                                 syslog(LOG_EMERG, "Failed to adjust accessrights of: %s [%s]\n", 
160                                        file_citadel_control, strerror(errno));
161                         rv = fwrite(&CitControl, sizeof(struct CitControl), 1, control_fp);
162                         if (rv == -1)
163                                 syslog(LOG_EMERG, "Failed to write: %s [%s]\n", 
164                                        file_citadel_control, strerror(errno));
165                         rewind(control_fp);
166                 }
167         }
168         if (control_fp == NULL) {
169                 syslog(LOG_ALERT, "ERROR opening %s: %s\n", file_citadel_control, strerror(errno));
170                 return;
171         }
172
173         rewind(control_fp);
174         rv = fread(&CitControl, sizeof(struct CitControl), 1, control_fp);
175         if (rv == -1)
176                 syslog(LOG_EMERG, "Failed to read Controlfile: %s [%s]\n", 
177                        file_citadel_control, strerror(errno));
178         already_have_control = 1;
179         rv = chown(file_citadel_control, config.c_ctdluid, (-1));
180         if (rv == -1)
181                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
182                        file_citadel_control, strerror(errno));  
183 }
184
185 /*
186  * put_control  -  write the control record to disk.
187  */
188 void put_control(void)
189 {
190         int rv = 0;
191
192         if (control_fp != NULL) {
193                 rewind(control_fp);
194                 rv = fwrite(&CitControl, sizeof(struct CitControl), 1, control_fp);
195                 if (rv == -1)
196                         syslog(LOG_EMERG, "Failed to write: %s [%s]\n", 
197                                file_citadel_control, strerror(errno));
198                 fflush(control_fp);
199         }
200 }
201
202
203 /*
204  * check_control   -  check the control record has sensible values for message, user and room numbers
205  */
206 void check_control(void)
207 {
208         syslog(LOG_INFO, "Checking/re-building control record\n");
209         get_control();
210         // Find highest room number and message number.
211         CtdlForEachRoom(control_find_highest, NULL);
212         ForEachUser(control_find_user, NULL);
213         put_control();
214 }
215
216
217 /*
218  * release_control - close our fd on exit
219  */
220 void release_control(void)
221 {
222         if (control_fp != NULL) {
223                 fclose(control_fp);
224         }
225         control_fp = NULL;
226 }
227
228 /*
229  * get_new_message_number()  -  Obtain a new, unique ID to be used for a message.
230  */
231 long get_new_message_number(void)
232 {
233         long retval = 0L;
234         begin_critical_section(S_CONTROL);
235         get_control();
236         retval = ++CitControl.MMhighest;
237         put_control();
238         end_critical_section(S_CONTROL);
239         return(retval);
240 }
241
242
243 /*
244  * CtdlGetCurrentMessageNumber()  -  Obtain the current highest message number in the system
245  * This provides a quick way to initialise a variable that might be used to indicate
246  * messages that should not be processed. EG. a new Sieve script will use this
247  * to record determine that messages older than this should not be processed.
248  */
249 long CtdlGetCurrentMessageNumber(void)
250 {
251         long retval = 0L;
252         begin_critical_section(S_CONTROL);
253         get_control();
254         retval = CitControl.MMhighest;
255         end_critical_section(S_CONTROL);
256         return(retval);
257 }
258
259
260 /*
261  * get_new_user_number()  -  Obtain a new, unique ID to be used for a user.
262  */
263 long get_new_user_number(void)
264 {
265         long retval = 0L;
266         begin_critical_section(S_CONTROL);
267         get_control();
268         retval = ++CitControl.MMnextuser;
269         put_control();
270         end_critical_section(S_CONTROL);
271         return(retval);
272 }
273
274
275
276 /*
277  * get_new_room_number()  -  Obtain a new, unique ID to be used for a room.
278  */
279 long get_new_room_number(void)
280 {
281         long retval = 0L;
282         begin_critical_section(S_CONTROL);
283         get_control();
284         retval = ++CitControl.MMnextroom;
285         put_control();
286         end_critical_section(S_CONTROL);
287         return(retval);
288 }
289
290
291
292 /* 
293  * Get or set global configuration options
294  *
295  * IF YOU ADD OR CHANGE FIELDS HERE, YOU *MUST* DOCUMENT YOUR CHANGES AT:
296  * http://www.citadel.org/doku.php?id=documentation:applicationprotocol
297  *
298  */
299 void cmd_conf(char *argbuf)
300 {
301         char cmd[16];
302         char buf[256];
303         int a;
304         char *confptr;
305         char confname[128];
306
307         if (CtdlAccessCheck(ac_aide)) return;
308
309         extract_token(cmd, argbuf, 0, '|', sizeof cmd);
310         if (!strcasecmp(cmd, "GET")) {
311                 cprintf("%d Configuration...\n", LISTING_FOLLOWS);
312                 cprintf("%s\n", config.c_nodename);
313                 cprintf("%s\n", config.c_fqdn);
314                 cprintf("%s\n", config.c_humannode);
315                 cprintf("%s\n", config.c_phonenum);
316                 cprintf("%d\n", config.c_creataide);
317                 cprintf("%d\n", config.c_sleeping);
318                 cprintf("%d\n", config.c_initax);
319                 cprintf("%d\n", config.c_regiscall);
320                 cprintf("%d\n", config.c_twitdetect);
321                 cprintf("%s\n", config.c_twitroom);
322                 cprintf("%s\n", config.c_moreprompt);
323                 cprintf("%d\n", config.c_restrict);
324                 cprintf("%s\n", config.c_site_location);
325                 cprintf("%s\n", config.c_sysadm);
326                 cprintf("%d\n", config.c_maxsessions);
327                 cprintf("xxx\n"); /* placeholder -- field no longer in use */
328                 cprintf("%d\n", config.c_userpurge);
329                 cprintf("%d\n", config.c_roompurge);
330                 cprintf("%s\n", config.c_logpages);
331                 cprintf("%d\n", config.c_createax);
332                 cprintf("%ld\n", config.c_maxmsglen);
333                 cprintf("%d\n", config.c_min_workers);
334                 cprintf("%d\n", config.c_max_workers);
335                 cprintf("%d\n", config.c_pop3_port);
336                 cprintf("%d\n", config.c_smtp_port);
337                 cprintf("%d\n", config.c_rfc822_strict_from);
338                 cprintf("%d\n", config.c_aide_zap);
339                 cprintf("%d\n", config.c_imap_port);
340                 cprintf("%ld\n", config.c_net_freq);
341                 cprintf("%d\n", config.c_disable_newu);
342                 cprintf("1\n"); /* niu */
343                 cprintf("%d\n", config.c_purge_hour);
344 #ifdef HAVE_LDAP
345                 cprintf("%s\n", config.c_ldap_host);
346                 cprintf("%d\n", config.c_ldap_port);
347                 cprintf("%s\n", config.c_ldap_base_dn);
348                 cprintf("%s\n", config.c_ldap_bind_dn);
349                 cprintf("%s\n", config.c_ldap_bind_pw);
350 #else
351                 cprintf("\n");
352                 cprintf("0\n");
353                 cprintf("\n");
354                 cprintf("\n");
355                 cprintf("\n");
356 #endif
357                 cprintf("%s\n", config.c_ip_addr);
358                 cprintf("%d\n", config.c_msa_port);
359                 cprintf("%d\n", config.c_imaps_port);
360                 cprintf("%d\n", config.c_pop3s_port);
361                 cprintf("%d\n", config.c_smtps_port);
362                 cprintf("%d\n", config.c_enable_fulltext);
363                 cprintf("%d\n", config.c_auto_cull);
364                 cprintf("1\n");
365                 cprintf("%d\n", config.c_allow_spoofing);
366                 cprintf("%d\n", config.c_journal_email);
367                 cprintf("%d\n", config.c_journal_pubmsgs);
368                 cprintf("%s\n", config.c_journal_dest);
369                 cprintf("%s\n", config.c_default_cal_zone);
370                 cprintf("%d\n", config.c_pftcpdict_port);
371                 cprintf("%d\n", config.c_managesieve_port);
372                 cprintf("%d\n", config.c_auth_mode);
373                 cprintf("%s\n", config.c_funambol_host);
374                 cprintf("%d\n", config.c_funambol_port);
375                 cprintf("%s\n", config.c_funambol_source);
376                 cprintf("%s\n", config.c_funambol_auth);
377                 cprintf("%d\n", config.c_rbl_at_greeting);
378                 cprintf("%s\n", config.c_master_user);
379                 cprintf("%s\n", config.c_master_pass);
380                 cprintf("%s\n", config.c_pager_program);
381                 cprintf("%d\n", config.c_imap_keep_from);
382                 cprintf("%d\n", config.c_xmpp_c2s_port);
383                 cprintf("%d\n", config.c_xmpp_s2s_port);
384                 cprintf("%ld\n", config.c_pop3_fetch);
385                 cprintf("%ld\n", config.c_pop3_fastest);
386                 cprintf("%d\n", config.c_spam_flag_only);
387                 cprintf("%d\n", config.c_guest_logins);
388                 cprintf("%d\n", config.c_port_number);
389                 cprintf("%d\n", config.c_ctdluid);
390                 cprintf("000\n");
391         }
392
393         else if (!strcasecmp(cmd, "SET")) {
394                 unbuffer_output();
395                 cprintf("%d Send configuration...\n", SEND_LISTING);
396                 a = 0;
397                 while (client_getln(buf, sizeof buf) >= 0 && strcmp(buf, "000")) {
398                         switch (a) {
399                         case 0:
400                                 configlen.c_nodename = safestrncpy(config.c_nodename, buf,
401                                                                    sizeof config.c_nodename);
402                                 break;
403                         case 1:
404                                 configlen.c_fqdn = safestrncpy(config.c_fqdn, buf,
405                                                                sizeof config.c_fqdn);
406                                 break;
407                         case 2:
408                                 configlen.c_humannode = safestrncpy(config.c_humannode, buf,
409                                                                     sizeof config.c_humannode);
410                                 break;
411                         case 3:
412                                 configlen.c_phonenum = safestrncpy(config.c_phonenum, buf,
413                                                                    sizeof config.c_phonenum);
414                                 break;
415                         case 4:
416                                 config.c_creataide = atoi(buf);
417                                 break;
418                         case 5:
419                                 config.c_sleeping = atoi(buf);
420                                 break;
421                         case 6:
422                                 config.c_initax = atoi(buf);
423                                 if (config.c_initax < 1)
424                                         config.c_initax = 1;
425                                 if (config.c_initax > 6)
426                                         config.c_initax = 6;
427                                 break;
428                         case 7:
429                                 config.c_regiscall = atoi(buf);
430                                 if (config.c_regiscall != 0)
431                                         config.c_regiscall = 1;
432                                 break;
433                         case 8:
434                                 config.c_twitdetect = atoi(buf);
435                                 if (config.c_twitdetect != 0)
436                                         config.c_twitdetect = 1;
437                                 break;
438                         case 9:
439                                 configlen.c_twitroom = safestrncpy(config.c_twitroom, buf,
440                                                                    sizeof config.c_twitroom);
441                                 break;
442                         case 10:
443                                 configlen.c_moreprompt = safestrncpy(config.c_moreprompt, buf,
444                                                                      sizeof config.c_moreprompt);
445                                 break;
446                         case 11:
447                                 config.c_restrict = atoi(buf);
448                                 if (config.c_restrict != 0)
449                                         config.c_restrict = 1;
450                                 break;
451                         case 12:
452                                 configlen.c_site_location = safestrncpy(
453                                         config.c_site_location, buf,
454                                         sizeof config.c_site_location);
455                                 break;
456                         case 13:
457                                 configlen.c_sysadm = safestrncpy(config.c_sysadm, buf,
458                                                                  sizeof config.c_sysadm);
459                                 break;
460                         case 14:
461                                 config.c_maxsessions = atoi(buf);
462                                 if (config.c_maxsessions < 0)
463                                         config.c_maxsessions = 0;
464                                 break;
465                         case 15:
466                                 /* placeholder -- field no longer in use */
467                                 break;
468                         case 16:
469                                 config.c_userpurge = atoi(buf);
470                                 break;
471                         case 17:
472                                 config.c_roompurge = atoi(buf);
473                                 break;
474                         case 18:
475                                 configlen.c_logpages = safestrncpy(config.c_logpages, buf,
476                                                                    sizeof config.c_logpages);
477                                 break;
478                         case 19:
479                                 config.c_createax = atoi(buf);
480                                 if (config.c_createax < 1)
481                                         config.c_createax = 1;
482                                 if (config.c_createax > 6)
483                                         config.c_createax = 6;
484                                 break;
485                         case 20:
486                                 if (atoi(buf) >= 8192)
487                                         config.c_maxmsglen = atoi(buf);
488                                 break;
489                         case 21:
490                                 if (atoi(buf) >= 2)
491                                         config.c_min_workers = atoi(buf);
492                         case 22:
493                                 if (atoi(buf) >= config.c_min_workers)
494                                         config.c_max_workers = atoi(buf);
495                         case 23:
496                                 config.c_pop3_port = atoi(buf);
497                                 break;
498                         case 24:
499                                 config.c_smtp_port = atoi(buf);
500                                 break;
501                         case 25:
502                                 config.c_rfc822_strict_from = atoi(buf);
503                                 break;
504                         case 26:
505                                 config.c_aide_zap = atoi(buf);
506                                 if (config.c_aide_zap != 0)
507                                         config.c_aide_zap = 1;
508                                 break;
509                         case 27:
510                                 config.c_imap_port = atoi(buf);
511                                 break;
512                         case 28:
513                                 config.c_net_freq = atol(buf);
514                                 break;
515                         case 29:
516                                 config.c_disable_newu = atoi(buf);
517                                 if (config.c_disable_newu != 0)
518                                         config.c_disable_newu = 1;
519                                 break;
520                         case 30:
521                                 /* niu */
522                                 break;
523                         case 31:
524                                 if ((config.c_purge_hour >= 0)
525                                     && (config.c_purge_hour <= 23)) {
526                                         config.c_purge_hour = atoi(buf);
527                                 }
528                                 break;
529 #ifdef HAVE_LDAP
530                         case 32:
531                                 configlen.c_ldap_host = safestrncpy(config.c_ldap_host, buf,
532                                                                     sizeof config.c_ldap_host);
533                                 break;
534                         case 33:
535                                 config.c_ldap_port = atoi(buf);
536                                 break;
537                         case 34:
538                                 configlen.c_ldap_base_dn = safestrncpy(config.c_ldap_base_dn, buf,
539                                                                        sizeof config.c_ldap_base_dn);
540                                 break;
541                         case 35:
542                                 configlen.c_ldap_bind_dn = safestrncpy(config.c_ldap_bind_dn, buf,
543                                                                        sizeof config.c_ldap_bind_dn);
544                                 break;
545                         case 36:
546                                 configlen.c_ldap_bind_pw = safestrncpy(config.c_ldap_bind_pw, buf,
547                                                                        sizeof config.c_ldap_bind_pw);
548                                 break;
549 #endif
550                         case 37:
551                                 configlen.c_ip_addr = safestrncpy(config.c_ip_addr, buf,
552                                                                   sizeof config.c_ip_addr);
553                         case 38:
554                                 config.c_msa_port = atoi(buf);
555                                 break;
556                         case 39:
557                                 config.c_imaps_port = atoi(buf);
558                                 break;
559                         case 40:
560                                 config.c_pop3s_port = atoi(buf);
561                                 break;
562                         case 41:
563                                 config.c_smtps_port = atoi(buf);
564                                 break;
565                         case 42:
566                                 config.c_enable_fulltext = atoi(buf);
567                                 break;
568                         case 43:
569                                 config.c_auto_cull = atoi(buf);
570                                 break;
571                         case 44:
572                                 /* niu */
573                                 break;
574                         case 45:
575                                 config.c_allow_spoofing = atoi(buf);
576                                 break;
577                         case 46:
578                                 config.c_journal_email = atoi(buf);
579                                 break;
580                         case 47:
581                                 config.c_journal_pubmsgs = atoi(buf);
582                                 break;
583                         case 48:
584                                 configlen.c_journal_dest = safestrncpy(config.c_journal_dest, buf,
585                                                                        sizeof config.c_journal_dest);
586                         case 49:
587                                 configlen.c_default_cal_zone = safestrncpy(
588                                         config.c_default_cal_zone, buf,
589                                         sizeof config.c_default_cal_zone);
590                                 break;
591                         case 50:
592                                 config.c_pftcpdict_port = atoi(buf);
593                                 break;
594                         case 51:
595                                 config.c_managesieve_port = atoi(buf);
596                                 break;
597                         case 52:
598                                 config.c_auth_mode = atoi(buf);
599                         case 53:
600                                 configlen.c_funambol_host = safestrncpy(
601                                         config.c_funambol_host, buf,
602                                         sizeof config.c_funambol_host);
603                                 break;
604                         case 54:
605                                 config.c_funambol_port = atoi(buf);
606                                 break;
607                         case 55:
608                                 configlen.c_funambol_source = safestrncpy(
609                                         config.c_funambol_source, buf, 
610                                         sizeof config.c_funambol_source);
611                                 break;
612                         case 56:
613                                 configlen.c_funambol_auth = safestrncpy(
614                                         config.c_funambol_auth, buf,
615                                         sizeof config.c_funambol_auth);
616                                 break;
617                         case 57:
618                                 config.c_rbl_at_greeting = atoi(buf);
619                                 break;
620                         case 58:
621                                 configlen.c_master_user = safestrncpy(
622                                         config.c_master_user,
623                                         buf, sizeof config.c_master_user);
624                                 break;
625                         case 59:
626                                 configlen.c_master_pass = safestrncpy(
627                                         config.c_master_pass, buf, sizeof config.c_master_pass);
628                                 break;
629                         case 60:
630                                 configlen.c_pager_program = safestrncpy(
631                                         config.c_pager_program, buf, sizeof config.c_pager_program);
632                                 break;
633                         case 61:
634                                 config.c_imap_keep_from = atoi(buf);
635                                 break;
636                         case 62:
637                                 config.c_xmpp_c2s_port = atoi(buf);
638                                 break;
639                         case 63:
640                                 config.c_xmpp_s2s_port = atoi(buf);
641                                 break;
642                         case 64:
643                                 config.c_pop3_fetch = atol(buf);
644                                 break;
645                         case 65:
646                                 config.c_pop3_fastest = atol(buf);
647                                 break;
648                         case 66:
649                                 config.c_spam_flag_only = atoi(buf);
650                                 break;
651                         case 67:
652                                 config.c_guest_logins = atoi(buf);
653                                 break;
654                         case 68:
655                                 config.c_port_number = atoi(buf);
656                                 break;
657                         case 69:
658                                 config.c_ctdluid = atoi(buf);
659                                 break;
660                         }
661                         ++a;
662                 }
663                 put_config();
664                 snprintf(buf, sizeof buf,
665                         "The global system configuration has been edited by %s.\n",
666                          (CC->logged_in ? CC->curr_user : "an administrator")
667                 );
668                 CtdlAideMessage(buf,"Citadel Configuration Manager Message");
669
670                 if (!IsEmptyStr(config.c_logpages))
671                         CtdlCreateRoom(config.c_logpages, 3, "", 0, 1, 1, VIEW_BBS);
672
673                 /* If full text indexing has been disabled, invalidate the
674                  * index so it doesn't try to use it later.
675                  */
676                 if (config.c_enable_fulltext == 0) {
677                         CitControl.fulltext_wordbreaker = 0;
678                         put_control();
679                 }
680         }
681
682         else if (!strcasecmp(cmd, "GETSYS")) {
683                 extract_token(confname, argbuf, 1, '|', sizeof confname);
684                 confptr = CtdlGetSysConfig(confname);
685                 if (confptr != NULL) {
686                         long len; 
687
688                         len = strlen(confptr);
689                         cprintf("%d %s\n", LISTING_FOLLOWS, confname);
690                         client_write(confptr, len);
691                         if ((len > 0) && (confptr[len - 1] != 10))
692                                 client_write("\n", 1);
693                         cprintf("000\n");
694                         free(confptr);
695                 } else {
696                         cprintf("%d No such configuration.\n",
697                                 ERROR + ILLEGAL_VALUE);
698                 }
699         }
700
701         else if (!strcasecmp(cmd, "PUTSYS")) {
702                 extract_token(confname, argbuf, 1, '|', sizeof confname);
703                 unbuffer_output();
704                 cprintf("%d %s\n", SEND_LISTING, confname);
705                 confptr = CtdlReadMessageBody(HKEY("000"), config.c_maxmsglen, NULL, 0, 0);
706                 CtdlPutSysConfig(confname, confptr);
707                 free(confptr);
708         }
709
710         else {
711                 cprintf("%d Illegal option(s) specified.\n",
712                         ERROR + ILLEGAL_VALUE);
713         }
714 }
715
716 typedef struct __ConfType {
717         ConstStr Name;
718         long Type;
719 }ConfType;
720
721 ConfType CfgNames[] = {
722         { {HKEY("localhost") },    0},
723         { {HKEY("directory") },    0},
724         { {HKEY("smarthost") },    2},
725         { {HKEY("fallbackhost") }, 2},
726         { {HKEY("rbl") },          3},
727         { {HKEY("spamassassin") }, 3},
728         { {HKEY("masqdomain") },   1},
729         { {HKEY("clamav") },       3},
730         { {HKEY("notify") },       3},
731         { {NULL, 0}, 0}
732 };
733
734 HashList *CfgNameHash = NULL;
735 void cmd_gvdn(char *argbuf)
736 {
737         const ConfType *pCfg;
738         char *confptr;
739         long min = atol(argbuf);
740         const char *Pos = NULL;
741         const char *PPos = NULL;
742         const char *HKey;
743         long HKLen;
744         StrBuf *Line;
745         StrBuf *Config;
746         StrBuf *Cfg;
747         StrBuf *CfgToken;
748         HashList *List;
749         HashPos *It;
750         void *vptr;
751         
752         List = NewHash(1, NULL);
753         Cfg = NewStrBufPlain(config.c_fqdn, -1);
754         Put(List, SKEY(Cfg), Cfg, HFreeStrBuf);
755         Cfg = NULL;
756
757         confptr = CtdlGetSysConfig(INTERNETCFG);
758         Config = NewStrBufPlain(confptr, -1);
759         free(confptr);
760
761         Line = NewStrBufPlain(NULL, StrLength(Config));
762         CfgToken = NewStrBufPlain(NULL, StrLength(Config));
763         while (StrBufSipLine(Line, Config, &Pos))
764         {
765                 if (Cfg == NULL)
766                         Cfg = NewStrBufPlain(NULL, StrLength(Line));
767                 PPos = NULL;
768                 StrBufExtract_NextToken(Cfg, Line, &PPos, '|');
769                 StrBufExtract_NextToken(CfgToken, Line, &PPos, '|');
770                 if (GetHash(CfgNameHash, SKEY(CfgToken), &vptr) &&
771                     (vptr != NULL))
772                 {
773                         pCfg = (ConfType *) vptr;
774                         if (pCfg->Type <= min)
775                         {
776                                 Put(List, SKEY(Cfg), Cfg, HFreeStrBuf);
777                                 Cfg = NULL;
778                         }
779                 }
780         }
781
782         cprintf("%d Valid Domains\n", LISTING_FOLLOWS);
783         It = GetNewHashPos(List, 1);
784         while (GetNextHashPos(List, It, &HKLen, &HKey, &vptr))
785         {
786                 cputbuf(vptr);
787                 cprintf("\n");
788         }
789         cprintf("000\n");
790
791         DeleteHashPos(&It);
792         DeleteHash(&List);
793         FreeStrBuf(&Cfg);
794         FreeStrBuf(&Line);
795         FreeStrBuf(&CfgToken);
796         FreeStrBuf(&Config);
797 }
798
799 /*****************************************************************************/
800 /*                      MODULE INITIALIZATION STUFF                          */
801 /*****************************************************************************/
802
803 void control_cleanup(void)
804 {
805         DeleteHash(&CfgNameHash);
806 }
807 CTDL_MODULE_INIT(control)
808 {
809         if (!threading) {
810                 int i;
811
812                 CfgNameHash = NewHash(1, NULL);
813                 for (i = 0; CfgNames[i].Name.Key != NULL; i++)
814                         Put(CfgNameHash, CKEY(CfgNames[i].Name), &CfgNames[i], reference_free_handler);
815
816                 CtdlRegisterProtoHook(cmd_gvdn, "GVDN", "get valid domain names");
817                 CtdlRegisterProtoHook(cmd_conf, "CONF", "get/set system configuration");
818                 CtdlRegisterCleanupHook(control_cleanup);
819
820         }
821         /* return our id for the Log */
822         return "control";
823 }