]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* Added support for protocols over Unix domain sockets.
[citadel.git] / citadel / sysconfig.h
index 200fc27ea71cfb1bfbd2dd98e6aa1ac15921123a..70e2162d8b3339f4beee2d76e480ac6c694abc45 100644 (file)
  * 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
 
 
-/*** STRUCTURE SIZE VARIABLES ***/
+/*
+ * 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)"
 
-/* You may NOT change this value once you set up your system.      */
-#define MAXFLOORS      16              /* Do not set higher than 127       */
+/*
+ * 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.
+ * FIXME ... put this in a programmable config somewhere
+ */
+#define POP3_PORT              110
+#define SMTP_PORT              25
 
-/*** END OF STRUCTURE SIZE VARIABLES ***/
+/*
+ * SMTP delivery retry and give-up times
+ * FIXME ... put this in a programmable config somewhere
+ */
+#define        SMTP_RETRY_INTERVAL     900     /* retry sends every 15 minutes */
+#define SMTP_GIVE_UP           259200  /* give up after 3 days */
+
+
+/* 
+ * Pathname template to use for Unix domain sockets
+ */
+#define USOCKPATH              "/tmp/citadel%04x"
+
+
+/*
+ * 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__"