]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Set up a private "Sent/Received Pages" room for each user
[citadel.git] / citadel / sysconfig.h
index 3ce4597f87e514ffb5fca948d6931d33a2f09ebd..dd445ce9d67b966160b3707e7143d6e26b7d1f4b 100644 (file)
 #define HOUSEKEEPING_WAKEUP    60
 
 
+/*
+ * 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 NLI    "(not logged in)"
 
-
-/*** STRUCTURE SIZE VARIABLES ***/
-
-/* You may NOT change this value once you set up your system.      */
-#define MAXFLOORS      16              /* Do not set higher than 127       */
-
-/*** END OF STRUCTURE SIZE VARIABLES ***/
+/*
+ * 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
 
 
-/* 
- * These define what port to listen on for various services.
- * FIX ... put this in a programmable config somewhere
+/*
+ * SMTP delivery retry and give-up times
  */
-#define POP3_PORT              1110
-#define SMTP_PORT              2525
+#define        SMTP_RETRY_INTERVAL     900     /* retry sends every 15 minutes */
+#define SMTP_GIVE_UP           432000  /* give up after 5 days */
 
 
 /*
@@ -94,5 +96,6 @@
 #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__"