]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* FIXME
[citadel.git] / citadel / sysconfig.h
index 10796413d7195ac68062fb01712219133ca99eca..7efd4eaed704fa3c27e944e8b4bb3d80d60a4d92 100644 (file)
 #define HOUSEKEEPING_WAKEUP    60
 
 
+#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 ***/
+
+
+/* 
+ * These define what port to listen on for various services.
+ * FIXME ... put this in a programmable config somewhere
+ */
+#define POP3_PORT              110
+#define SMTP_PORT              25
+
+
+/*
+ * 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 SYSCONFIGROOM          "Local System Configuration"
+#define SMTP_SPOOLOUT_ROOM     "__CitadelSMTPspoolout__"