]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Coded up some more of the SMTP-sender (still not done)
[citadel.git] / citadel / sysconfig.h
index a32afa728e648a34fddb88998ad96ed56ff05edf..3ce4597f87e514ffb5fca948d6931d33a2f09ebd 100644 (file)
 #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              1110
+#define SMTP_PORT              2525
+
+
+/*
+ * 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__"