058c902e583d231f399fb6b094bd7b61b940f99d
[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 void CtdlSerializeMessage(struct ser_ret *, struct CtdlMessage *);
149 void ReplicationChecks(struct CtdlMessage *);
150 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
151                         int do_repl_check, struct CtdlMessage *supplied_msg, int suppress_refcount_adj);
152 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int do_repl_check, struct CtdlMessage *msg);
153 char *CtdlReadMessageBody(char *terminator, long tlen, size_t maxlen, StrBuf *exist, int crlf, int *sock);
154 StrBuf *CtdlReadMessageBodyBuf(char *terminator,        /* token signalling EOT */
155                                long tlen,
156                                size_t maxlen,           /* maximum message length */
157                                StrBuf *exist,           /* if non-null, append to it;
158                                                            exist is ALWAYS freed  */
159                                int crlf,                /* CRLF newlines instead of LF */
160                                int *sock                /* socket handle or 0 for this session's client socket */
161         );
162
163 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
164                   int mode,             /* how would you like that message? */
165                   int headers_only,     /* eschew the message body? */
166                   int do_proto,         /* do Citadel protocol responses? */
167                   int crlf,             /* 0=LF, 1=CRLF */
168                   char *section,                /* output a message/rfc822 section */
169                   int flags,            /* should the bessage be exported clean? */
170                   char **Author,        /* if you want to know the author of the message... */
171                   char **Address        /* if you want to know the sender address of the message... */
172 );
173
174 /* Flags which may be passed to CtdlOutputMsg() and CtdlOutputPreLoadedMsg() */
175 #define QP_EADDR        (1<<0)          /* quoted-printable encode email addresses */
176 #define CRLF            (1<<1)
177 #define ESC_DOT         (1<<2)          /* output a line containing only "." as ".." instead */
178 #define SUPPRESS_ENV_TO (1<<3)          /* suppress Envelope-to: header (warning: destructive!) */
179
180 int CtdlOutputPreLoadedMsg(struct CtdlMessage *,
181                            int mode,            /* how would you like that message? */
182                            int headers_only,    /* eschew the message body? */
183                            int do_proto,        /* do Citadel protocol responses? */
184                            int crlf,            /* 0=LF, 1=CRLF */
185                            int flags            /* should the bessage be exported clean? */
186 );
187
188
189 /* values for which_set */
190 enum {
191         ctdlsetseen_seen,
192         ctdlsetseen_answered
193 };
194 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
195                  int target_setting, int which_set,
196                 struct ctdluser *which_user, struct ctdlroom *which_room);
197 void CtdlGetSeen(char *buf, int which_set);
198
199
200 struct CtdlMessage *CtdlMakeMessage(
201         struct ctdluser *author,        /* author's user structure */
202         char *recipient,                /* NULL if it's not mail */
203         char *recp_cc,                  /* NULL if it's not mail */
204         char *room,                     /* room where it's going */
205         int type,                       /* see MES_ types in header file */
206         int format_type,                /* variformat, plain text, MIME... */
207         char *fake_name,                /* who we're masquerading as */
208         char *my_email,                 /* which of my email addresses to use (empty is ok) */
209         char *subject,                  /* Subject (optional) */
210         char *supplied_euid,            /* ...or NULL if this is irrelevant */
211         char *preformatted_text,        /* ...or NULL to read text from client */
212         char *references                /* Thread references */
213 );
214
215 struct CtdlMessage *CtdlMakeMessageLen(
216         struct ctdluser *author,        /* author's user structure */
217         char *recipient,                /* NULL if it's not mail */
218         long rcplen,
219         char *recp_cc,                  /* NULL if it's not mail */
220         long cclen,
221         char *room,                     /* room where it's going */
222         long roomlen,
223         int type,                       /* see MES_ types in header file */
224         int format_type,                /* variformat, plain text, MIME... */
225         char *fake_name,                /* who we're masquerading as */
226         long fnlen,
227         char *my_email,                 /* which of my email addresses to use (empty is ok) */
228         long myelen,
229         char *subject,                  /* Subject (optional) */
230         long subjlen,
231         char *supplied_euid,            /* ...or NULL if this is irrelevant */
232         long euidlen,
233         char *preformatted_text,        /* ...or NULL to read text from client */
234         long textlen,
235         char *references,               /* Thread references */
236         long reflen);
237
238 /* 
239  * loading messages async via an FD: 
240  * add IO->ReadMsg = NewAsyncMsg(...)
241  * and then call CtdlReadMessageBodyAsync() from your linreader handler.
242  */
243
244 ReadAsyncMsg *NewAsyncMsg(const char *terminator,       /* token signalling EOT */
245                           long tlen,
246                           size_t expectlen,             /* if we expect a message, how long should it be? */
247                           size_t maxlen,                /* maximum message length */
248                           StrBuf *exist,                /* if non-null, append to it;
249                                                            exist is ALWAYS freed  */
250                           long eLen,                    /* length of exist */
251                           int crlf                      /* CRLF newlines instead of LF */
252         );
253
254 eReadState CtdlReadMessageBodyAsync(AsyncIO *IO);
255 void DeleteAsyncMsg(ReadAsyncMsg **Msg);
256
257 extern int MessageDebugEnabled;
258
259 #define MSGDBGLOG(LEVEL) if ((LEVEL != LOG_DEBUG) || (MessageDebugEnabled != 0))
260 #define CCCID CCC->cs_pid
261 #define MSG_syslog(LEVEL, FORMAT, ...)                  \
262         MSGDBGLOG(LEVEL) syslog(LEVEL,                  \
263                                 "CC[%d]MSG" FORMAT,     \
264                                 CCCID, __VA_ARGS__)
265
266 #define MSGM_syslog(LEVEL, FORMAT)                      \
267         MSGDBGLOG(LEVEL) syslog(LEVEL,                  \
268                                 "CC[%d]MSG" FORMAT,     \
269                                 CCCID)
270
271
272
273 #endif /* MSGBASE_H */