]> 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 496e45471207f0ba4eec22417978af72a8ba532f..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.24"
+#define CITADEL        "Citadel 6.45"
 
 /*
  * REV_LEVEL is the current version number (multiplied by 100 to avoid having
@@ -44,9 +45,9 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      624             /* This version */
+#define REV_LEVEL      645             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
-#define EXPORT_REV_MIN 623             /* Oldest compatible export files */
+#define EXPORT_REV_MIN 626             /* Oldest compatible export files */
 
 #define SERVER_TYPE 0  /* zero for stock Citadel; other developers please
                           obtain SERVER_TYPE codes for your implementations */
@@ -135,6 +136,10 @@ struct config {
        char c_ldap_base_dn[256];       /* LDAP base DN                     */
        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)*/
 };
 
 /*
@@ -320,6 +325,7 @@ enum {
 #define VIEW_ADDRESSBOOK       2       /* Address book view */
 #define VIEW_CALENDAR          3       /* Calendar view */
 #define VIEW_TASKS             4       /* Tasks view */
+#define VIEW_NOTES             5       /* Notes view */
 
 #ifdef __cplusplus
 }