* Use syslog-compatible logging levels in lprintf(); the loglevel chosen
[citadel.git] / citadel / sysconfig.h
1 /*
2  * $Id$
3  *
4  */
5
6 /****************************************************************************/
7 /*                  YOUR SYSTEM CONFIGURATION                               */
8 /* Set all the values in this file appropriately BEFORE compiling any of the*/
9 /* C programs. If you are upgrading from an older version of Citadel/UX, it */
10 /* is vitally important that the #defines which are labelled "structure size*/
11 /* variables" are EXACTLY the same as they were in your old system,         */
12 /* otherwise your files will be munged beyond repair.                       */
13 /****************************************************************************/
14
15 /* $Id$ */
16
17 /*
18  * NOTE: this file is for client software tuning, not customization.  For
19  * making changes to the behavior of the client, you want to edit citadel.rc,
20  * not this file.
21  */
22
23 /*
24  * If you want to keep a transcript of all multiuser chats that go across
25  * your system, define CHATLOG to the filename to be saved to.  Otherwise,
26  * set CHATLOG to "/dev/null".
27  */
28 #define CHATLOG         "/dev/null"
29
30 /* 
31  * S_KEEPALIVE is a watchdog timer.  It is used to send "keep
32  * alive" messages to the server to prevent the server from assuming the
33  * client is dead and terminating the session.  30 seconds is the recommended
34  * value; I can't think of any good reason to change it.
35  */
36 #define S_KEEPALIVE     30
37
38 /*
39  * Logging level to use if none is specified on the command line.
40  * Note that this will suppress messages before they even get to syslog().
41  */
42 #define DEFAULT_VERBOSITY       7
43
44
45
46 /*
47  * NLI is the string that shows up in a <W>ho's online listing for sessions
48  * that are active, but for which no user has yet authenticated.
49  */
50 #define NLI     "(not logged in)"
51
52 /*
53  * Maximum number of floors on the system.
54  * WARNING!  *Never* change this value once your system is up; THINGS WILL DIE!
55  * Also, do not set it higher than 127.
56  */
57 #define MAXFLOORS       16
58
59 /*
60  * Standard buffer size for string datatypes.  DO NOT CHANGE!  Not only does
61  * there exist a minimum buffer size for certain protocols (such as IMAP), but
62  * fixed-length buffers are now stored in some of the data structures on disk,
63  * so if you change the buffer size you'll fux0r your database.
64  */
65 #define SIZ             4096
66
67 /*
68  * SMTP delivery retry rules (all values are in seconds)
69  *
70  * If delivery of a message via SMTP is unsuccessful, Citadel will try again
71  * after SMTP_RETRY_INTERVAL seconds.  This interval will double after each
72  * unsuccessful delivery, up to a maximum of SMTP_RETRY_MAX seconds.  If no
73  * successful delivery has been accomplished after SMTP_GIVE_UP seconds, the
74  * message will be returned to its sender.
75  */
76 #define SMTP_RETRY_INTERVAL     900     /* 15 minutes */
77 #define SMTP_RETRY_MAX          43200   /* 12 hours */
78 #define SMTP_GIVE_UP            432000  /* 5 days */
79
80 /*
81  * Who bounced messages appear to be from
82  */
83 #define BOUNCESOURCE            "Citadel Mail Delivery Subsystem"
84
85 /*
86  * This variable defines the amount of network spool data that may be carried
87  * in one server transfer command.  For some reason, some networks get hung
88  * up on larger packet sizes.  We don't know why.  In any case, never set the
89  * packet size higher than 4096 or your server sessions will crash.
90  */
91 #define IGNET_PACKET_SIZE       4000
92
93 /*
94  * The names of rooms which are automatically created by the system
95  */
96 #define BASEROOM                "Lobby"
97 #define MAILROOM                "Mail"
98 #define SENTITEMS               "Sent Items"
99 #define AIDEROOM                "Aide"
100 #define USERCONFIGROOM          "My Citadel Config"
101 #define USERCALENDARROOM        "Calendar"
102 #define USERTASKSROOM           "Tasks"
103 #define USERCONTACTSROOM        "Contacts"
104 #define USERNOTESROOM           "Notes"
105 #define PAGELOGROOM             "Sent/Received Pages"
106 #define SYSCONFIGROOM           "Local System Configuration"
107 #define SMTP_SPOOLOUT_ROOM      "__CitadelSMTPspoolout__"
108
109 /*
110  * How long (in seconds) to retain message entries in the use table
111  */
112 #define USETABLE_RETAIN         604800L         /* 7 days */
113
114 /*
115  * Pathnames for cryptographic goodness
116  */
117 #define CTDL_CRYPTO_DIR         BBSDIR "/keys"
118 #define CTDL_KEY_PATH           CTDL_CRYPTO_DIR "/citadel.key"
119 #define CTDL_CSR_PATH           CTDL_CRYPTO_DIR "/citadel.csr"
120 #define CTDL_CER_PATH           CTDL_CRYPTO_DIR "/citadel.cer"