]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Wrote enough of the SMTP sender to get Patriot drooling over it, but not
[citadel.git] / citadel / sysconfig.h
index ff875ee394f2ab4cc52e42c349618b0f62b4c91b..198f7e557144b00ffd2536dd8a8d17742de1fcee 100644 (file)
  */
 #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.
- */
-#define NUM_WORKER_THREADS     15
+
+#define NLI    "(not logged in)"
 
 
 /*** STRUCTURE SIZE VARIABLES ***/
 #define MAXFLOORS      16              /* Do not set higher than 127       */
 
 /*** END OF STRUCTURE SIZE VARIABLES ***/
+
+
+/* 
+ * These define what port to listen on for various services.
+ * FIX ... 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__"