]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.h
* Bumped the internal version number to 6.45 in preparation for
[citadel.git] / citadel / citadel.h
index 44fa989abfd0ba65e0b69764f63815552af6c74a..abdc600cb0f38a2b59938f48fb133adec2f4f757 100644 (file)
@@ -9,6 +9,7 @@
 
 #ifndef CITADEL_H
 #define CITADEL_H
+/* #include <dmalloc.h> uncomment if using dmalloc */
 
 /* Build Citadel with the calendar service only if the header *and*
  * library for libical are both present.
@@ -32,7 +33,7 @@ extern "C" {
 /*
  * Text description of this software
  */
-#define CITADEL        "Citadel 6.28"
+#define CITADEL        "Citadel 6.45"
 
 /*
  * REV_LEVEL is the current version number (multiplied by 100 to avoid having
@@ -44,7 +45,7 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      628             /* This version */
+#define REV_LEVEL      645             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
 #define EXPORT_REV_MIN 626             /* Oldest compatible export files */
 
@@ -136,6 +137,9 @@ struct config {
        char c_ldap_bind_dn[256];       /* LDAP bind DN                     */
        char c_ldap_bind_pw[256];       /* LDAP bind password               */
        int c_msa_port;                 /* SMTP MSA listener port (usu 587) */
+       int c_imaps_port;               /* IMAPS listener port (usually 993)*/
+       int c_pop3s_port;               /* POP3S listener port (usually 995)*/
+       int c_smtps_port;               /* SMTPS listener port (usually 465)*/
 };
 
 /*