]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.h
* Updated some of the docs. Bumped version number to 5.80 in anticipation
[citadel.git] / citadel / citadel.h
index 5ec5d4890e073d7d967af6a3fcc439a9b1899f59..9b30987b3052442b8eae8d3779fffe1592e7f188 100644 (file)
@@ -10,7 +10,7 @@
 #include "sysconfig.h"
 #include "ipcdef.h"
 
-#define CITADEL        "Citadel/UX 5.73"       /* Text description of this software */
+#define CITADEL        "Citadel/UX 5.80"       /* Text description of this software */
 
 /*
  * REV_LEVEL is the current version number (multiplied by 100 to avoid having
@@ -19,7 +19,7 @@
  * are older than REV_MIN, none of the programs will work until the setup
  * program is run again to bring things up to date.
  */
-#define REV_LEVEL      573             /* This version */
+#define REV_LEVEL      580             /* This version */
 #define REV_MIN                570             /* Oldest compatible version */
 
 #define SERVER_TYPE 0  /* zero for stock Citadel/UX; other developers please
@@ -100,6 +100,7 @@ struct config {
        int c_smtp_port;                /* SMTP listener port (usually 25)  */
        int c_default_filter;           /* Default moderation filter level  */
        int c_aide_zap;                 /* Are Aides allowed to zap rooms?  */
+       int c_imap_port;                /* IMAP listener port (usually 143) */
 };
 
 #define NODENAME               config.c_nodename
@@ -260,3 +261,7 @@ struct floor {
 #define        INTERNETCFG     "application/x-citadel-internet-config"
 
 #define TRACE  lprintf(9, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
+
+#ifndef LONG_MAX
+#define LONG_MAX 2147483647L
+#endif