a9a4eaba47a1ef0848d10b8c7138014d11f074b5
[citadel.git] / citadel / msgbase.h
1
2 #ifndef MSGBASE_H
3 #define MSGBASE_H
4
5 #include "event_client.h"
6 enum {
7         MSGS_ALL,
8         MSGS_OLD,
9         MSGS_NEW,
10         MSGS_FIRST,
11         MSGS_LAST,
12         MSGS_GT,
13         MSGS_EQ,
14         MSGS_SEARCH,
15         MSGS_LT
16 };
17
18 enum {
19         MSG_HDRS_BRIEF = 0,
20         MSG_HDRS_ALL = 1,
21         MSG_HDRS_EUID = 4
22 };
23
24 /*
25  * Possible return codes from CtdlOutputMsg()
26  */
27 enum {
28         om_ok,
29         om_not_logged_in,
30         om_no_such_msg,
31         om_mime_error,
32         om_access_denied
33 };
34
35 /*
36  * Values of "headers_only" when calling message output routines
37  */
38 #define HEADERS_ALL     0       /* Headers and body */
39 #define HEADERS_ONLY    1       /* Headers only */
40 #define HEADERS_NONE    2       /* Body only */
41 #define HEADERS_FAST    3       /* Headers only with no MIME info */
42
43
44 struct ma_info {
45         int is_ma;              /* Set to 1 if we are using this stuff */
46         int freeze;             /* Freeze the replacement chain because we're
47                                  * digging through a subsection */
48         int did_print;          /* One alternative has been displayed */
49         char chosen_part[128];  /* Which part of a m/a did we choose? */
50         int chosen_pref;        /* Chosen part preference level (lower is better) */
51         int use_fo_hooks;       /* Use fixed output hooks */
52         int dont_decode;        /* should we call the decoder or not? */
53 };
54
55
56 struct repl {                   /* Info for replication checking */
57         char exclusive_id[SIZ];
58         time_t highest;
59 };
60
61
62
63 /*
64  * This is a list of "harvested" email addresses that we might want to
65  * stick into someone's address book.  But we defer this operaiton so
66  * it can be done asynchronously.
67  */
68 struct addresses_to_be_filed {
69         struct addresses_to_be_filed *next;
70         char *roomname;
71         char *collected_addresses;
72 };
73
74 extern struct addresses_to_be_filed *atbf;
75
76 void memfmout (char *mptr, const char *nl);
77 void output_mime_parts(char *);
78 long send_message (struct CtdlMessage *);
79 void loadtroom (void);
80 long CtdlSubmitMsg(struct CtdlMessage *, recptypes *, const char *, int);
81
82 void quickie_message(const char *from,
83                      const char *fromaddr,
84                      const char *to,
85                      char *room,
86                      const char *text, 
87                      int format_type,
88                      const char *subject);
89
90 void flood_protect_quickie_message(const char *from,
91                                    const char *fromaddr,
92                                    const char *to,
93                                    char *room,
94                                    const char *text, 
95                                    int format_type,
96                                    const char *subject,
97                                    int nCriterions,
98                                    const char **CritStr,
99                                    long *CritStrLen,
100                                    long ccid,
101                                    long ioid,
102                                    time_t NOW);
103
104 void GetMetaData(struct MetaData *, long);
105 void PutMetaData(struct MetaData *);
106 void AdjRefCount(long, int);
107 void TDAP_AdjRefCount(long, int);
108 int TDAP_ProcessAdjRefCountQueue(void);
109 void simple_listing(long, void *);
110 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template);
111 typedef void (*ForEachMsgCallback)(long MsgNumber, void *UserData);
112 int CtdlForEachMessage(int mode,
113                         long ref,
114                         char *searchstring,
115                         char *content_type,
116                         struct CtdlMessage *compare,
117                         ForEachMsgCallback CallBack,
118                         void *userdata);
119 int CtdlDeleteMessages(char *, long *, int, char *);
120 void CtdlWriteObject(char *req_room,                    /* Room to stuff it in */
121                         char *content_type,             /* MIME type of this object */
122                         char *raw_message,              /* Data to be written */
123                         off_t raw_length,               /* Size of raw_message */
124                         struct ctdluser *is_mailbox,    /* Mailbox room? */
125                         int is_binary,                  /* Is encoding necessary? */
126                         int is_unique,                  /* Del others of this type? */
127                         unsigned int flags              /* Internal save flags */
128 );
129 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body);
130 struct CtdlMessage * CM_Duplicate
131                        (struct CtdlMessage *OrgMsg);
132 int  CM_IsEmpty        (struct CtdlMessage *Msg, eMsgField which);
133 void CM_SetField       (struct CtdlMessage *Msg, eMsgField which, const char *buf, long length);
134 void CM_SetFieldLONG   (struct CtdlMessage *Msg, eMsgField which, long lvalue);
135 void CM_CopyField      (struct CtdlMessage *Msg, eMsgField WhichToPutTo, eMsgField WhichtToCopy);
136 void CM_CutFieldAt     (struct CtdlMessage *Msg, eMsgField WhichToCut, long maxlen);
137 void CM_FlushField     (struct CtdlMessage *Msg, eMsgField which);
138 void CM_Flush          (struct CtdlMessage *Msg);
139 void CM_SetAsField     (struct CtdlMessage *Msg, eMsgField which, char **buf, long length);
140 void CM_SetAsFieldSB   (struct CtdlMessage *Msg, eMsgField which, StrBuf **buf);
141 void CM_GetAsField     (struct CtdlMessage *Msg, eMsgField which, char **ret, long *retlen);
142 void CM_PrependToField (struct CtdlMessage *Msg, eMsgField which, const char *buf, long length);
143
144 void CM_Free           (struct CtdlMessage *msg);
145 void CM_FreeContents   (struct CtdlMessage *msg);
146 int  CM_IsValidMsg     (struct CtdlMessage *msg);
147
148 #define CM_KEY(Message, Which) Message->cm_fields[Which], Message->cm_lengths[Which]
149
150 void CtdlSerializeMessage(struct ser_ret *, struct CtdlMessage *);
151 void ReplicationChecks(struct CtdlMessage *);
152 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
153                         int do_repl_check, struct CtdlMessage *supplied_msg, int suppress_refcount_adj);
154 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int do_repl_check, struct CtdlMessage *msg);
155 char *CtdlReadMessageBody(char *terminator, long tlen, size_t maxlen, StrBuf *exist, int crlf, int *sock);
156 StrBuf *CtdlReadMessageBodyBuf(char *terminator,        /* token signalling EOT */
157                                long tlen,
158                                size_t maxlen,           /* maximum message length */
159                                StrBuf *exist,           /* if non-null, append to it;
160                                                            exist is ALWAYS freed  */
161                                int crlf,                /* CRLF newlines instead of LF */
162                                int *sock                /* socket handle or 0 for this session's client socket */
163         );
164
165 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
166                   int mode,             /* how would you like that message? */
167                   int headers_only,     /* eschew the message body? */
168                   int do_proto,         /* do Citadel protocol responses? */
169                   int crlf,             /* 0=LF, 1=CRLF */
170                   char *section,                /* output a message/rfc822 section */
171                   int flags,            /* should the bessage be exported clean? */
172                   char **Author,        /* if you want to know the author of the message... */
173                   char **Address        /* if you want to know the sender address of the message... */
174 );
175
176 /* Flags which may be passed to CtdlOutputMsg() and CtdlOutputPreLoadedMsg() */
177 #define QP_EADDR        (1<<0)          /* quoted-printable encode email addresses */
178 #define CRLF            (1<<1)
179 #define ESC_DOT         (1<<2)          /* output a line containing only "." as ".." instead */
180 #define SUPPRESS_ENV_TO (1<<3)          /* suppress Envelope-to: header (warning: destructive!) */
181
182 int CtdlOutputPreLoadedMsg(struct CtdlMessage *,
183                            int mode,            /* how would you like that message? */
184                            int headers_only,    /* eschew the message body? */
185                            int do_proto,        /* do Citadel protocol responses? */
186                            int crlf,            /* 0=LF, 1=CRLF */
187                            int flags            /* should the bessage be exported clean? */
188 );
189
190
191 /* values for which_set */
192 enum {
193         ctdlsetseen_seen,
194         ctdlsetseen_answered
195 };
196 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
197                  int target_setting, int which_set,
198                 struct ctdluser *which_user, struct ctdlroom *which_room);
199 void CtdlGetSeen(char *buf, int which_set);
200
201
202 struct CtdlMessage *CtdlMakeMessage(
203         struct ctdluser *author,        /* author's user structure */
204         char *recipient,                /* NULL if it's not mail */
205         char *recp_cc,                  /* NULL if it's not mail */
206         char *room,                     /* room where it's going */
207         int type,                       /* see MES_ types in header file */
208         int format_type,                /* variformat, plain text, MIME... */
209         char *fake_name,                /* who we're masquerading as */
210         char *my_email,                 /* which of my email addresses to use (empty is ok) */
211         char *subject,                  /* Subject (optional) */
212         char *supplied_euid,            /* ...or NULL if this is irrelevant */
213         char *preformatted_text,        /* ...or NULL to read text from client */
214         char *references                /* Thread references */
215 );
216
217 struct CtdlMessage *CtdlMakeMessageLen(
218         struct ctdluser *author,        /* author's user structure */
219         char *recipient,                /* NULL if it's not mail */
220         long rcplen,
221         char *recp_cc,                  /* NULL if it's not mail */
222         long cclen,
223         char *room,                     /* room where it's going */
224         long roomlen,
225         int type,                       /* see MES_ types in header file */
226         int format_type,                /* variformat, plain text, MIME... */
227         char *fake_name,                /* who we're masquerading as */
228         long fnlen,
229         char *my_email,                 /* which of my email addresses to use (empty is ok) */
230         long myelen,
231         char *subject,                  /* Subject (optional) */
232         long subjlen,
233         char *supplied_euid,            /* ...or NULL if this is irrelevant */
234         long euidlen,
235         char *preformatted_text,        /* ...or NULL to read text from client */
236         long textlen,
237         char *references,               /* Thread references */
238         long reflen);
239
240 /* 
241  * loading messages async via an FD: 
242  * add IO->ReadMsg = NewAsyncMsg(...)
243  * and then call CtdlReadMessageBodyAsync() from your linreader handler.
244  */
245
246 ReadAsyncMsg *NewAsyncMsg(const char *terminator,       /* token signalling EOT */
247                           long tlen,
248                           size_t expectlen,             /* if we expect a message, how long should it be? */
249                           size_t maxlen,                /* maximum message length */
250                           StrBuf *exist,                /* if non-null, append to it;
251                                                            exist is ALWAYS freed  */
252                           long eLen,                    /* length of exist */
253                           int crlf                      /* CRLF newlines instead of LF */
254         );
255
256 eReadState CtdlReadMessageBodyAsync(AsyncIO *IO);
257 void DeleteAsyncMsg(ReadAsyncMsg **Msg);
258
259 extern int MessageDebugEnabled;
260
261 #define MSGDBGLOG(LEVEL) if ((LEVEL != LOG_DEBUG) || (MessageDebugEnabled != 0))
262 #define CCCID CCC->cs_pid
263 #define MSG_syslog(LEVEL, FORMAT, ...)                  \
264         MSGDBGLOG(LEVEL) syslog(LEVEL,                  \
265                                 "CC[%d]MSG" FORMAT,     \
266                                 CCCID, __VA_ARGS__)
267
268 #define MSGM_syslog(LEVEL, FORMAT)                      \
269         MSGDBGLOG(LEVEL) syslog(LEVEL,                  \
270                                 "CC[%d]MSG" FORMAT,     \
271                                 CCCID)
272
273
274
275 #endif /* MSGBASE_H */