X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserver.h;h=ef7b4aa84e0eb3fadfe8912159039df030b04d8b;hb=fe70bc8314205d9c32da7c73e5bf1c58ee1a67f6;hp=58b7f97706e91f076105d73189bff6e70fbf1ddc;hpb=7f9d699a7f73ac27bcbde2075a8758744036fb98;p=citadel.git diff --git a/citadel/server.h b/citadel/server.h index 58b7f9770..ef7b4aa84 100644 --- a/citadel/server.h +++ b/citadel/server.h @@ -44,7 +44,7 @@ struct CtdlMessage { /* Data structure returned by validate_recipients() */ -typedef struct __recptypes { +struct recptypes { int recptypes_magic; int num_local; int num_internet; @@ -60,7 +60,7 @@ typedef struct __recptypes { char *bounce_to; char *envelope_from; char *sending_room; -} recptypes; +}; #define RECPTYPES_MAGIC 0xfeeb @@ -72,9 +72,7 @@ typedef struct __recptypes { * restart. */ #define CTDLEXIT_CONFIG 101 // Could not read system configuration -#define CTDLEXIT_CONTROL 102 // Could not acquire lock #define CTDLEXIT_HOME 103 // Citadel home directory not found -#define CTDLEXIT_OOD 104 // Out Of Date config - rerun setup #define CTDLEXIT_DB 105 // Unable to initialize database #define CTDLEXIT_LIBCITADEL 106 // Incorrect version of libcitadel #define CTDL_EXIT_UNSUP_AUTH 107 // Unsupported auth mode configured @@ -149,8 +147,6 @@ enum { S_FLOORCACHE, S_ATBF, S_JOURNAL_QUEUE, - S_RPLIST, - S_SIEVELIST, S_CHKPWD, S_LOG, S_NETSPOOL, @@ -304,6 +300,10 @@ struct UseTable { time_t ut_timestamp; }; + +/* + * These one-byte field headers are found in the Citadel message store. + */ typedef enum _MsgField { eAuthor = 'A', eBig_message = 'B',