X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fcitadel.h;h=e1248992a46f85599ccbb1220118f62e0feb86cd;hb=cceb9a8329c52e1476e7d8badaa252c39b6d2b19;hp=804d7fcb7a0b31e10fc6bd2df5ef1ae1ef334624;hpb=98e6473b3130199b340f8629635b57e583c25bda;p=citadel.git diff --git a/citadel/citadel.h b/citadel/citadel.h index 804d7fcb7..e1248992a 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -2,7 +2,7 @@ * $Id$ * * Main Citadel header file - * See copyright.txt for copyright information. + * See COPYING for copyright information. */ /* system customizations are in sysconfig.h */ @@ -11,15 +11,6 @@ #define CITADEL_H /* #include uncomment if using dmalloc */ -/* Build Citadel with the calendar service only if the header *and* - * library for libical are both present. - */ -#ifdef HAVE_LIBICAL -#ifdef HAVE_ICAL_H -#define CITADEL_WITH_CALENDAR_SERVICE 1 -#endif -#endif - #include "sysdep.h" #include #include "sysconfig.h" @@ -47,10 +38,10 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 730 /* This version */ +#define REV_LEVEL 760 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ -#define EXPORT_REV_MIN 725 /* Oldest compatible export files */ -#define LIBCITADEL_MIN 103 /* Minimum required version of libcitadel */ +#define EXPORT_REV_MIN 760 /* Oldest compatible export files */ +#define LIBCITADEL_MIN 744 /* Minimum required version of libcitadel */ #define SERVER_TYPE 0 /* zero for stock Citadel; other developers please obtain SERVER_TYPE codes for your implementations */ @@ -77,6 +68,7 @@ extern "C" { /* * Message expiration policy stuff */ +typedef struct ExpirePolicy ExpirePolicy; struct ExpirePolicy { /* #include "datadefinitions.h" @@ -98,6 +90,7 @@ struct ExpirePolicy { * fetches from the server. This allows the client to "march" through * relevant rooms without having to ask the server each time where to go next. */ +typedef struct march march; struct march { /* #include "datadefinitions.h" @@ -127,6 +120,7 @@ struct march { /* * User records. */ +typedef struct ctdluser ctdluser; struct ctdluser { /* User record */ /* #include "datadefinitions.h" @@ -158,6 +152,7 @@ struct ctdluser { /* User record */ /* * Room records. */ +typedef struct ctdlroom ctdlroom; struct ctdlroom { /* #include "datadefinitions.h" @@ -204,6 +199,7 @@ struct ctdlroom { /* * Floor record. The floor number is implicit in its location in the file. */ +typedef struct floor floor; struct floor { /* #include "datadefinitions.h" @@ -271,7 +267,7 @@ enum { #define FILTERLIST "application/x-citadel-filter-list" #define SIEVECONFIG "application/x-citadel-sieve-config" -#define TRACE lprintf(CTDL_DEBUG, "Checkpoint: %s, %d\n", __FILE__, __LINE__) +#define TRACE CtdlLogPrintf(CTDL_DEBUG, "Checkpoint: %s, %d\n", __FILE__, __LINE__) #ifndef LONG_MAX #define LONG_MAX 2147483647L @@ -280,8 +276,9 @@ enum { /* * Authentication modes */ -#define AUTHMODE_NATIVE 0 /* native Citadel authentication */ -#define AUTHMODE_HOST 1 /* host integrated */ +#define AUTHMODE_NATIVE 0 /* Native (self-contained or "black box") */ +#define AUTHMODE_HOST 1 /* Authenticate against the host OS user database */ +#define AUTHMODE_LDAP 2 /* External LDAP authentication (NOT IMPLEMENTED) */ #ifdef __cplusplus }