]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Updated some of the docs. Bumped version number to 5.80 in anticipation
[citadel.git] / citadel / sysconfig.h
index dd445ce9d67b966160b3707e7143d6e26b7d1f4b..378a3b639e0962e1e8d92b8ea3c8e8871b9beb3a 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ * $Id$
+ *
+ */
+
 /****************************************************************************/
 /*                  YOUR SYSTEM CONFIGURATION                               */
 /* Set all the values in this file appropriately BEFORE compiling any of the*/
 #define MAXFLOORS      16
 
 
+/*
+ * Standard buffer size for string datatypes.  DO NOT CHANGE!  Not only does
+ * there exist a minimum buffer size for certain protocols (such as IMAP), but
+ * fixed-length buffers are now stored in some of the data structures on disk,
+ * so if you change the buffer size you'll fux0r your database.
+ */
+#define SIZ            4096
+
 /*
  * SMTP delivery retry and give-up times
  */
 #define MAILROOM               "Mail"
 #define AIDEROOM               "Aide"
 #define USERCONFIGROOM         "My Citadel Config"
+#define USERCALENDARROOM       "My Calendar"
 #define PAGELOGROOM            "Sent/Received Pages"
 #define SYSCONFIGROOM          "Local System Configuration"
 #define SMTP_SPOOLOUT_ROOM     "__CitadelSMTPspoolout__"