X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fcitadel.h;h=fe4654d60d2997fdb2a90ec5889f8e4c34f4de0f;hb=325ec75a28c593fc183eb3447089ed18b24b9026;hp=6289547c8ff595bff6933d6376313430235b8285;hpb=f59e2e6772d87d323d065f09919ec0876bf2e0be;p=citadel.git diff --git a/citadel/citadel.h b/citadel/citadel.h index 6289547c8..fe4654d60 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -35,10 +35,10 @@ extern "C" { */ #define CITADEL PACKAGE_STRING -#define REV_LEVEL 929 // This version +#define REV_LEVEL 930 // This version #define REV_MIN 591 // Oldest compatible database #define EXPORT_REV_MIN 760 // Oldest compatible export files -#define LIBCITADEL_MIN 922 // Minimum required version of libcitadel +#define LIBCITADEL_MIN 926 // 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 @@ -97,7 +97,7 @@ struct march { */ typedef struct ctdluser ctdluser; struct ctdluser { // User record - int version; // Cit vers. which created this rec + int version; // Citadel version which created this record uid_t uid; // Associate with a unix account? char password[32]; // password unsigned flags; // See US_ flags below @@ -111,6 +111,8 @@ struct ctdluser { // User record long msgnum_bio; // msgnum of user's profile (bio) long msgnum_pic; // msgnum of user's avatar (photo) char emailaddrs[512]; // Internet email addresses + long msgnum_inboxrules; // msgnum of user's inbox filtering rules + long lastproc_inboxrules; // msgnum of last message filtered };