]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.h
* refuse empty passvoids against host auth
[citadel.git] / citadel / citadel.h
index 9e9b92341aef104784efea3ef6a8992a2b1c5f5c..9b2ebe98b6f7f5ae1e3b4d928408cbc863ef15f4 100644 (file)
@@ -47,13 +47,20 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      725             /* This version */
+#define REV_LEVEL      730             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
 #define EXPORT_REV_MIN 725             /* Oldest compatible export files */
+#define LIBCITADEL_MIN 104             /* Minimum required version of libcitadel */
 
 #define SERVER_TYPE 0                  /* zero for stock Citadel; other developers please
                                           obtain SERVER_TYPE codes for your implementations */
 
+#ifdef LIBCITADEL_VERSION_NUMBER
+#if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
+#error libcitadel is too old.  Please upgrade it before continuing.
+#endif
+#endif
+
 /* Various length constants */
 
 #define UGLISTLEN      100     /* you get a ungoto list of this size */
@@ -275,6 +282,7 @@ enum {
  */
 #define AUTHMODE_NATIVE                0       /* native Citadel authentication */
 #define AUTHMODE_HOST          1       /* host integrated */
+#define AUTHMODE_LDAP          2       /* external LDAP authentication */
 
 #ifdef __cplusplus
 }