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