]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* I dunno
[citadel.git] / citadel / sysconfig.h
index 70f6d01d0c94d076d0294bb838f9237c02958598..cb98333238a6ddc33078132452096c3b7d73ce13 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ * $Id$
+ *
+ */
+
 /****************************************************************************/
 /*                  YOUR SYSTEM CONFIGURATION                               */
 /* Set all the values in this file appropriately BEFORE compiling any of the*/
 #define MAXFLOORS      16
 
 
-/* 
- * These define what port to listen on for various services.
- * If you don't want to run these services on the network, you can specify
- * a negative port number to create Unix domain sockets.  This will allow,
- * for example, the "citmail" utility to connect to the Citadel SMTP server
- * to import email, without having to actually run Citadel SMTP on the network.
- *
- * FIXME ... put this in a programmable config somewhere
+/*
+ * Command buffer size (do not change!)
  */
-#define POP3_PORT              110
-#define SMTP_PORT              25
+#define SIZ            4096
 
 /*
  * 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"
+#define SMTP_GIVE_UP           432000  /* give up after 5 days */
 
 
 /*
 #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__"