]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysconfig.h
* make the crypto functions use precalculated files instead of relative ones
[citadel.git] / citadel / sysconfig.h
index bdb78502d763496e71a9d3a1677034342ef0fd49..1189c3709653971b8baaa5e18a2d7614554e1739 100644 (file)
 #define USERTASKSROOM          "Tasks"
 #define USERCONTACTSROOM       "Contacts"
 #define USERNOTESROOM          "Notes"
+#define USERTRASHROOM          "Trash"
 #define PAGELOGROOM            "Sent/Received Pages"
 #define SYSCONFIGROOM          "Local System Configuration"
 #define SMTP_SPOOLOUT_ROOM     "__CitadelSMTPspoolout__"
 
+/*
+ * Where we keep messages containing the vCards that source our directory.  It
+ * makes no sense to change this, because you'd have to change it on every
+ * system on the network.  That would be stupid.
+ */
+#define ADDRESS_BOOK_ROOM      "Global Address Book"
+
+
 /*
  * How long (in seconds) to retain message entries in the use table
  */
 /*
  * Pathnames for cryptographic goodness
  */
+/*
 #define        CTDL_CRYPTO_DIR         "./keys"
 #define CTDL_KEY_PATH          CTDL_CRYPTO_DIR "/citadel.key"
 #define CTDL_CSR_PATH          CTDL_CRYPTO_DIR "/citadel.csr"
 #define CTDL_CER_PATH          CTDL_CRYPTO_DIR "/citadel.cer"
+*/
+#define THREADSTACKSIZE                1048576
+
+/*
+ * How many messages may the full text indexer scan before flushing its
+ * tables to disk?
+ */
+#define FT_MAX_CACHE           2500
+#