2132a2dd42f2271c196cf0d5c6e9e38e846eb4af
[citadel.git] / webcit / msg_renderers.c
1 #include "webcit.h"
2 #include "webserver.h"
3 #include "dav.h"
4
5 CtxType CTX_MAILSUM = CTX_NONE;
6 CtxType CTX_MIME_ATACH = CTX_NONE;
7
8 inline void CheckConvertBufs(struct wcsession *WCC)
9 {
10         if (WCC->ConvertBuf1 == NULL)
11                 WCC->ConvertBuf1 = NewStrBuf();
12         if (WCC->ConvertBuf2 == NULL)
13                 WCC->ConvertBuf2 = NewStrBuf();
14 }
15
16 /*
17  * message index functions
18  */
19
20
21 void DestroyMimeParts(wc_mime_attachment *Mime)
22 {
23         FreeStrBuf(&Mime->Name);
24         FreeStrBuf(&Mime->FileName);
25         FreeStrBuf(&Mime->PartNum);
26         FreeStrBuf(&Mime->Disposition);
27         FreeStrBuf(&Mime->ContentType);
28         FreeStrBuf(&Mime->Charset);
29         FreeStrBuf(&Mime->Data);
30 }
31
32 void DestroyMime(void *vMime)
33 {
34         wc_mime_attachment *Mime = (wc_mime_attachment*)vMime;
35         DestroyMimeParts(Mime);
36         free(Mime);
37 }
38
39 void DestroyMessageSummary(void *vMsg)
40 {
41         message_summary *Msg = (message_summary*) vMsg;
42
43         FreeStrBuf(&Msg->from);
44         FreeStrBuf(&Msg->to);
45         FreeStrBuf(&Msg->subj);
46         FreeStrBuf(&Msg->reply_inreplyto);
47         FreeStrBuf(&Msg->reply_references);
48         FreeStrBuf(&Msg->cccc);
49         FreeStrBuf(&Msg->ReplyTo);
50         FreeStrBuf(&Msg->hnod);
51         FreeStrBuf(&Msg->AllRcpt);
52         FreeStrBuf(&Msg->Room);
53         FreeStrBuf(&Msg->Rfca);
54         FreeStrBuf(&Msg->EnvTo);
55         FreeStrBuf(&Msg->OtherNode);
56
57         DeleteHash(&Msg->Attachments);  /* list of Attachments */
58         DeleteHash(&Msg->Submessages);
59         DeleteHash(&Msg->AttachLinks);
60         DeleteHash(&Msg->AllAttach);
61         free(Msg);
62 }
63
64
65
66 void RegisterMsgHdr(const char *HeaderName, long HdrNLen, ExamineMsgHeaderFunc evaluator, int type)
67 {
68         headereval *ev;
69         ev = (headereval*) malloc(sizeof(headereval));
70         ev->evaluator = evaluator;
71         ev->Type = type;
72         Put(MsgHeaderHandler, HeaderName, HdrNLen, ev, NULL);
73 }
74
75 void RegisterMimeRenderer(const char *HeaderName, long HdrNLen, 
76                           RenderMimeFunc MimeRenderer,
77                           int InlineRenderable,
78                           int Priority)
79 {
80         RenderMimeFuncStruct *f;
81
82         f = (RenderMimeFuncStruct*) malloc(sizeof(RenderMimeFuncStruct));
83         f->f = MimeRenderer;
84         Put(MimeRenderHandler, HeaderName, HdrNLen, f, NULL);
85         if (InlineRenderable)
86                 RegisterEmbeddableMimeType(HeaderName, HdrNLen, 10000 - Priority);
87 }
88
89 /*----------------------------------------------------------------------------*/
90
91 /*
92  *  comparator for two longs in descending order.
93  */
94 int longcmp_r(const void *s1, const void *s2) {
95         long l1;
96         long l2;
97
98         l1 = *(long *)GetSearchPayload(s1);
99         l2 = *(long *)GetSearchPayload(s2);
100
101         if (l1 > l2) return(-1);
102         if (l1 < l2) return(+1);
103         return(0);
104 }
105
106 /*
107  *  comparator for longs; descending order.
108  */
109 int qlongcmp_r(const void *s1, const void *s2) {
110         long l1 = (long) s1;
111         long l2 = (long) s2;
112
113         if (l1 > l2) return(-1);
114         if (l1 < l2) return(+1);
115         return(0);
116 }
117
118  
119 /*
120  * comparator for message summary structs by ascending subject.
121  */
122 int summcmp_subj(const void *s1, const void *s2) {
123         message_summary *summ1;
124         message_summary *summ2;
125         
126         summ1 = (message_summary *)GetSearchPayload(s1);
127         summ2 = (message_summary *)GetSearchPayload(s2);
128         return strcasecmp(ChrPtr(summ1->subj), ChrPtr(summ2->subj));
129 }
130
131 /*
132  * comparator for message summary structs by descending subject.
133  */
134 int summcmp_rsubj(const void *s1, const void *s2) {
135         message_summary *summ1;
136         message_summary *summ2;
137         
138         summ1 = (message_summary *)GetSearchPayload(s1);
139         summ2 = (message_summary *)GetSearchPayload(s2);
140         return strcasecmp(ChrPtr(summ2->subj), ChrPtr(summ1->subj));
141 }
142 /*
143  * comparator for message summary structs by descending subject.
144  */
145 int groupchange_subj(const void *s1, const void *s2) {
146         message_summary *summ1;
147         message_summary *summ2;
148         
149         summ1 = (message_summary *)s1;
150         summ2 = (message_summary *)s2;
151         return ChrPtr(summ2->subj)[0] != ChrPtr(summ1->subj)[0];
152 }
153
154 /*
155  * comparator for message summary structs by ascending sender.
156  */
157 int summcmp_sender(const void *s1, const void *s2) {
158         message_summary *summ1;
159         message_summary *summ2;
160         
161         summ1 = (message_summary *)GetSearchPayload(s1);
162         summ2 = (message_summary *)GetSearchPayload(s2);
163         return strcasecmp(ChrPtr(summ1->from), ChrPtr(summ2->from));
164 }
165
166 /*
167  * comparator for message summary structs by descending sender.
168  */
169 int summcmp_rsender(const void *s1, const void *s2) {
170         message_summary *summ1;
171         message_summary *summ2;
172         
173         summ1 = (message_summary *)GetSearchPayload(s1);
174         summ2 = (message_summary *)GetSearchPayload(s2);
175         return strcasecmp(ChrPtr(summ2->from), ChrPtr(summ1->from));
176 }
177 /*
178  * comparator for message summary structs by descending sender.
179  */
180 int groupchange_sender(const void *s1, const void *s2) {
181         message_summary *summ1;
182         message_summary *summ2;
183         
184         summ1 = (message_summary *)s1;
185         summ2 = (message_summary *)s2;
186         return strcasecmp(ChrPtr(summ2->from), ChrPtr(summ1->from)) != 0;
187
188 }
189
190 /*
191  * comparator for message summary structs by ascending date.
192  */
193 int summcmp_date(const void *s1, const void *s2) {
194         message_summary *summ1;
195         message_summary *summ2;
196         
197         summ1 = (message_summary *)GetSearchPayload(s1);
198         summ2 = (message_summary *)GetSearchPayload(s2);
199
200         if (summ1->date < summ2->date) return -1;
201         else if (summ1->date > summ2->date) return +1;
202         else return 0;
203 }
204
205 /*
206  * comparator for message summary structs by descending date.
207  */
208 int summcmp_rdate(const void *s1, const void *s2) {
209         message_summary *summ1;
210         message_summary *summ2;
211         
212         summ1 = (message_summary *)GetSearchPayload(s1);
213         summ2 = (message_summary *)GetSearchPayload(s2);
214
215         if (summ1->date < summ2->date) return +1;
216         else if (summ1->date > summ2->date) return -1;
217         else return 0;
218 }
219
220 /*
221  * comparator for message summary structs by descending date.
222  */
223 const long DAYSECONDS = 24 * 60 * 60;
224 int groupchange_date(const void *s1, const void *s2) {
225         message_summary *summ1;
226         message_summary *summ2;
227         
228         summ1 = (message_summary *)s1;
229         summ2 = (message_summary *)s2;
230
231         return (summ1->date % DAYSECONDS) != (summ2->date %DAYSECONDS);
232 }
233
234
235 /*----------------------------------------------------------------------------*/
236 /* Don't wanna know... or? */
237 void examine_pref(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset) {return;}
238 void examine_suff(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset) {return;}
239 void examine_path(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset) {return;}
240 void examine_content_encoding(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
241 {
242 /* TODO: do we care? */
243 }
244
245 void examine_nhdr(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
246 {
247         Msg->nhdr = 0;
248         if (!strncasecmp(ChrPtr(HdrLine), "yes", 8))
249                 Msg->nhdr = 1;
250 }
251 int Conditional_ANONYMOUS_MESSAGE(StrBuf *Target, WCTemplputParams *TP)
252 {
253         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
254         return Msg->nhdr != 0;
255 }
256
257 void examine_type(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
258 {
259         Msg->format_type = StrToi(HdrLine);
260                         
261 }
262
263 void examine_from(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
264 {
265         wcsession *WCC = WC;
266
267         CheckConvertBufs(WCC);
268         FreeStrBuf(&Msg->from);
269         Msg->from = NewStrBufPlain(NULL, StrLength(HdrLine));
270         StrBuf_RFC822_2_Utf8(Msg->from, 
271                              HdrLine, 
272                              WCC->DefaultCharset, 
273                              FoundCharset,
274                              WCC->ConvertBuf1,
275                              WCC->ConvertBuf2);
276 }
277 void tmplput_MAIL_SUMM_FROM(StrBuf *Target, WCTemplputParams *TP)
278 {
279         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
280         StrBufAppendTemplate(Target, TP, Msg->from, 0);
281 }
282
283 void examine_subj(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
284 {
285         wcsession *WCC = WC;
286
287         CheckConvertBufs(WCC);
288         FreeStrBuf(&Msg->subj);
289         Msg->subj = NewStrBufPlain(NULL, StrLength(HdrLine));
290         StrBuf_RFC822_2_Utf8(Msg->subj, 
291                              HdrLine, 
292                              WCC->DefaultCharset, 
293                              FoundCharset,
294                              WCC->ConvertBuf1,
295                              WCC->ConvertBuf2);
296 }
297 void tmplput_MAIL_SUMM_SUBJECT(StrBuf *Target, WCTemplputParams *TP)
298 {
299         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
300
301         if (TP->Tokens->nParameters == 4)
302         {
303                 const char *pch;
304                 long len;
305                 
306                 GetTemplateTokenString(Target, TP, 3, &pch, &len);
307                 if ((len > 0)&&
308                     (strstr(ChrPtr(Msg->subj), pch) == NULL))
309                 {
310                         GetTemplateTokenString(Target, TP, 2, &pch, &len);
311                         StrBufAppendBufPlain(Target, pch, len, 0);
312                 }
313         }
314         StrBufAppendTemplate(Target, TP, Msg->subj, 0);
315 }
316 int Conditional_MAIL_SUMM_SUBJECT(StrBuf *Target, WCTemplputParams *TP)
317 {
318         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
319
320
321         return StrLength(Msg->subj) > 0;
322 }
323
324
325 void examine_msgn(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
326 {
327         wcsession *WCC = WC;
328
329         CheckConvertBufs(WCC);
330         FreeStrBuf(&Msg->reply_inreplyto);
331         Msg->reply_inreplyto = NewStrBufPlain(NULL, StrLength(HdrLine));
332         StrBuf_RFC822_2_Utf8(Msg->reply_inreplyto, 
333                              HdrLine, 
334                              WCC->DefaultCharset,
335                              FoundCharset,
336                              WCC->ConvertBuf1,
337                              WCC->ConvertBuf2);
338 }
339 void tmplput_MAIL_SUMM_INREPLYTO(StrBuf *Target, WCTemplputParams *TP)
340 {
341         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
342         StrBufAppendTemplate(Target, TP, Msg->reply_inreplyto, 0);
343 }
344
345 int Conditional_MAIL_SUMM_UNREAD(StrBuf *Target, WCTemplputParams *TP)
346 {
347         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
348         return (Msg->Flags & MSGFLAG_READ) != 0;
349 }
350
351 void examine_wefw(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
352 {
353         wcsession *WCC = WC;
354
355         CheckConvertBufs(WCC);
356         FreeStrBuf(&Msg->reply_references);
357         Msg->reply_references = NewStrBufPlain(NULL, StrLength(HdrLine));
358         StrBuf_RFC822_2_Utf8(Msg->reply_references, 
359                              HdrLine, 
360                              WCC->DefaultCharset, 
361                              FoundCharset,
362                              WCC->ConvertBuf1,
363                              WCC->ConvertBuf2);
364 }
365 void tmplput_MAIL_SUMM_REFIDS(StrBuf *Target, WCTemplputParams *TP)
366 {
367         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
368         StrBufAppendTemplate(Target, TP, Msg->reply_references, 0);
369 }
370
371 void examine_replyto(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
372 {
373         wcsession *WCC = WC;
374
375         CheckConvertBufs(WCC);
376         FreeStrBuf(&Msg->ReplyTo);
377         Msg->ReplyTo = NewStrBufPlain(NULL, StrLength(HdrLine));
378         StrBuf_RFC822_2_Utf8(Msg->ReplyTo, 
379                              HdrLine, 
380                              WCC->DefaultCharset, 
381                              FoundCharset,
382                              WCC->ConvertBuf1,
383                              WCC->ConvertBuf2);
384         if (Msg->AllRcpt == NULL)
385                 Msg->AllRcpt = NewStrBufPlain(NULL, StrLength(HdrLine));
386         if (StrLength(Msg->AllRcpt) > 0) {
387                 StrBufAppendBufPlain(Msg->AllRcpt, HKEY(", "), 0);
388         }
389         StrBufAppendBuf(Msg->AllRcpt, Msg->ReplyTo, 0);
390 }
391 void tmplput_MAIL_SUMM_REPLYTO(StrBuf *Target, WCTemplputParams *TP)
392 {
393         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
394         StrBufAppendTemplate(Target, TP, Msg->ReplyTo, 0);
395 }
396
397 void examine_cccc(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
398 {
399         wcsession *WCC = WC;
400
401         CheckConvertBufs(WCC);
402         FreeStrBuf(&Msg->cccc);
403         Msg->cccc = NewStrBufPlain(NULL, StrLength(HdrLine));
404         StrBuf_RFC822_2_Utf8(Msg->cccc, 
405                              HdrLine, 
406                              WCC->DefaultCharset, 
407                              FoundCharset,
408                              WCC->ConvertBuf1,
409                              WCC->ConvertBuf2);
410         if (Msg->AllRcpt == NULL)
411                 Msg->AllRcpt = NewStrBufPlain(NULL, StrLength(HdrLine));
412         if (StrLength(Msg->AllRcpt) > 0) {
413                 StrBufAppendBufPlain(Msg->AllRcpt, HKEY(", "), 0);
414         }
415         StrBufAppendBuf(Msg->AllRcpt, Msg->cccc, 0);
416 }
417 void tmplput_MAIL_SUMM_CCCC(StrBuf *Target, WCTemplputParams *TP)
418 {
419         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
420         StrBufAppendTemplate(Target, TP, Msg->cccc, 0);
421 }
422
423
424 void examine_room(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
425 {
426         if ((StrLength(HdrLine) > 0) &&
427             (strcasecmp(ChrPtr(HdrLine), ChrPtr(WC->CurRoom.name)))) {
428                 FreeStrBuf(&Msg->Room);
429                 Msg->Room = NewStrBufDup(HdrLine);              
430         }
431 }
432 void tmplput_MAIL_SUMM_ORGROOM(StrBuf *Target, WCTemplputParams *TP)
433 {
434         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
435         StrBufAppendTemplate(Target, TP, Msg->Room, 0);
436 }
437
438
439 void examine_rfca(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
440 {
441         FreeStrBuf(&Msg->Rfca);
442         Msg->Rfca = NewStrBufDup(HdrLine);
443 }
444 void tmplput_MAIL_SUMM_RFCA(StrBuf *Target, WCTemplputParams *TP)
445 {
446         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
447         StrBufAppendTemplate(Target, TP, Msg->Rfca, 0);
448 }
449 int Conditional_MAIL_SUMM_RFCA(StrBuf *Target, WCTemplputParams *TP)
450 {
451         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
452         return StrLength(Msg->Rfca) > 0;
453 }
454 int Conditional_MAIL_SUMM_CCCC(StrBuf *Target, WCTemplputParams *TP)
455 {
456         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
457         return StrLength(Msg->cccc) > 0;
458 }
459 int Conditional_MAIL_SUMM_REPLYTO(StrBuf *Target, WCTemplputParams *TP)
460 {
461         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
462         return StrLength(Msg->ReplyTo) > 0;
463 }
464
465 void examine_node(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
466 {
467         wcsession *WCC = WC;
468
469         if ( (StrLength(HdrLine) > 0) &&
470              ((WC->CurRoom.QRFlags & QR_NETWORK)
471               || ((strcasecmp(ChrPtr(HdrLine), ChrPtr(WCC->serv_info->serv_nodename))
472                    && (strcasecmp(ChrPtr(HdrLine), ChrPtr(WCC->serv_info->serv_fqdn))))))) {
473                 FreeStrBuf(&Msg->OtherNode);
474                 Msg->OtherNode = NewStrBufDup(HdrLine);
475         }
476 }
477 void tmplput_MAIL_SUMM_OTHERNODE(StrBuf *Target, WCTemplputParams *TP)
478 {
479         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
480         StrBufAppendTemplate(Target, TP, Msg->OtherNode, 0);
481 }
482 int Conditional_MAIL_SUMM_OTHERNODE(StrBuf *Target, WCTemplputParams *TP)
483 {
484         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
485         return StrLength(Msg->OtherNode) > 0;
486 }
487
488 void examine_nvto(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
489 {
490         wcsession *WCC = WC;
491
492         CheckConvertBufs(WCC);
493         FreeStrBuf(&Msg->EnvTo);
494         Msg->EnvTo = NewStrBufPlain(NULL, StrLength(HdrLine));
495         StrBuf_RFC822_2_Utf8(Msg->EnvTo, 
496                              HdrLine, 
497                              WCC->DefaultCharset, 
498                              FoundCharset,
499                              WCC->ConvertBuf1,
500                              WCC->ConvertBuf2);
501 }
502
503
504 void examine_rcpt(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
505 {
506         wcsession *WCC = WC;
507
508         CheckConvertBufs(WCC);
509         FreeStrBuf(&Msg->to);
510         Msg->to = NewStrBufPlain(NULL, StrLength(HdrLine));
511         StrBuf_RFC822_2_Utf8(Msg->to, 
512                              HdrLine, 
513                              WCC->DefaultCharset, 
514                              FoundCharset,
515                              WCC->ConvertBuf1,
516                              WCC->ConvertBuf2);
517         if (Msg->AllRcpt == NULL)
518                 Msg->AllRcpt = NewStrBufPlain(NULL, StrLength(HdrLine));
519         if (StrLength(Msg->AllRcpt) > 0) {
520                 StrBufAppendBufPlain(Msg->AllRcpt, HKEY(", "), 0);
521         }
522         StrBufAppendBuf(Msg->AllRcpt, Msg->to, 0);
523 }
524 void tmplput_MAIL_SUMM_TO(StrBuf *Target, WCTemplputParams *TP)
525 {
526         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
527         StrBufAppendTemplate(Target, TP, Msg->to, 0);
528 }
529 int Conditional_MAIL_SUMM_TO(StrBuf *Target, WCTemplputParams *TP) 
530 {
531         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
532         return StrLength(Msg->to) != 0;
533 }
534 int Conditional_MAIL_SUMM_SUBJ(StrBuf *Target, WCTemplputParams *TP) 
535 {
536         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
537         return StrLength(Msg->subj) != 0;
538 }
539 void tmplput_MAIL_SUMM_ALLRCPT(StrBuf *Target, WCTemplputParams *TP)
540 {
541         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
542         StrBufAppendTemplate(Target, TP, Msg->AllRcpt, 0);
543 }
544
545
546
547 void tmplput_SUMM_COUNT(StrBuf *Target, WCTemplputParams *TP)
548 {
549         StrBufAppendPrintf(Target, "%d", GetCount( WC->summ));
550 }
551
552 HashList *iterate_get_mailsumm_All(StrBuf *Target, WCTemplputParams *TP)
553 {
554         return WC->summ;
555 }
556 void examine_time(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
557 {
558         Msg->date = StrTol(HdrLine);
559 }
560
561 void tmplput_MAIL_SUMM_DATE_BRIEF(StrBuf *Target, WCTemplputParams *TP)
562 {
563         char datebuf[64];
564         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
565         webcit_fmt_date(datebuf, 64, Msg->date, DATEFMT_BRIEF);
566         StrBufAppendBufPlain(Target, datebuf, -1, 0);
567 }
568
569 void tmplput_MAIL_SUMM_EUID(StrBuf *Target, WCTemplputParams *TP)
570 {
571         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
572         StrBufAppendTemplate(Target, TP, Msg->euid, 0);
573 }
574
575 void tmplput_MAIL_SUMM_DATE_FULL(StrBuf *Target, WCTemplputParams *TP)
576 {
577         char datebuf[64];
578         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
579         webcit_fmt_date(datebuf, 64, Msg->date, DATEFMT_FULL);
580         StrBufAppendBufPlain(Target, datebuf, -1, 0);
581 }
582 void tmplput_MAIL_SUMM_DATE_NO(StrBuf *Target, WCTemplputParams *TP)
583 {
584         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
585         StrBufAppendPrintf(Target, "%ld", Msg->date, 0);
586 }
587
588
589
590 void render_MAIL(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
591 {
592         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
593         const StrBuf *TemplateMime;
594
595         if (Mime->Data == NULL) 
596                 Mime->Data = NewStrBufPlain(NULL, Mime->length);
597         else 
598                 FlushStrBuf(Mime->Data);
599         read_message(Mime->Data, HKEY("view_submessage"), Mime->msgnum, Mime->PartNum, &TemplateMime);
600 /*
601         if ( (!IsEmptyStr(mime_submessages)) && (!section[0]) ) {
602                 for (i=0; i<num_tokens(mime_submessages, '|'); ++i) {
603                         extract_token(buf, mime_submessages, i, '|', sizeof buf);
604                         / ** use printable_view to suppress buttons * /
605                         wc_printf("<blockquote>");
606                         read_message(Mime->msgnum, 1, ChrPtr(Mime->Section));
607                         wc_printf("</blockquote>");
608                 }
609         }
610 */
611 }
612
613 void render_MIME_VCard(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
614 {
615         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
616         wcsession *WCC = WC;
617         if (StrLength(Mime->Data) == 0)
618                 MimeLoadData(Mime);
619         if (StrLength(Mime->Data) > 0) {
620                 StrBuf *Buf;
621                 Buf = NewStrBuf();
622                 /** If it's my vCard I can edit it */
623                 if (    (!strcasecmp(ChrPtr(WCC->CurRoom.name), USERCONFIGROOM))
624                         || (!strcasecmp(&(ChrPtr(WCC->CurRoom.name)[11]), USERCONFIGROOM))
625                         || (WC->CurRoom.view == VIEW_ADDRESSBOOK)
626                         ) {
627                         StrBufAppendPrintf(Buf, "<a href=\"edit_vcard?msgnum=%ld?partnum=%s\">",
628                                 Mime->msgnum, ChrPtr(Mime->PartNum));
629                         StrBufAppendPrintf(Buf, "[%s]</a>", _("edit"));
630                 }
631
632                 /* In all cases, display the full card */
633                 display_vcard(Buf, Mime, 0, 1, NULL, -1);
634                 FreeStrBuf(&Mime->Data);
635                 Mime->Data = Buf;
636         }
637
638 }
639
640 void render_MIME_ICS(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
641 {
642         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
643         if (StrLength(Mime->Data) == 0) {
644                 MimeLoadData(Mime);
645         }
646         if (StrLength(Mime->Data) > 0) {
647                 cal_process_attachment(Mime);
648         }
649 }
650
651
652
653 void examine_mime_part(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
654 {
655         const char *Ptr = NULL;
656         wc_mime_attachment *Mime;
657         StrBuf *Buf;
658         wcsession *WCC = WC;
659
660         CheckConvertBufs(WCC);  
661         Mime = (wc_mime_attachment*) malloc(sizeof(wc_mime_attachment));
662         memset(Mime, 0, sizeof(wc_mime_attachment));
663         Mime->msgnum = Msg->msgnum;
664         Buf = NewStrBuf();
665
666         Mime->Name = NewStrBuf();
667         StrBufExtract_NextToken(Buf, HdrLine, &Ptr, '|');
668         StrBuf_RFC822_2_Utf8(Mime->Name, 
669                              Buf, 
670                              WCC->DefaultCharset, 
671                              FoundCharset,
672                              WCC->ConvertBuf1,
673                              WCC->ConvertBuf2);
674         StrBufTrim(Mime->Name);
675
676         StrBufExtract_NextToken(Buf, HdrLine, &Ptr, '|');
677         Mime->FileName = NewStrBuf();
678         StrBuf_RFC822_2_Utf8(Mime->FileName, 
679                              Buf, 
680                              WCC->DefaultCharset, 
681                              FoundCharset,
682                              WCC->ConvertBuf1,
683                              WCC->ConvertBuf2);
684         StrBufTrim(Mime->FileName);
685
686         Mime->PartNum = NewStrBuf();
687         StrBufExtract_NextToken(Mime->PartNum, HdrLine, &Ptr, '|');
688         StrBufTrim(Mime->PartNum);
689         if (strchr(ChrPtr(Mime->PartNum), '.') != NULL) 
690                 Mime->level = 2;
691         else
692                 Mime->level = 1;
693
694         Mime->Disposition = NewStrBuf();
695         StrBufExtract_NextToken(Mime->Disposition, HdrLine, &Ptr, '|');
696
697         Mime->ContentType = NewStrBuf();
698         StrBufExtract_NextToken(Mime->ContentType, HdrLine, &Ptr, '|');
699         StrBufTrim(Mime->ContentType);
700         StrBufLowerCase(Mime->ContentType);
701         if (!strcmp(ChrPtr(Mime->ContentType), "application/octet-stream")) {
702                 StrBufPlain(Mime->ContentType, 
703                             GuessMimeByFilename(SKEY(Mime->FileName)), -1);
704         }
705
706         Mime->length = StrBufExtractNext_int(HdrLine, &Ptr, '|');
707
708         StrBufSkip_NTokenS(HdrLine, &Ptr, '|', 1);  /* cbid?? */
709
710         Mime->Charset = NewStrBuf();
711         StrBufExtract_NextToken(Mime->Charset, HdrLine, &Ptr, '|');
712
713
714         if ( (StrLength(Mime->FileName) == 0) && (StrLength(Mime->Name) > 0) ) {
715                 StrBufAppendBuf(Mime->FileName, Mime->Name, 0);
716         }
717
718         if (StrLength(Msg->PartNum) > 0) {
719                 StrBuf *tmp;
720                 StrBufPrintf(Buf, "%s.%s", ChrPtr(Msg->PartNum), ChrPtr(Mime->PartNum));
721                 tmp = Mime->PartNum;
722                 Mime->PartNum = Buf;
723                 Buf = tmp;
724         }
725
726         if (Msg->AllAttach == NULL)
727                 Msg->AllAttach = NewHash(1,NULL);
728         Put(Msg->AllAttach, SKEY(Mime->PartNum), Mime, DestroyMime);
729         FreeStrBuf(&Buf);
730 }
731
732
733 void evaluate_mime_part(StrBuf *Target, WCTemplputParams *TP)
734 {
735         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
736         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
737         void *vMimeRenderer;
738
739         /* just print the root-node */
740         if ((Mime->level >= 1) &&
741             GetHash(MimeRenderHandler, SKEY(Mime->ContentType), &vMimeRenderer) &&
742             vMimeRenderer != NULL)
743         {
744                 Mime->Renderer = (RenderMimeFuncStruct*) vMimeRenderer;
745                 if (Msg->Submessages == NULL)
746                         Msg->Submessages = NewHash(1,NULL);
747                 Put(Msg->Submessages, SKEY(Mime->PartNum), Mime, reference_free_handler);
748         }
749         else if ((Mime->level >= 1) &&
750                  (!strcasecmp(ChrPtr(Mime->Disposition), "inline"))
751                  && (!strncasecmp(ChrPtr(Mime->ContentType), "image/", 6)) ){
752                 if (Msg->AttachLinks == NULL)
753                         Msg->AttachLinks = NewHash(1,NULL);
754                 Put(Msg->AttachLinks, SKEY(Mime->PartNum), Mime, reference_free_handler);
755         }
756         else if ((Mime->level >= 1) &&
757                  (StrLength(Mime->ContentType) > 0) &&
758                   ( (!strcasecmp(ChrPtr(Mime->Disposition), "attachment")) 
759                     || (!strcasecmp(ChrPtr(Mime->Disposition), "inline"))
760                     || (!strcasecmp(ChrPtr(Mime->Disposition), ""))))
761         {               
762                 if (Msg->AttachLinks == NULL)
763                         Msg->AttachLinks = NewHash(1,NULL);
764                 Put(Msg->AttachLinks, SKEY(Mime->PartNum), Mime, reference_free_handler);
765                 if ((strcasecmp(ChrPtr(Mime->ContentType), "application/octet-stream") == 0) && 
766                     (StrLength(Mime->FileName) > 0)) {
767                         FlushStrBuf(Mime->ContentType);
768                         StrBufAppendBufPlain(Mime->ContentType,
769                                              GuessMimeByFilename(SKEY(Mime->FileName)),
770                                              -1, 0);
771                 }
772         }
773 }
774
775 void tmplput_MAIL_SUMM_NATTACH(StrBuf *Target, WCTemplputParams *TP)
776 {
777         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
778         StrBufAppendPrintf(Target, "%ld", GetCount(Msg->Attachments));
779 }
780
781
782 void examine_hnod(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
783 {
784         wcsession *WCC = WC;
785
786         CheckConvertBufs(WCC);
787         FreeStrBuf(&Msg->hnod);
788         Msg->hnod = NewStrBufPlain(NULL, StrLength(HdrLine));
789         StrBuf_RFC822_2_Utf8(Msg->hnod, 
790                              HdrLine, 
791                              WCC->DefaultCharset, 
792                              FoundCharset,
793                              WCC->ConvertBuf1,
794                              WCC->ConvertBuf2);
795 }
796 void tmplput_MAIL_SUMM_H_NODE(StrBuf *Target, WCTemplputParams *TP)
797 {
798         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
799         StrBufAppendTemplate(Target, TP, Msg->hnod, 0);
800 }
801 int Conditional_MAIL_SUMM_H_NODE(StrBuf *Target, WCTemplputParams *TP)
802 {
803         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
804         return StrLength(Msg->hnod) > 0;
805 }
806
807
808
809 void examine_text(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
810 {
811         if (Msg->MsgBody->Data == NULL)
812                 Msg->MsgBody->Data = NewStrBufPlain(NULL, SIZ);
813         else
814                 FlushStrBuf(Msg->MsgBody->Data);
815 }
816
817 void examine_msg4_partnum(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
818 {
819         Msg->MsgBody->PartNum = NewStrBufDup(HdrLine);
820         StrBufTrim(Msg->MsgBody->PartNum);
821 }
822
823 void examine_content_lengh(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
824 {
825         Msg->MsgBody->length = StrTol(HdrLine);
826         Msg->MsgBody->size_known = 1;
827 }
828
829 void examine_content_type(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
830 {
831         void *vHdr;
832         headereval *Hdr;
833         StrBuf *Token;
834         StrBuf *Value;
835         const char* sem;
836         const char *eq;
837         int len;
838         StrBufTrim(HdrLine);
839         Msg->MsgBody->ContentType = NewStrBufDup(HdrLine);
840         sem = strchr(ChrPtr(HdrLine), ';');
841
842         if (sem != NULL) {
843                 Token = NewStrBufPlain(NULL, StrLength(HdrLine));
844                 Value = NewStrBufPlain(NULL, StrLength(HdrLine));
845                 len = sem - ChrPtr(HdrLine);
846                 StrBufCutAt(Msg->MsgBody->ContentType, len, NULL);
847                 while (sem != NULL) {
848                         while (isspace(*(sem + 1)))
849                                 sem ++;
850                         StrBufCutLeft(HdrLine, sem - ChrPtr(HdrLine));
851                         sem = strchr(ChrPtr(HdrLine), ';');
852                         if (sem != NULL)
853                                 len = sem - ChrPtr(HdrLine);
854                         else
855                                 len = StrLength(HdrLine);
856                         FlushStrBuf(Token);
857                         FlushStrBuf(Value);
858                         StrBufAppendBufPlain(Token, ChrPtr(HdrLine), len, 0);
859                         eq = strchr(ChrPtr(Token), '=');
860                         if (eq != NULL) {
861                                 len = eq - ChrPtr(Token);
862                                 StrBufAppendBufPlain(Value, eq + 1, StrLength(Token) - len - 1, 0); 
863                                 StrBufCutAt(Token, len, NULL);
864                                 StrBufTrim(Value);
865                         }
866                         StrBufTrim(Token);
867
868                         if (GetHash(MsgHeaderHandler, SKEY(Token), &vHdr) &&
869                             (vHdr != NULL)) {
870                                 Hdr = (headereval*)vHdr;
871                                 Hdr->evaluator(Msg, Value, FoundCharset);
872                         }
873                         else syslog(LOG_WARNING, "don't know how to handle content type sub-header[%s]\n", ChrPtr(Token));
874                 }
875                 FreeStrBuf(&Token);
876                 FreeStrBuf(&Value);
877         }
878 }
879
880 void tmplput_MAIL_SUMM_N(StrBuf *Target, WCTemplputParams *TP)
881 {
882         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
883         StrBufAppendPrintf(Target, "%ld", Msg->msgnum);
884 }
885
886
887 void tmplput_MAIL_SUMM_PERMALINK(StrBuf *Target, WCTemplputParams *TP)
888 {
889         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
890         char perma_link[1024];
891
892         strcpy(perma_link, "/readfwd?go=");
893         urlesc(&perma_link[12], sizeof(perma_link) - 12, (char *)ChrPtr(WC->CurRoom.name) );
894         sprintf(&perma_link[strlen(perma_link)], "?start_reading_at=%ld#%ld", Msg->msgnum, Msg->msgnum);
895         StrBufAppendPrintf(Target, "%s", perma_link);
896 }
897
898
899 int Conditional_MAIL_MIME_ALL(StrBuf *Target, WCTemplputParams *TP)
900 {
901         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
902         return GetCount(Msg->Attachments) > 0;
903 }
904
905 int Conditional_MAIL_MIME_SUBMESSAGES(StrBuf *Target, WCTemplputParams *TP)
906 {
907         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
908         return GetCount(Msg->Submessages) > 0;
909 }
910
911 int Conditional_MAIL_MIME_ATTACHLINKS(StrBuf *Target, WCTemplputParams *TP)
912 {
913         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
914         return GetCount(Msg->AttachLinks) > 0;
915 }
916
917 int Conditional_MAIL_MIME_ATTACH(StrBuf *Target, WCTemplputParams *TP)
918 {
919         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
920         return GetCount(Msg->AllAttach) > 0;
921 }
922
923 void tmplput_QUOTED_MAIL_BODY(StrBuf *Target, WCTemplputParams *TP)
924 {
925         const StrBuf *Mime;
926         long MsgNum;
927         StrBuf *Buf;
928
929         MsgNum = LBstr(TKEY(0));
930         Buf = NewStrBuf();
931         read_message(Buf, HKEY("view_message_replyquote"), MsgNum, NULL, &Mime);
932         StrBufAppendTemplate(Target, TP, Buf, 1);
933         FreeStrBuf(&Buf);
934 }
935
936 void tmplput_EDIT_MAIL_BODY(StrBuf *Target, WCTemplputParams *TP)
937 {
938         const StrBuf *Mime;
939         long MsgNum;
940         StrBuf *Buf;
941
942         MsgNum = LBstr(TKEY(0));
943         Buf = NewStrBuf();
944         read_message(Buf, HKEY("view_message_edit"), MsgNum, NULL, &Mime);
945         StrBufAppendTemplate(Target, TP, Buf, 1);
946         FreeStrBuf(&Buf);
947 }
948
949 void tmplput_EDIT_WIKI_BODY(StrBuf *Target, WCTemplputParams *TP)
950 {
951         const StrBuf *Mime;
952         long msgnum;
953         StrBuf *Buf;
954
955         /* Insert the existing content of the wiki page into the editor.  But we only want
956          * to do this the first time -- if the user is uploading an attachment we don't want
957          * to do it again.
958          */
959         if (!havebstr("attach_button")) {
960                 char *wikipage = strdup(bstr("page"));
961                 str_wiki_index(wikipage);
962                 msgnum = locate_message_by_uid(wikipage);
963                 free(wikipage);
964                 if (msgnum >= 0L) {
965                         Buf = NewStrBuf();
966                         read_message(Buf, HKEY("view_message_wikiedit"), msgnum, NULL, &Mime);
967                         StrBufAppendTemplate(Target, TP, Buf, 1);
968                         FreeStrBuf(&Buf);
969                 }
970         }
971 }
972
973 void tmplput_MAIL_BODY(StrBuf *Target, WCTemplputParams *TP)
974 {
975         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
976         StrBufAppendTemplate(Target, TP, Msg->MsgBody->Data, 0);
977 }
978
979
980 void render_MAIL_variformat(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
981 {
982         /* Messages in legacy Citadel variformat get handled thusly... */
983         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
984         StrBuf *TTarget = NewStrBufPlain(NULL, StrLength(Mime->Data));
985         FmOut(TTarget, "JUSTIFY", Mime->Data);
986         FreeStrBuf(&Mime->Data);
987         Mime->Data = TTarget;
988 }
989
990 void render_MAIL_text_plain(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
991 {
992         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
993         const char *ptr, *pte;
994         const char *BufPtr = NULL;
995         StrBuf *Line;
996         StrBuf *Line1;
997         StrBuf *Line2;
998         StrBuf *TTarget;
999         long Linecount;
1000         long nEmptyLines;
1001         int bn = 0;
1002         int bq = 0;
1003         int i;
1004         long len;
1005 #ifdef HAVE_ICONV
1006         StrBuf *cs = NULL;
1007         int ConvertIt = 1;
1008         iconv_t ic = (iconv_t)(-1) ;
1009 #endif
1010
1011         if ((StrLength(Mime->Data) == 0) && (Mime->length > 0)) {
1012                 FreeStrBuf(&Mime->Data);
1013                 MimeLoadData(Mime);
1014         }
1015
1016 #ifdef HAVE_ICONV
1017         if (ConvertIt) {
1018                 if (StrLength(Mime->Charset) != 0)
1019                         cs = Mime->Charset;
1020                 else if (StrLength(FoundCharset) > 0)
1021                         cs = FoundCharset;
1022                 else if (StrLength(WC->DefaultCharset) > 0)
1023                         cs = WC->DefaultCharset;
1024                 if (cs == NULL) {
1025                         ConvertIt = 0;
1026                 }
1027                 else if (!strcasecmp(ChrPtr(cs), "utf-8")) {
1028                         ConvertIt = 0;
1029                 }
1030                 else if (!strcasecmp(ChrPtr(cs), "us-ascii")) {
1031                         ConvertIt = 0;
1032                 }
1033                 else {
1034                         ctdl_iconv_open("UTF-8", ChrPtr(cs), &ic);
1035                         if (ic == (iconv_t)(-1) ) {
1036                                 syslog(LOG_WARNING, "%s:%d iconv_open(UTF-8, %s) failed: %s\n",
1037                                         __FILE__, __LINE__, ChrPtr(Mime->Charset), strerror(errno));
1038                         }
1039                 }
1040         }
1041 #endif
1042         Line = NewStrBufPlain(NULL, SIZ);
1043         Line1 = NewStrBufPlain(NULL, SIZ);
1044         Line2 = NewStrBufPlain(NULL, SIZ);
1045         TTarget = NewStrBufPlain(NULL, StrLength(Mime->Data));
1046         Linecount = 0;
1047         nEmptyLines = 0;
1048         if (StrLength(Mime->Data) > 0) 
1049                 do 
1050                 {
1051                         StrBufSipLine(Line, Mime->Data, &BufPtr);
1052                         bq = 0;
1053                         i = 0;
1054                         ptr = ChrPtr(Line);
1055                         len = StrLength(Line);
1056                         pte = ptr + len;
1057                 
1058                         while ((ptr < pte) &&
1059                                ((*ptr == '>') ||
1060                                 isspace(*ptr)))
1061                         {
1062                                 if (*ptr == '>')
1063                                         bq++;
1064                                 ptr ++;
1065                                 i++;
1066                         }
1067                         if (i > 0) StrBufCutLeft(Line, i);
1068                 
1069                         if (StrLength(Line) == 0) {
1070                                 if (Linecount == 0)
1071                                         continue;
1072                                 StrBufAppendBufPlain(TTarget, HKEY("<tt></tt><br>\n"), 0);
1073
1074                                 nEmptyLines ++;
1075                                 continue;
1076                         }
1077                         nEmptyLines = 0;
1078                         for (i = bn; i < bq; i++)                               
1079                                 StrBufAppendBufPlain(TTarget, HKEY("<blockquote>"), 0);
1080                         for (i = bq; i < bn; i++)                               
1081                                 StrBufAppendBufPlain(TTarget, HKEY("</blockquote>"), 0);
1082 #ifdef HAVE_ICONV
1083                         if (ConvertIt) {
1084                                 StrBufConvert(Line, Line1, &ic);
1085                         }
1086 #endif
1087                         StrBufAppendBufPlain(TTarget, HKEY("<tt>"), 0);
1088                         UrlizeText(Line1, Line, Line2);
1089
1090                         StrEscAppend(TTarget, Line1, NULL, 0, 0);
1091                         StrBufAppendBufPlain(TTarget, HKEY("</tt><br>\n"), 0);
1092                         bn = bq;
1093                         Linecount ++;
1094                 }
1095         while ((BufPtr != StrBufNOTNULL) &&
1096                (BufPtr != NULL));
1097
1098         if (nEmptyLines > 0)
1099                 StrBufCutRight(TTarget, nEmptyLines * (sizeof ("<tt></tt><br>\n") - 1));
1100         for (i = 0; i < bn; i++)                                
1101                 StrBufAppendBufPlain(TTarget, HKEY("</blockquote>"), 0);
1102
1103         StrBufAppendBufPlain(TTarget, HKEY("</i><br>"), 0);
1104 #ifdef HAVE_ICONV
1105         if (ic != (iconv_t)(-1) ) {
1106                 iconv_close(ic);
1107         }
1108 #endif
1109
1110         FreeStrBuf(&Mime->Data);
1111         Mime->Data = TTarget;
1112         FlushStrBuf(Mime->ContentType);
1113         StrBufAppendBufPlain(Mime->ContentType, HKEY("text/html"), 0);
1114         FlushStrBuf(Mime->Charset);
1115         StrBufAppendBufPlain(Mime->Charset, HKEY("UTF-8"), 0);
1116         FreeStrBuf(&Line);
1117         FreeStrBuf(&Line1);
1118         FreeStrBuf(&Line2);
1119 }
1120
1121 void render_MAIL_html(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
1122 {
1123         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
1124         StrBuf *Buf;
1125
1126         if (StrLength(Mime->Data) == 0)
1127                 return;
1128
1129         Buf = NewStrBufPlain(NULL, StrLength(Mime->Data));
1130
1131         /* HTML is fun, but we've got to strip it first */
1132         output_html(ChrPtr(Mime->Charset), 
1133                     (WC->CurRoom.view == VIEW_WIKI ? 1 : 0), 
1134                     Mime->msgnum,
1135                     Mime->Data, Buf);
1136         FreeStrBuf(&Mime->Data);
1137         Mime->Data = Buf;
1138 }
1139
1140 #ifdef HAVE_MARKDOWN
1141 void render_MAIL_markdown(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
1142 {
1143 #include <mkdio.h>
1144         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
1145         MMIOT *doc;
1146         char *md_as_html = NULL;
1147
1148         if (StrLength(Mime->Data) == 0)
1149                 return;
1150
1151         doc = mkd_string(ChrPtr(Mime->Data), StrLength(Mime->Data), 0);
1152         mkd_compile(doc, 0);
1153         if (mkd_document(doc, &md_as_html) != EOF) {
1154                 FreeStrBuf(&Mime->Data);
1155                 Mime->Data = NewStrBufPlain(md_as_html, -1);
1156         }
1157 //      free(md_as_html);
1158         mkd_cleanup(doc);
1159
1160 }
1161 #endif
1162
1163 void render_MAIL_UNKNOWN(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
1164 {
1165         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
1166         /* Unknown weirdness */
1167         FlushStrBuf(Mime->Data);
1168         StrBufAppendBufPlain(Mime->Data, _("I don't know how to display "), -1, 0);
1169         StrBufAppendBuf(Mime->Data, Mime->ContentType, 0);
1170         StrBufAppendBufPlain(Mime->Data, HKEY("<br>\n"), 0);
1171 }
1172
1173
1174 HashList *iterate_get_mime_All(StrBuf *Target, WCTemplputParams *TP)
1175 {
1176         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1177         return Msg->Attachments;
1178 }
1179 HashList *iterate_get_mime_Submessages(StrBuf *Target, WCTemplputParams *TP)
1180 {
1181         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1182         return Msg->Submessages;
1183 }
1184 HashList *iterate_get_mime_AttachLinks(StrBuf *Target, WCTemplputParams *TP)
1185 {
1186         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1187         return Msg->AttachLinks;
1188 }
1189 HashList *iterate_get_mime_Attachments(StrBuf *Target, WCTemplputParams *TP)
1190 {
1191         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1192         return Msg->AllAttach;
1193 }
1194
1195 void tmplput_MIME_Name(StrBuf *Target, WCTemplputParams *TP)
1196 {
1197         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1198         StrBufAppendTemplate(Target, TP, mime->Name, 0);
1199 }
1200
1201 void tmplput_MIME_FileName(StrBuf *Target, WCTemplputParams *TP)
1202 {
1203         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1204         StrBufAppendTemplate(Target, TP, mime->FileName, 0);
1205 }
1206
1207 void tmplput_MIME_PartNum(StrBuf *Target, WCTemplputParams *TP)
1208 {
1209         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1210         StrBufAppendTemplate(Target, TP, mime->PartNum, 0);
1211 }
1212
1213 void tmplput_MIME_MsgNum(StrBuf *Target, WCTemplputParams *TP)
1214 {
1215         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1216         StrBufAppendPrintf(Target, "%ld", mime->msgnum);
1217 }
1218
1219 void tmplput_MIME_Disposition(StrBuf *Target, WCTemplputParams *TP)
1220 {
1221         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1222         StrBufAppendTemplate(Target, TP, mime->Disposition, 0);
1223 }
1224
1225 void tmplput_MIME_ContentType(StrBuf *Target, WCTemplputParams *TP)
1226 {
1227         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1228         StrBufAppendTemplate(Target, TP, mime->ContentType, 0);
1229 }
1230
1231 void examine_charset(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
1232 {
1233         Msg->MsgBody->Charset = NewStrBufDup(HdrLine);
1234 }
1235
1236 void tmplput_MIME_Charset(StrBuf *Target, WCTemplputParams *TP)
1237 {
1238         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1239         StrBufAppendTemplate(Target, TP, mime->Charset, 0);
1240 }
1241
1242 void tmplput_MIME_Data(StrBuf *Target, WCTemplputParams *TP)
1243 {
1244         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1245         if (mime->Renderer != NULL)
1246                 mime->Renderer->f(Target, TP, NULL);
1247         StrBufAppendTemplate(Target, TP, mime->Data, 0);
1248         /* TODO: check whether we need to load it now? */
1249 }
1250
1251 void tmplput_MIME_LoadData(StrBuf *Target, WCTemplputParams *TP)
1252 {
1253         wcsession *WCC = WC;    
1254         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1255         wc_mime_attachment *att;
1256         
1257         if (( (!strcasecmp(ChrPtr(mime->Disposition), "inline"))||
1258               (!strcasecmp(ChrPtr(mime->Disposition), "attachment"))) && 
1259             (strcasecmp(ChrPtr(mime->ContentType), "application/ms-tnef")!=0))
1260         {
1261                 
1262                 int n;
1263                 char N[64];
1264                 /* steal this mime part... */
1265                 att = malloc(sizeof(wc_mime_attachment));
1266                 memcpy(att, mime, sizeof(wc_mime_attachment));
1267                 memset(mime, 0, sizeof(wc_mime_attachment));
1268
1269                 if (att->Data == NULL) 
1270                         MimeLoadData(att);
1271
1272                 if (WCC->attachments == NULL)
1273                         WCC->attachments = NewHash(1, NULL);
1274                 /* And add it to the list. */
1275                 n = snprintf(N, sizeof N, "%d", GetCount(WCC->attachments) + 1);
1276                 Put(WCC->attachments, N, n, att, DestroyMime);
1277         }
1278 }
1279
1280 void tmplput_MIME_Length(StrBuf *Target, WCTemplputParams *TP)
1281 {
1282         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1283         StrBufAppendPrintf(Target, "%ld", mime->length);
1284 }
1285
1286 HashList *iterate_get_registered_Attachments(StrBuf *Target, WCTemplputParams *TP)
1287 {
1288         return WC->attachments;
1289 }
1290
1291 void get_registered_Attachments_Count(StrBuf *Target, WCTemplputParams *TP)
1292 {
1293         StrBufAppendPrintf(Target, "%ld", GetCount (WC->attachments));
1294 }
1295
1296 void servcmd_do_search(char *buf, long bufsize)
1297 {
1298         snprintf(buf, bufsize, "MSGS SEARCH|%s", bstr("query"));
1299 }
1300
1301 void servcmd_headers(char *buf, long bufsize)
1302 {
1303         snprintf(buf, bufsize, "MSGS ALL");
1304 }
1305
1306 void servcmd_readfwd(char *buf, long bufsize)
1307 {
1308         snprintf(buf, bufsize, "MSGS ALL");
1309 }
1310
1311 void servcmd_readgt(char *buf, long bufsize)
1312 {
1313         snprintf(buf, bufsize, "MSGS GT|%s", bstr("gt"));
1314 }
1315
1316 void servcmd_readlt(char *buf, long bufsize)
1317 {
1318         snprintf(buf, bufsize, "MSGS LT|%s", bstr("lt"));
1319 }
1320
1321 void servcmd_readnew(char *buf, long bufsize)
1322 {
1323         snprintf(buf, bufsize, "MSGS NEW");
1324 }
1325
1326 void servcmd_readold(char *buf, long bufsize)
1327 {
1328         snprintf(buf, bufsize, "MSGS OLD");
1329 }
1330
1331
1332 /* DO NOT REORDER OR REMOVE ANY OF THESE */
1333 readloop_struct rlid[] = {
1334         { {HKEY("do_search")},  servcmd_do_search       },
1335         { {HKEY("headers")},    servcmd_headers         },
1336         { {HKEY("readfwd")},    servcmd_readfwd         },
1337         { {HKEY("readnew")},    servcmd_readnew         },
1338         { {HKEY("readold")},    servcmd_readold         },
1339         { {HKEY("readgt")},     servcmd_readgt          },
1340         { {HKEY("readlt")},     servcmd_readlt          }
1341 };
1342
1343
1344 int ParseMessageListHeaders_Detail(StrBuf *Line, 
1345                                    const char **pos, 
1346                                    message_summary *Msg, 
1347                                    StrBuf *ConversionBuffer)
1348 {
1349         wcsession *WCC = WC;
1350         long len;
1351         long totallen;
1352
1353         CheckConvertBufs(WCC);
1354
1355         totallen = StrLength(Line);
1356         Msg->from = NewStrBufPlain(NULL, totallen);
1357         len = StrBufExtract_NextToken(ConversionBuffer, Line, pos, '|');
1358         if (len > 0) {
1359                 /* Handle senders with RFC2047 encoding */
1360                 StrBuf_RFC822_2_Utf8(Msg->from, 
1361                                      ConversionBuffer, 
1362                                      WCC->DefaultCharset, 
1363                                      NULL, 
1364                                      WCC->ConvertBuf1,
1365                                      WCC->ConvertBuf2);
1366         }
1367                         
1368         /* node name */
1369         len = StrBufExtract_NextToken(ConversionBuffer, Line, pos, '|');
1370         if ((len > 0 ) &&
1371             ( ((WCC->CurRoom.QRFlags & QR_NETWORK)
1372                || ((strcasecmp(ChrPtr(ConversionBuffer), ChrPtr(WCC->serv_info->serv_nodename))
1373                     && (strcasecmp(ChrPtr(ConversionBuffer), ChrPtr(WCC->serv_info->serv_fqdn))))))))
1374         {
1375                 StrBufAppendBufPlain(Msg->from, HKEY(" @ "), 0);
1376                 StrBufAppendBuf(Msg->from, ConversionBuffer, 0);
1377         }
1378
1379         /* Internet address (not used)
1380          *      StrBufExtract_token(Msg->inetaddr, Line, 4, '|');
1381          */
1382         StrBufSkip_NTokenS(Line, pos, '|', 1);
1383         Msg->subj = NewStrBufPlain(NULL, totallen);
1384
1385         FlushStrBuf(ConversionBuffer);
1386         /* we assume the subject is the last parameter inside of the list; 
1387          * thus we don't use the tokenizer to fetch it, since it will hick up 
1388          * on tokenizer chars inside of the subjects
1389         StrBufExtract_NextToken(ConversionBuffer,  Line, pos, '|');
1390         */
1391         len = 0;
1392         if (*pos != StrBufNOTNULL) {
1393                 len = totallen - (*pos - ChrPtr(Line));
1394                 StrBufPlain(ConversionBuffer, *pos, len);
1395                 *pos = StrBufNOTNULL;
1396                 if ((len > 0) &&
1397                     (*(ChrPtr(ConversionBuffer) + len - 1) == '|'))
1398                         StrBufCutRight(ConversionBuffer, 1);
1399         }
1400
1401         if (len == 0)
1402                 StrBufAppendBufPlain(Msg->subj, _("(no subject)"), -1,0);
1403         else {
1404                 StrBuf_RFC822_2_Utf8(Msg->subj, 
1405                                      ConversionBuffer, 
1406                                      WCC->DefaultCharset, 
1407                                      NULL,
1408                                      WCC->ConvertBuf1,
1409                                      WCC->ConvertBuf2);
1410         }
1411
1412         return 1;
1413 }
1414
1415
1416 int mailview_GetParamsGetServerCall(SharedMessageStatus *Stat, 
1417                                     void **ViewSpecific, 
1418                                     long oper, 
1419                                     char *cmd, 
1420                                     long len,
1421                                     char *filter,
1422                                     long flen)
1423 {
1424         DoTemplate(HKEY("msg_listview"),NULL,&NoCtx);
1425
1426         return 200;
1427 }
1428
1429 int mailview_Cleanup(void **ViewSpecific)
1430 {
1431         /* Note: wDumpContent() will output one additional </div> tag. */
1432         /* We ought to move this out into template */
1433         wDumpContent(1);
1434
1435         return 0;
1436 }
1437
1438
1439 int json_GetParamsGetServerCall(SharedMessageStatus *Stat, 
1440                                 void **ViewSpecific, 
1441                                 long oper, 
1442                                 char *cmd, 
1443                                 long len,
1444                                 char *filter,
1445                                 long flen)
1446 {
1447         Stat->defaultsortorder = 2;
1448         Stat->sortit = 1;
1449         Stat->load_seen = 1;
1450         /* Generally using maxmsgs|startmsg is not required
1451            in mailbox view, but we have a 'safemode' for clients
1452            (*cough* Exploder) that simply can't handle too many */
1453         if (havebstr("maxmsgs"))  Stat->maxmsgs  = ibstr("maxmsgs");
1454         else                      Stat->maxmsgs  = 9999999;
1455         if (havebstr("startmsg")) Stat->startmsg = lbstr("startmsg");
1456         snprintf(cmd, len, "MSGS %s|%s||1",
1457                  (oper == do_search) ? "SEARCH" : "ALL",
1458                  (oper == do_search) ? bstr("query") : ""
1459                 );
1460
1461         return 200;
1462 }
1463 int json_MessageListHdr(SharedMessageStatus *Stat, void **ViewSpecific) 
1464 {
1465         /* TODO: make a generic function */
1466         hprintf("HTTP/1.1 200 OK\r\n");
1467         hprintf("Content-type: application/json; charset=utf-8\r\n");
1468         hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software));
1469         hprintf("Connection: close\r\n");
1470         hprintf("Pragma: no-cache\r\nCache-Control: no-store\r\nExpires:-1\r\n");
1471         begin_burst();
1472         return 0;
1473 }
1474
1475 int json_RenderView_or_Tail(SharedMessageStatus *Stat, 
1476                             void **ViewSpecific, 
1477                             long oper)
1478 {
1479         DoTemplate(HKEY("mailsummary_json"),NULL, NULL);
1480         
1481         return 0;
1482 }
1483
1484 int json_Cleanup(void **ViewSpecific)
1485 {
1486         /* Note: wDumpContent() will output one additional </div> tag. */
1487         /* We ought to move this out into template */
1488         end_burst();
1489
1490         return 0;
1491 }
1492
1493
1494
1495 void 
1496 InitModule_MSGRENDERERS
1497 (void)
1498 {
1499         RegisterCTX(CTX_MAILSUM);
1500         RegisterCTX(CTX_MIME_ATACH);
1501         RegisterReadLoopHandlerset(
1502                 VIEW_MAILBOX,
1503                 mailview_GetParamsGetServerCall,
1504                 NULL, /* TODO: is this right? */
1505                 NULL,
1506                 ParseMessageListHeaders_Detail,
1507                 NULL,
1508                 NULL,
1509                 mailview_Cleanup);
1510
1511         RegisterReadLoopHandlerset(
1512                 VIEW_JSON_LIST,
1513                 json_GetParamsGetServerCall,
1514                 json_MessageListHdr,
1515                 NULL, /* TODO: is this right? */
1516                 ParseMessageListHeaders_Detail,
1517                 NULL,
1518                 json_RenderView_or_Tail,
1519                 json_Cleanup);
1520
1521         RegisterSortFunc(HKEY("date"), 
1522                          NULL, 0,
1523                          summcmp_date,
1524                          summcmp_rdate,
1525                          groupchange_date,
1526                          CTX_MAILSUM);
1527         RegisterSortFunc(HKEY("subject"), 
1528                          NULL, 0,
1529                          summcmp_subj,
1530                          summcmp_rsubj,
1531                          groupchange_subj,
1532                          CTX_MAILSUM);
1533         RegisterSortFunc(HKEY("sender"),
1534                          NULL, 0,
1535                          summcmp_sender,
1536                          summcmp_rsender,
1537                          groupchange_sender,
1538                          CTX_MAILSUM);
1539
1540         RegisterNamespace("SUMM:COUNT", 0, 0, tmplput_SUMM_COUNT, NULL, CTX_NONE);
1541         /* iterate over all known mails in WC->summ */
1542         RegisterIterator("MAIL:SUMM:MSGS", 0, NULL, iterate_get_mailsumm_All,
1543                          NULL,NULL, CTX_MAILSUM, CTX_NONE, IT_NOFLAG);
1544
1545         RegisterNamespace("MAIL:SUMM:EUID", 0, 1, tmplput_MAIL_SUMM_EUID, NULL, CTX_MAILSUM);
1546         RegisterNamespace("MAIL:SUMM:DATEBRIEF", 0, 0, tmplput_MAIL_SUMM_DATE_BRIEF, NULL, CTX_MAILSUM);
1547         RegisterNamespace("MAIL:SUMM:DATEFULL", 0, 0, tmplput_MAIL_SUMM_DATE_FULL, NULL, CTX_MAILSUM);
1548         RegisterNamespace("MAIL:SUMM:DATENO",  0, 0, tmplput_MAIL_SUMM_DATE_NO,  NULL, CTX_MAILSUM);
1549         RegisterNamespace("MAIL:SUMM:N",       0, 0, tmplput_MAIL_SUMM_N,        NULL, CTX_MAILSUM);
1550         RegisterNamespace("MAIL:SUMM:PERMALINK", 0, 0, tmplput_MAIL_SUMM_PERMALINK, NULL, CTX_MAILSUM);
1551         RegisterNamespace("MAIL:SUMM:FROM",    0, 2, tmplput_MAIL_SUMM_FROM,     NULL, CTX_MAILSUM);
1552         RegisterNamespace("MAIL:SUMM:TO",      0, 2, tmplput_MAIL_SUMM_TO,       NULL, CTX_MAILSUM);
1553         RegisterNamespace("MAIL:SUMM:SUBJECT", 0, 4, tmplput_MAIL_SUMM_SUBJECT,  NULL, CTX_MAILSUM);
1554         RegisterNamespace("MAIL:SUMM:NTATACH", 0, 0, tmplput_MAIL_SUMM_NATTACH,  NULL, CTX_MAILSUM);
1555         RegisterNamespace("MAIL:SUMM:CCCC", 0, 2, tmplput_MAIL_SUMM_CCCC, NULL, CTX_MAILSUM);
1556         RegisterNamespace("MAIL:SUMM:REPLYTO", 0, 2, tmplput_MAIL_SUMM_REPLYTO, NULL, CTX_MAILSUM);
1557         RegisterNamespace("MAIL:SUMM:H_NODE", 0, 2, tmplput_MAIL_SUMM_H_NODE,  NULL, CTX_MAILSUM);
1558         RegisterNamespace("MAIL:SUMM:ALLRCPT", 0, 2, tmplput_MAIL_SUMM_ALLRCPT,  NULL, CTX_MAILSUM);
1559         RegisterNamespace("MAIL:SUMM:ORGROOM", 0, 2, tmplput_MAIL_SUMM_ORGROOM,  NULL, CTX_MAILSUM);
1560         RegisterNamespace("MAIL:SUMM:RFCA", 0, 2, tmplput_MAIL_SUMM_RFCA, NULL, CTX_MAILSUM);
1561         RegisterNamespace("MAIL:SUMM:OTHERNODE", 2, 0, tmplput_MAIL_SUMM_OTHERNODE,  NULL, CTX_MAILSUM);
1562         RegisterNamespace("MAIL:SUMM:REFIDS", 0, 1, tmplput_MAIL_SUMM_REFIDS,  NULL, CTX_MAILSUM);
1563         RegisterNamespace("MAIL:SUMM:INREPLYTO", 0, 2, tmplput_MAIL_SUMM_INREPLYTO,  NULL, CTX_MAILSUM);
1564         RegisterNamespace("MAIL:BODY", 0, 2, tmplput_MAIL_BODY,  NULL, CTX_MAILSUM);
1565         RegisterNamespace("MAIL:QUOTETEXT", 1, 2, tmplput_QUOTED_MAIL_BODY,  NULL, CTX_NONE);
1566         RegisterNamespace("MAIL:EDITTEXT", 1, 2, tmplput_EDIT_MAIL_BODY,  NULL, CTX_NONE);
1567         RegisterNamespace("MAIL:EDITWIKI", 1, 2, tmplput_EDIT_WIKI_BODY,  NULL, CTX_NONE);
1568         RegisterConditional("COND:MAIL:SUMM:RFCA", 0, Conditional_MAIL_SUMM_RFCA,  CTX_MAILSUM);
1569         RegisterConditional("COND:MAIL:SUMM:CCCC", 0, Conditional_MAIL_SUMM_CCCC,  CTX_MAILSUM);
1570         RegisterConditional("COND:MAIL:SUMM:REPLYTO", 0, Conditional_MAIL_SUMM_REPLYTO,  CTX_MAILSUM);
1571         RegisterConditional("COND:MAIL:SUMM:UNREAD", 0, Conditional_MAIL_SUMM_UNREAD, CTX_MAILSUM);
1572         RegisterConditional("COND:MAIL:SUMM:H_NODE", 0, Conditional_MAIL_SUMM_H_NODE, CTX_MAILSUM);
1573         RegisterConditional("COND:MAIL:SUMM:OTHERNODE", 0, Conditional_MAIL_SUMM_OTHERNODE, CTX_MAILSUM);
1574         RegisterConditional("COND:MAIL:SUMM:SUBJECT", 0, Conditional_MAIL_SUMM_SUBJECT, CTX_MAILSUM);
1575         RegisterConditional("COND:MAIL:ANON", 0, Conditional_ANONYMOUS_MESSAGE, CTX_MAILSUM);
1576         RegisterConditional("COND:MAIL:TO", 0, Conditional_MAIL_SUMM_TO, CTX_MAILSUM);  
1577         RegisterConditional("COND:MAIL:SUBJ", 0, Conditional_MAIL_SUMM_SUBJ, CTX_MAILSUM);      
1578
1579         /* do we have mimetypes to iterate over? */
1580         RegisterConditional("COND:MAIL:MIME:ATTACH", 0, Conditional_MAIL_MIME_ALL, CTX_MAILSUM);
1581         RegisterConditional("COND:MAIL:MIME:ATTACH:SUBMESSAGES", 0, Conditional_MAIL_MIME_SUBMESSAGES, CTX_MAILSUM);
1582         RegisterConditional("COND:MAIL:MIME:ATTACH:LINKS", 0, Conditional_MAIL_MIME_ATTACHLINKS, CTX_MAILSUM);
1583         RegisterConditional("COND:MAIL:MIME:ATTACH:ATT", 0, Conditional_MAIL_MIME_ATTACH, CTX_MAILSUM);
1584         RegisterIterator("MAIL:MIME:ATTACH", 0, NULL, iterate_get_mime_All, 
1585                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1586         RegisterIterator("MAIL:MIME:ATTACH:SUBMESSAGES", 0, NULL, iterate_get_mime_Submessages, 
1587                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1588         RegisterIterator("MAIL:MIME:ATTACH:LINKS", 0, NULL, iterate_get_mime_AttachLinks, 
1589                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1590         RegisterIterator("MAIL:MIME:ATTACH:ATT", 0, NULL, iterate_get_mime_Attachments, 
1591                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1592
1593         /* Parts of a mime attachent */
1594         RegisterNamespace("MAIL:MIME:NAME", 0, 2, tmplput_MIME_Name, NULL, CTX_MIME_ATACH);
1595         RegisterNamespace("MAIL:MIME:FILENAME", 0, 2, tmplput_MIME_FileName, NULL, CTX_MIME_ATACH);
1596         RegisterNamespace("MAIL:MIME:PARTNUM", 0, 2, tmplput_MIME_PartNum, NULL, CTX_MIME_ATACH);
1597         RegisterNamespace("MAIL:MIME:MSGNUM", 0, 2, tmplput_MIME_MsgNum, NULL, CTX_MIME_ATACH);
1598         RegisterNamespace("MAIL:MIME:DISPOSITION", 0, 2, tmplput_MIME_Disposition, NULL, CTX_MIME_ATACH);
1599         RegisterNamespace("MAIL:MIME:CONTENTTYPE", 0, 2, tmplput_MIME_ContentType, NULL, CTX_MIME_ATACH);
1600         RegisterNamespace("MAIL:MIME:CHARSET", 0, 2, tmplput_MIME_Charset, NULL, CTX_MIME_ATACH);
1601         RegisterNamespace("MAIL:MIME:LENGTH", 0, 2, tmplput_MIME_Length, NULL, CTX_MIME_ATACH);
1602         RegisterNamespace("MAIL:MIME:DATA", 0, 2, tmplput_MIME_Data, NULL, CTX_MIME_ATACH);
1603         /* load the actual attachment into WC->attachments; no output!!! */
1604         RegisterNamespace("MAIL:MIME:LOADDATA", 0, 0, tmplput_MIME_LoadData, NULL, CTX_MIME_ATACH);
1605
1606         /* iterate the WC->attachments; use the above tokens for their contents */
1607         RegisterIterator("MSG:ATTACHNAMES", 0, NULL, iterate_get_registered_Attachments, 
1608                          NULL, NULL, CTX_MIME_ATACH, CTX_NONE, IT_NOFLAG);
1609
1610         RegisterNamespace("MSG:NATTACH", 0, 0, get_registered_Attachments_Count,  NULL, CTX_NONE);
1611
1612         /* mime renderers translate an attachment into webcit viewable html text */
1613         RegisterMimeRenderer(HKEY("message/rfc822"), render_MAIL, 0, 150);
1614         RegisterMimeRenderer(HKEY("text/x-vcard"), render_MIME_VCard, 1, 201);
1615         RegisterMimeRenderer(HKEY("text/vcard"), render_MIME_VCard, 1, 200);
1616 //*
1617         RegisterMimeRenderer(HKEY("text/calendar"), render_MIME_ICS, 1, 501);
1618         RegisterMimeRenderer(HKEY("application/ics"), render_MIME_ICS, 1, 500);
1619 //*/
1620         RegisterMimeRenderer(HKEY("text/x-citadel-variformat"), render_MAIL_variformat, 1, 2);
1621         RegisterMimeRenderer(HKEY("text/plain"), render_MAIL_text_plain, 1, 3);
1622         RegisterMimeRenderer(HKEY("text"), render_MAIL_text_plain, 1, 1);
1623         RegisterMimeRenderer(HKEY("text/html"), render_MAIL_html, 1, 100);
1624 #ifdef HAVE_MARKDOWN
1625         RegisterMimeRenderer(HKEY("text/x-markdown"), render_MAIL_markdown, 1, 30);
1626 #endif
1627         RegisterMimeRenderer(HKEY(""), render_MAIL_UNKNOWN, 0, 0);
1628
1629         /* these headers are citserver replies to MSG4 and friends. one evaluator for each */
1630         RegisterMsgHdr(HKEY("nhdr"), examine_nhdr, 0);
1631         RegisterMsgHdr(HKEY("type"), examine_type, 0);
1632         RegisterMsgHdr(HKEY("from"), examine_from, 0);
1633         RegisterMsgHdr(HKEY("subj"), examine_subj, 0);
1634         RegisterMsgHdr(HKEY("msgn"), examine_msgn, 0);
1635         RegisterMsgHdr(HKEY("wefw"), examine_wefw, 0);
1636         RegisterMsgHdr(HKEY("cccc"), examine_cccc, 0);
1637         RegisterMsgHdr(HKEY("rep2"), examine_replyto, 0);
1638         RegisterMsgHdr(HKEY("hnod"), examine_hnod, 0);
1639         RegisterMsgHdr(HKEY("room"), examine_room, 0);
1640         RegisterMsgHdr(HKEY("rfca"), examine_rfca, 0);
1641         RegisterMsgHdr(HKEY("node"), examine_node, 0);
1642         RegisterMsgHdr(HKEY("rcpt"), examine_rcpt, 0);
1643         RegisterMsgHdr(HKEY("nvto"), examine_nvto, 0);
1644         RegisterMsgHdr(HKEY("time"), examine_time, 0);
1645         RegisterMsgHdr(HKEY("part"), examine_mime_part, 0);
1646         RegisterMsgHdr(HKEY("text"), examine_text, 1);
1647         /* these are the content-type headers we get infront of a message; put it into the same hash since it doesn't clash. */
1648         RegisterMsgHdr(HKEY("X-Citadel-MSG4-Partnum"), examine_msg4_partnum, 0);
1649         RegisterMsgHdr(HKEY("Content-type"), examine_content_type, 0);
1650         RegisterMsgHdr(HKEY("Content-length"), examine_content_lengh, 0);
1651         RegisterMsgHdr(HKEY("Content-transfer-encoding"), examine_content_encoding, 0); /* do we care? */
1652         RegisterMsgHdr(HKEY("charset"), examine_charset, 0);
1653
1654         /* Don't care about these... */
1655         RegisterMsgHdr(HKEY("pref"), examine_pref, 0);
1656         RegisterMsgHdr(HKEY("suff"), examine_suff, 0);
1657         RegisterMsgHdr(HKEY("path"), examine_path, 0);
1658 }
1659
1660 void 
1661 InitModule2_MSGRENDERERS
1662 (void)
1663 {
1664         /* and finalize the anouncement to the server... */
1665         CreateMimeStr();
1666 }
1667 void 
1668 ServerStartModule_MSGRENDERERS
1669 (void)
1670 {
1671         MsgHeaderHandler = NewHash(1, NULL);
1672         MimeRenderHandler = NewHash(1, NULL);
1673         ReadLoopHandler = NewHash(1, NULL);
1674 }
1675
1676 void 
1677 ServerShutdownModule_MSGRENDERERS
1678 (void)
1679 {
1680         DeleteHash(&MsgHeaderHandler);
1681         DeleteHash(&MimeRenderHandler);
1682         DeleteHash(&ReadLoopHandler);
1683 }
1684
1685
1686
1687 void 
1688 SessionDestroyModule_MSGRENDERERS
1689 (wcsession *sess)
1690 {
1691         DeleteHash(&sess->attachments);
1692         FreeStrBuf(&sess->ConvertBuf1);
1693         FreeStrBuf(&sess->ConvertBuf2);
1694 }