]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* I dunno
[citadel.git] / citadel / sysconfig.h
index bda55ed289eed908f74e23c803eb1627ff9c75d8..cb98333238a6ddc33078132452096c3b7d73ce13 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ * $Id$
+ *
+ */
+
 /****************************************************************************/
 /*                  YOUR SYSTEM CONFIGURATION                               */
 /* Set all the values in this file appropriately BEFORE compiling any of the*/
  * editor installed, and you want to make it the default, set this to 46
  * to make it use your editor by default.
  */
-#define DEFAULT_ENTRY  4
+#define DEFAULT_ENTRY          4
 
 
+/*
+ * Logging level to use if none is specified on the command line.
+ */
+#define DEFAULT_VERBOSITY      9
+
 
 /*
  * HOUSEKEEPING_WAKEUP is the number of seconds which pass between each pass
  */
 #define HOUSEKEEPING_WAKEUP    60
 
+
 /*
- * We'll almost certainly want to do this more elegantly.  For now we are
- * creating a fixed-size pool of worker threads.
+ * NLI is the string that shows up in a <W>ho's online listing for sessions
+ * that are active, but for which no user has yet authenticated.
  */
-#define NUM_WORKER_THREADS     15
+#define NLI    "(not logged in)"
 
+/*
+ * Maximum number of floors on the system.
+ * WARNING!  *Never* change this value once your system is up; THINGS WILL DIE!
+ * Also, do not set it higher than 127.
+ */
+#define MAXFLOORS      16
 
-/*** STRUCTURE SIZE VARIABLES ***/
 
-/* You may NOT change this value once you set up your system.      */
-#define MAXFLOORS      16              /* Do not set higher than 127       */
+/*
+ * Command buffer size (do not change!)
+ */
+#define SIZ            4096
+
+/*
+ * SMTP delivery retry and give-up times
+ */
+#define        SMTP_RETRY_INTERVAL     900     /* retry sends every 15 minutes */
+#define SMTP_GIVE_UP           432000  /* give up after 5 days */
+
 
-/*** END OF STRUCTURE SIZE VARIABLES ***/
+/*
+ * The names of rooms which are automatically created by the system
+ */
+#define BASEROOM               "Lobby"
+#define MAILROOM               "Mail"
+#define AIDEROOM               "Aide"
+#define USERCONFIGROOM         "My Citadel Config"
+#define PAGELOGROOM            "Sent/Received Pages"
+#define SYSCONFIGROOM          "Local System Configuration"
+#define SMTP_SPOOLOUT_ROOM     "__CitadelSMTPspoolout__"