Markdown Wiki: add our prefix to relative URLs
[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 /*
1142 char * MarkdownHandleURL(const char* SourceURL, const int len, void* something)
1143 {
1144
1145 }
1146 */
1147 void render_MAIL_markdown(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
1148 {
1149 #include <mkdio.h>
1150         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
1151         MMIOT *doc;
1152         char *md_as_html = NULL;
1153
1154         if (StrLength(Mime->Data) == 0)
1155                 return;
1156
1157         doc = mkd_string(ChrPtr(Mime->Data), StrLength(Mime->Data), 0);
1158         mkd_basename(doc, "/wiki?page=");
1159         mkd_compile(doc, 0);
1160         if (mkd_document(doc, &md_as_html) != EOF) {
1161                 FreeStrBuf(&Mime->Data);
1162                 Mime->Data = NewStrBufPlain(md_as_html, -1);
1163         }
1164 //      free(md_as_html);
1165         mkd_cleanup(doc);
1166
1167 }
1168 #endif
1169
1170 void render_MAIL_UNKNOWN(StrBuf *Target, WCTemplputParams *TP, StrBuf *FoundCharset)
1171 {
1172         wc_mime_attachment *Mime = (wc_mime_attachment *) CTX(CTX_MIME_ATACH);
1173         /* Unknown weirdness */
1174         FlushStrBuf(Mime->Data);
1175         StrBufAppendBufPlain(Mime->Data, _("I don't know how to display "), -1, 0);
1176         StrBufAppendBuf(Mime->Data, Mime->ContentType, 0);
1177         StrBufAppendBufPlain(Mime->Data, HKEY("<br>\n"), 0);
1178 }
1179
1180
1181 HashList *iterate_get_mime_All(StrBuf *Target, WCTemplputParams *TP)
1182 {
1183         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1184         return Msg->Attachments;
1185 }
1186 HashList *iterate_get_mime_Submessages(StrBuf *Target, WCTemplputParams *TP)
1187 {
1188         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1189         return Msg->Submessages;
1190 }
1191 HashList *iterate_get_mime_AttachLinks(StrBuf *Target, WCTemplputParams *TP)
1192 {
1193         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1194         return Msg->AttachLinks;
1195 }
1196 HashList *iterate_get_mime_Attachments(StrBuf *Target, WCTemplputParams *TP)
1197 {
1198         message_summary *Msg = (message_summary*) CTX(CTX_MAILSUM);
1199         return Msg->AllAttach;
1200 }
1201
1202 void tmplput_MIME_Name(StrBuf *Target, WCTemplputParams *TP)
1203 {
1204         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1205         StrBufAppendTemplate(Target, TP, mime->Name, 0);
1206 }
1207
1208 void tmplput_MIME_FileName(StrBuf *Target, WCTemplputParams *TP)
1209 {
1210         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1211         StrBufAppendTemplate(Target, TP, mime->FileName, 0);
1212 }
1213
1214 void tmplput_MIME_PartNum(StrBuf *Target, WCTemplputParams *TP)
1215 {
1216         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1217         StrBufAppendTemplate(Target, TP, mime->PartNum, 0);
1218 }
1219
1220 void tmplput_MIME_MsgNum(StrBuf *Target, WCTemplputParams *TP)
1221 {
1222         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1223         StrBufAppendPrintf(Target, "%ld", mime->msgnum);
1224 }
1225
1226 void tmplput_MIME_Disposition(StrBuf *Target, WCTemplputParams *TP)
1227 {
1228         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1229         StrBufAppendTemplate(Target, TP, mime->Disposition, 0);
1230 }
1231
1232 void tmplput_MIME_ContentType(StrBuf *Target, WCTemplputParams *TP)
1233 {
1234         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1235         StrBufAppendTemplate(Target, TP, mime->ContentType, 0);
1236 }
1237
1238 void examine_charset(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
1239 {
1240         Msg->MsgBody->Charset = NewStrBufDup(HdrLine);
1241 }
1242
1243 void tmplput_MIME_Charset(StrBuf *Target, WCTemplputParams *TP)
1244 {
1245         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1246         StrBufAppendTemplate(Target, TP, mime->Charset, 0);
1247 }
1248
1249 void tmplput_MIME_Data(StrBuf *Target, WCTemplputParams *TP)
1250 {
1251         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1252         if (mime->Renderer != NULL)
1253                 mime->Renderer->f(Target, TP, NULL);
1254         StrBufAppendTemplate(Target, TP, mime->Data, 0);
1255         /* TODO: check whether we need to load it now? */
1256 }
1257
1258 void tmplput_MIME_LoadData(StrBuf *Target, WCTemplputParams *TP)
1259 {
1260         wcsession *WCC = WC;    
1261         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1262         wc_mime_attachment *att;
1263         
1264         if (( (!strcasecmp(ChrPtr(mime->Disposition), "inline"))||
1265               (!strcasecmp(ChrPtr(mime->Disposition), "attachment"))) && 
1266             (strcasecmp(ChrPtr(mime->ContentType), "application/ms-tnef")!=0))
1267         {
1268                 
1269                 int n;
1270                 char N[64];
1271                 /* steal this mime part... */
1272                 att = malloc(sizeof(wc_mime_attachment));
1273                 memcpy(att, mime, sizeof(wc_mime_attachment));
1274                 memset(mime, 0, sizeof(wc_mime_attachment));
1275
1276                 if (att->Data == NULL) 
1277                         MimeLoadData(att);
1278
1279                 if (WCC->attachments == NULL)
1280                         WCC->attachments = NewHash(1, NULL);
1281                 /* And add it to the list. */
1282                 n = snprintf(N, sizeof N, "%d", GetCount(WCC->attachments) + 1);
1283                 Put(WCC->attachments, N, n, att, DestroyMime);
1284         }
1285 }
1286
1287 void tmplput_MIME_Length(StrBuf *Target, WCTemplputParams *TP)
1288 {
1289         wc_mime_attachment *mime = (wc_mime_attachment*) CTX(CTX_MIME_ATACH);
1290         StrBufAppendPrintf(Target, "%ld", mime->length);
1291 }
1292
1293 HashList *iterate_get_registered_Attachments(StrBuf *Target, WCTemplputParams *TP)
1294 {
1295         return WC->attachments;
1296 }
1297
1298 void get_registered_Attachments_Count(StrBuf *Target, WCTemplputParams *TP)
1299 {
1300         StrBufAppendPrintf(Target, "%ld", GetCount (WC->attachments));
1301 }
1302
1303 void servcmd_do_search(char *buf, long bufsize)
1304 {
1305         snprintf(buf, bufsize, "MSGS SEARCH|%s", bstr("query"));
1306 }
1307
1308 void servcmd_headers(char *buf, long bufsize)
1309 {
1310         snprintf(buf, bufsize, "MSGS ALL");
1311 }
1312
1313 void servcmd_readfwd(char *buf, long bufsize)
1314 {
1315         snprintf(buf, bufsize, "MSGS ALL");
1316 }
1317
1318 void servcmd_readgt(char *buf, long bufsize)
1319 {
1320         snprintf(buf, bufsize, "MSGS GT|%s", bstr("gt"));
1321 }
1322
1323 void servcmd_readlt(char *buf, long bufsize)
1324 {
1325         snprintf(buf, bufsize, "MSGS LT|%s", bstr("lt"));
1326 }
1327
1328 void servcmd_readnew(char *buf, long bufsize)
1329 {
1330         snprintf(buf, bufsize, "MSGS NEW");
1331 }
1332
1333 void servcmd_readold(char *buf, long bufsize)
1334 {
1335         snprintf(buf, bufsize, "MSGS OLD");
1336 }
1337
1338
1339 /* DO NOT REORDER OR REMOVE ANY OF THESE */
1340 readloop_struct rlid[] = {
1341         { {HKEY("do_search")},  servcmd_do_search       },
1342         { {HKEY("headers")},    servcmd_headers         },
1343         { {HKEY("readfwd")},    servcmd_readfwd         },
1344         { {HKEY("readnew")},    servcmd_readnew         },
1345         { {HKEY("readold")},    servcmd_readold         },
1346         { {HKEY("readgt")},     servcmd_readgt          },
1347         { {HKEY("readlt")},     servcmd_readlt          }
1348 };
1349
1350
1351 int ParseMessageListHeaders_Detail(StrBuf *Line, 
1352                                    const char **pos, 
1353                                    message_summary *Msg, 
1354                                    StrBuf *ConversionBuffer)
1355 {
1356         wcsession *WCC = WC;
1357         long len;
1358         long totallen;
1359
1360         CheckConvertBufs(WCC);
1361
1362         totallen = StrLength(Line);
1363         Msg->from = NewStrBufPlain(NULL, totallen);
1364         len = StrBufExtract_NextToken(ConversionBuffer, Line, pos, '|');
1365         if (len > 0) {
1366                 /* Handle senders with RFC2047 encoding */
1367                 StrBuf_RFC822_2_Utf8(Msg->from, 
1368                                      ConversionBuffer, 
1369                                      WCC->DefaultCharset, 
1370                                      NULL, 
1371                                      WCC->ConvertBuf1,
1372                                      WCC->ConvertBuf2);
1373         }
1374                         
1375         /* node name */
1376         len = StrBufExtract_NextToken(ConversionBuffer, Line, pos, '|');
1377         if ((len > 0 ) &&
1378             ( ((WCC->CurRoom.QRFlags & QR_NETWORK)
1379                || ((strcasecmp(ChrPtr(ConversionBuffer), ChrPtr(WCC->serv_info->serv_nodename))
1380                     && (strcasecmp(ChrPtr(ConversionBuffer), ChrPtr(WCC->serv_info->serv_fqdn))))))))
1381         {
1382                 StrBufAppendBufPlain(Msg->from, HKEY(" @ "), 0);
1383                 StrBufAppendBuf(Msg->from, ConversionBuffer, 0);
1384         }
1385
1386         /* Internet address (not used)
1387          *      StrBufExtract_token(Msg->inetaddr, Line, 4, '|');
1388          */
1389         StrBufSkip_NTokenS(Line, pos, '|', 1);
1390         Msg->subj = NewStrBufPlain(NULL, totallen);
1391
1392         FlushStrBuf(ConversionBuffer);
1393         /* we assume the subject is the last parameter inside of the list; 
1394          * thus we don't use the tokenizer to fetch it, since it will hick up 
1395          * on tokenizer chars inside of the subjects
1396         StrBufExtract_NextToken(ConversionBuffer,  Line, pos, '|');
1397         */
1398         len = 0;
1399         if (*pos != StrBufNOTNULL) {
1400                 len = totallen - (*pos - ChrPtr(Line));
1401                 StrBufPlain(ConversionBuffer, *pos, len);
1402                 *pos = StrBufNOTNULL;
1403                 if ((len > 0) &&
1404                     (*(ChrPtr(ConversionBuffer) + len - 1) == '|'))
1405                         StrBufCutRight(ConversionBuffer, 1);
1406         }
1407
1408         if (len == 0)
1409                 StrBufAppendBufPlain(Msg->subj, _("(no subject)"), -1,0);
1410         else {
1411                 StrBuf_RFC822_2_Utf8(Msg->subj, 
1412                                      ConversionBuffer, 
1413                                      WCC->DefaultCharset, 
1414                                      NULL,
1415                                      WCC->ConvertBuf1,
1416                                      WCC->ConvertBuf2);
1417         }
1418
1419         return 1;
1420 }
1421
1422
1423 int mailview_GetParamsGetServerCall(SharedMessageStatus *Stat, 
1424                                     void **ViewSpecific, 
1425                                     long oper, 
1426                                     char *cmd, 
1427                                     long len,
1428                                     char *filter,
1429                                     long flen)
1430 {
1431         DoTemplate(HKEY("msg_listview"),NULL,&NoCtx);
1432
1433         return 200;
1434 }
1435
1436 int mailview_Cleanup(void **ViewSpecific)
1437 {
1438         /* Note: wDumpContent() will output one additional </div> tag. */
1439         /* We ought to move this out into template */
1440         wDumpContent(1);
1441
1442         return 0;
1443 }
1444
1445
1446 int json_GetParamsGetServerCall(SharedMessageStatus *Stat, 
1447                                 void **ViewSpecific, 
1448                                 long oper, 
1449                                 char *cmd, 
1450                                 long len,
1451                                 char *filter,
1452                                 long flen)
1453 {
1454         Stat->defaultsortorder = 2;
1455         Stat->sortit = 1;
1456         Stat->load_seen = 1;
1457         /* Generally using maxmsgs|startmsg is not required
1458            in mailbox view, but we have a 'safemode' for clients
1459            (*cough* Exploder) that simply can't handle too many */
1460         if (havebstr("maxmsgs"))  Stat->maxmsgs  = ibstr("maxmsgs");
1461         else                      Stat->maxmsgs  = 9999999;
1462         if (havebstr("startmsg")) Stat->startmsg = lbstr("startmsg");
1463         snprintf(cmd, len, "MSGS %s|%s||1",
1464                  (oper == do_search) ? "SEARCH" : "ALL",
1465                  (oper == do_search) ? bstr("query") : ""
1466                 );
1467
1468         return 200;
1469 }
1470 int json_MessageListHdr(SharedMessageStatus *Stat, void **ViewSpecific) 
1471 {
1472         /* TODO: make a generic function */
1473         hprintf("HTTP/1.1 200 OK\r\n");
1474         hprintf("Content-type: application/json; charset=utf-8\r\n");
1475         hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software));
1476         hprintf("Connection: close\r\n");
1477         hprintf("Pragma: no-cache\r\nCache-Control: no-store\r\nExpires:-1\r\n");
1478         begin_burst();
1479         return 0;
1480 }
1481
1482 int json_RenderView_or_Tail(SharedMessageStatus *Stat, 
1483                             void **ViewSpecific, 
1484                             long oper)
1485 {
1486         DoTemplate(HKEY("mailsummary_json"),NULL, NULL);
1487         
1488         return 0;
1489 }
1490
1491 int json_Cleanup(void **ViewSpecific)
1492 {
1493         /* Note: wDumpContent() will output one additional </div> tag. */
1494         /* We ought to move this out into template */
1495         end_burst();
1496
1497         return 0;
1498 }
1499
1500
1501
1502 void 
1503 InitModule_MSGRENDERERS
1504 (void)
1505 {
1506         RegisterCTX(CTX_MAILSUM);
1507         RegisterCTX(CTX_MIME_ATACH);
1508         RegisterReadLoopHandlerset(
1509                 VIEW_MAILBOX,
1510                 mailview_GetParamsGetServerCall,
1511                 NULL, /* TODO: is this right? */
1512                 NULL,
1513                 ParseMessageListHeaders_Detail,
1514                 NULL,
1515                 NULL,
1516                 mailview_Cleanup);
1517
1518         RegisterReadLoopHandlerset(
1519                 VIEW_JSON_LIST,
1520                 json_GetParamsGetServerCall,
1521                 json_MessageListHdr,
1522                 NULL, /* TODO: is this right? */
1523                 ParseMessageListHeaders_Detail,
1524                 NULL,
1525                 json_RenderView_or_Tail,
1526                 json_Cleanup);
1527
1528         RegisterSortFunc(HKEY("date"), 
1529                          NULL, 0,
1530                          summcmp_date,
1531                          summcmp_rdate,
1532                          groupchange_date,
1533                          CTX_MAILSUM);
1534         RegisterSortFunc(HKEY("subject"), 
1535                          NULL, 0,
1536                          summcmp_subj,
1537                          summcmp_rsubj,
1538                          groupchange_subj,
1539                          CTX_MAILSUM);
1540         RegisterSortFunc(HKEY("sender"),
1541                          NULL, 0,
1542                          summcmp_sender,
1543                          summcmp_rsender,
1544                          groupchange_sender,
1545                          CTX_MAILSUM);
1546
1547         RegisterNamespace("SUMM:COUNT", 0, 0, tmplput_SUMM_COUNT, NULL, CTX_NONE);
1548         /* iterate over all known mails in WC->summ */
1549         RegisterIterator("MAIL:SUMM:MSGS", 0, NULL, iterate_get_mailsumm_All,
1550                          NULL,NULL, CTX_MAILSUM, CTX_NONE, IT_NOFLAG);
1551
1552         RegisterNamespace("MAIL:SUMM:EUID", 0, 1, tmplput_MAIL_SUMM_EUID, NULL, CTX_MAILSUM);
1553         RegisterNamespace("MAIL:SUMM:DATEBRIEF", 0, 0, tmplput_MAIL_SUMM_DATE_BRIEF, NULL, CTX_MAILSUM);
1554         RegisterNamespace("MAIL:SUMM:DATEFULL", 0, 0, tmplput_MAIL_SUMM_DATE_FULL, NULL, CTX_MAILSUM);
1555         RegisterNamespace("MAIL:SUMM:DATENO",  0, 0, tmplput_MAIL_SUMM_DATE_NO,  NULL, CTX_MAILSUM);
1556         RegisterNamespace("MAIL:SUMM:N",       0, 0, tmplput_MAIL_SUMM_N,        NULL, CTX_MAILSUM);
1557         RegisterNamespace("MAIL:SUMM:PERMALINK", 0, 0, tmplput_MAIL_SUMM_PERMALINK, NULL, CTX_MAILSUM);
1558         RegisterNamespace("MAIL:SUMM:FROM",    0, 2, tmplput_MAIL_SUMM_FROM,     NULL, CTX_MAILSUM);
1559         RegisterNamespace("MAIL:SUMM:TO",      0, 2, tmplput_MAIL_SUMM_TO,       NULL, CTX_MAILSUM);
1560         RegisterNamespace("MAIL:SUMM:SUBJECT", 0, 4, tmplput_MAIL_SUMM_SUBJECT,  NULL, CTX_MAILSUM);
1561         RegisterNamespace("MAIL:SUMM:NTATACH", 0, 0, tmplput_MAIL_SUMM_NATTACH,  NULL, CTX_MAILSUM);
1562         RegisterNamespace("MAIL:SUMM:CCCC", 0, 2, tmplput_MAIL_SUMM_CCCC, NULL, CTX_MAILSUM);
1563         RegisterNamespace("MAIL:SUMM:REPLYTO", 0, 2, tmplput_MAIL_SUMM_REPLYTO, NULL, CTX_MAILSUM);
1564         RegisterNamespace("MAIL:SUMM:H_NODE", 0, 2, tmplput_MAIL_SUMM_H_NODE,  NULL, CTX_MAILSUM);
1565         RegisterNamespace("MAIL:SUMM:ALLRCPT", 0, 2, tmplput_MAIL_SUMM_ALLRCPT,  NULL, CTX_MAILSUM);
1566         RegisterNamespace("MAIL:SUMM:ORGROOM", 0, 2, tmplput_MAIL_SUMM_ORGROOM,  NULL, CTX_MAILSUM);
1567         RegisterNamespace("MAIL:SUMM:RFCA", 0, 2, tmplput_MAIL_SUMM_RFCA, NULL, CTX_MAILSUM);
1568         RegisterNamespace("MAIL:SUMM:OTHERNODE", 2, 0, tmplput_MAIL_SUMM_OTHERNODE,  NULL, CTX_MAILSUM);
1569         RegisterNamespace("MAIL:SUMM:REFIDS", 0, 1, tmplput_MAIL_SUMM_REFIDS,  NULL, CTX_MAILSUM);
1570         RegisterNamespace("MAIL:SUMM:INREPLYTO", 0, 2, tmplput_MAIL_SUMM_INREPLYTO,  NULL, CTX_MAILSUM);
1571         RegisterNamespace("MAIL:BODY", 0, 2, tmplput_MAIL_BODY,  NULL, CTX_MAILSUM);
1572         RegisterNamespace("MAIL:QUOTETEXT", 1, 2, tmplput_QUOTED_MAIL_BODY,  NULL, CTX_NONE);
1573         RegisterNamespace("MAIL:EDITTEXT", 1, 2, tmplput_EDIT_MAIL_BODY,  NULL, CTX_NONE);
1574         RegisterNamespace("MAIL:EDITWIKI", 1, 2, tmplput_EDIT_WIKI_BODY,  NULL, CTX_NONE);
1575         RegisterConditional("COND:MAIL:SUMM:RFCA", 0, Conditional_MAIL_SUMM_RFCA,  CTX_MAILSUM);
1576         RegisterConditional("COND:MAIL:SUMM:CCCC", 0, Conditional_MAIL_SUMM_CCCC,  CTX_MAILSUM);
1577         RegisterConditional("COND:MAIL:SUMM:REPLYTO", 0, Conditional_MAIL_SUMM_REPLYTO,  CTX_MAILSUM);
1578         RegisterConditional("COND:MAIL:SUMM:UNREAD", 0, Conditional_MAIL_SUMM_UNREAD, CTX_MAILSUM);
1579         RegisterConditional("COND:MAIL:SUMM:H_NODE", 0, Conditional_MAIL_SUMM_H_NODE, CTX_MAILSUM);
1580         RegisterConditional("COND:MAIL:SUMM:OTHERNODE", 0, Conditional_MAIL_SUMM_OTHERNODE, CTX_MAILSUM);
1581         RegisterConditional("COND:MAIL:SUMM:SUBJECT", 0, Conditional_MAIL_SUMM_SUBJECT, CTX_MAILSUM);
1582         RegisterConditional("COND:MAIL:ANON", 0, Conditional_ANONYMOUS_MESSAGE, CTX_MAILSUM);
1583         RegisterConditional("COND:MAIL:TO", 0, Conditional_MAIL_SUMM_TO, CTX_MAILSUM);  
1584         RegisterConditional("COND:MAIL:SUBJ", 0, Conditional_MAIL_SUMM_SUBJ, CTX_MAILSUM);      
1585
1586         /* do we have mimetypes to iterate over? */
1587         RegisterConditional("COND:MAIL:MIME:ATTACH", 0, Conditional_MAIL_MIME_ALL, CTX_MAILSUM);
1588         RegisterConditional("COND:MAIL:MIME:ATTACH:SUBMESSAGES", 0, Conditional_MAIL_MIME_SUBMESSAGES, CTX_MAILSUM);
1589         RegisterConditional("COND:MAIL:MIME:ATTACH:LINKS", 0, Conditional_MAIL_MIME_ATTACHLINKS, CTX_MAILSUM);
1590         RegisterConditional("COND:MAIL:MIME:ATTACH:ATT", 0, Conditional_MAIL_MIME_ATTACH, CTX_MAILSUM);
1591         RegisterIterator("MAIL:MIME:ATTACH", 0, NULL, iterate_get_mime_All, 
1592                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1593         RegisterIterator("MAIL:MIME:ATTACH:SUBMESSAGES", 0, NULL, iterate_get_mime_Submessages, 
1594                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1595         RegisterIterator("MAIL:MIME:ATTACH:LINKS", 0, NULL, iterate_get_mime_AttachLinks, 
1596                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1597         RegisterIterator("MAIL:MIME:ATTACH:ATT", 0, NULL, iterate_get_mime_Attachments, 
1598                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM, IT_NOFLAG);
1599
1600         /* Parts of a mime attachent */
1601         RegisterNamespace("MAIL:MIME:NAME", 0, 2, tmplput_MIME_Name, NULL, CTX_MIME_ATACH);
1602         RegisterNamespace("MAIL:MIME:FILENAME", 0, 2, tmplput_MIME_FileName, NULL, CTX_MIME_ATACH);
1603         RegisterNamespace("MAIL:MIME:PARTNUM", 0, 2, tmplput_MIME_PartNum, NULL, CTX_MIME_ATACH);
1604         RegisterNamespace("MAIL:MIME:MSGNUM", 0, 2, tmplput_MIME_MsgNum, NULL, CTX_MIME_ATACH);
1605         RegisterNamespace("MAIL:MIME:DISPOSITION", 0, 2, tmplput_MIME_Disposition, NULL, CTX_MIME_ATACH);
1606         RegisterNamespace("MAIL:MIME:CONTENTTYPE", 0, 2, tmplput_MIME_ContentType, NULL, CTX_MIME_ATACH);
1607         RegisterNamespace("MAIL:MIME:CHARSET", 0, 2, tmplput_MIME_Charset, NULL, CTX_MIME_ATACH);
1608         RegisterNamespace("MAIL:MIME:LENGTH", 0, 2, tmplput_MIME_Length, NULL, CTX_MIME_ATACH);
1609         RegisterNamespace("MAIL:MIME:DATA", 0, 2, tmplput_MIME_Data, NULL, CTX_MIME_ATACH);
1610         /* load the actual attachment into WC->attachments; no output!!! */
1611         RegisterNamespace("MAIL:MIME:LOADDATA", 0, 0, tmplput_MIME_LoadData, NULL, CTX_MIME_ATACH);
1612
1613         /* iterate the WC->attachments; use the above tokens for their contents */
1614         RegisterIterator("MSG:ATTACHNAMES", 0, NULL, iterate_get_registered_Attachments, 
1615                          NULL, NULL, CTX_MIME_ATACH, CTX_NONE, IT_NOFLAG);
1616
1617         RegisterNamespace("MSG:NATTACH", 0, 0, get_registered_Attachments_Count,  NULL, CTX_NONE);
1618
1619         /* mime renderers translate an attachment into webcit viewable html text */
1620         RegisterMimeRenderer(HKEY("message/rfc822"), render_MAIL, 0, 150);
1621         RegisterMimeRenderer(HKEY("text/x-vcard"), render_MIME_VCard, 1, 201);
1622         RegisterMimeRenderer(HKEY("text/vcard"), render_MIME_VCard, 1, 200);
1623 //*
1624         RegisterMimeRenderer(HKEY("text/calendar"), render_MIME_ICS, 1, 501);
1625         RegisterMimeRenderer(HKEY("application/ics"), render_MIME_ICS, 1, 500);
1626 //*/
1627         RegisterMimeRenderer(HKEY("text/x-citadel-variformat"), render_MAIL_variformat, 1, 2);
1628         RegisterMimeRenderer(HKEY("text/plain"), render_MAIL_text_plain, 1, 3);
1629         RegisterMimeRenderer(HKEY("text"), render_MAIL_text_plain, 1, 1);
1630         RegisterMimeRenderer(HKEY("text/html"), render_MAIL_html, 1, 100);
1631 #ifdef HAVE_MARKDOWN
1632         RegisterMimeRenderer(HKEY("text/x-markdown"), render_MAIL_markdown, 1, 30);
1633 #endif
1634         RegisterMimeRenderer(HKEY(""), render_MAIL_UNKNOWN, 0, 0);
1635
1636         /* these headers are citserver replies to MSG4 and friends. one evaluator for each */
1637         RegisterMsgHdr(HKEY("nhdr"), examine_nhdr, 0);
1638         RegisterMsgHdr(HKEY("type"), examine_type, 0);
1639         RegisterMsgHdr(HKEY("from"), examine_from, 0);
1640         RegisterMsgHdr(HKEY("subj"), examine_subj, 0);
1641         RegisterMsgHdr(HKEY("msgn"), examine_msgn, 0);
1642         RegisterMsgHdr(HKEY("wefw"), examine_wefw, 0);
1643         RegisterMsgHdr(HKEY("cccc"), examine_cccc, 0);
1644         RegisterMsgHdr(HKEY("rep2"), examine_replyto, 0);
1645         RegisterMsgHdr(HKEY("hnod"), examine_hnod, 0);
1646         RegisterMsgHdr(HKEY("room"), examine_room, 0);
1647         RegisterMsgHdr(HKEY("rfca"), examine_rfca, 0);
1648         RegisterMsgHdr(HKEY("node"), examine_node, 0);
1649         RegisterMsgHdr(HKEY("rcpt"), examine_rcpt, 0);
1650         RegisterMsgHdr(HKEY("nvto"), examine_nvto, 0);
1651         RegisterMsgHdr(HKEY("time"), examine_time, 0);
1652         RegisterMsgHdr(HKEY("part"), examine_mime_part, 0);
1653         RegisterMsgHdr(HKEY("text"), examine_text, 1);
1654         /* these are the content-type headers we get infront of a message; put it into the same hash since it doesn't clash. */
1655         RegisterMsgHdr(HKEY("X-Citadel-MSG4-Partnum"), examine_msg4_partnum, 0);
1656         RegisterMsgHdr(HKEY("Content-type"), examine_content_type, 0);
1657         RegisterMsgHdr(HKEY("Content-length"), examine_content_lengh, 0);
1658         RegisterMsgHdr(HKEY("Content-transfer-encoding"), examine_content_encoding, 0); /* do we care? */
1659         RegisterMsgHdr(HKEY("charset"), examine_charset, 0);
1660
1661         /* Don't care about these... */
1662         RegisterMsgHdr(HKEY("pref"), examine_pref, 0);
1663         RegisterMsgHdr(HKEY("suff"), examine_suff, 0);
1664         RegisterMsgHdr(HKEY("path"), examine_path, 0);
1665 }
1666
1667 void 
1668 InitModule2_MSGRENDERERS
1669 (void)
1670 {
1671         /* and finalize the anouncement to the server... */
1672         CreateMimeStr();
1673 }
1674 void 
1675 ServerStartModule_MSGRENDERERS
1676 (void)
1677 {
1678         MsgHeaderHandler = NewHash(1, NULL);
1679         MimeRenderHandler = NewHash(1, NULL);
1680         ReadLoopHandler = NewHash(1, NULL);
1681 }
1682
1683 void 
1684 ServerShutdownModule_MSGRENDERERS
1685 (void)
1686 {
1687         DeleteHash(&MsgHeaderHandler);
1688         DeleteHash(&MimeRenderHandler);
1689         DeleteHash(&ReadLoopHandler);
1690 }
1691
1692
1693
1694 void 
1695 SessionDestroyModule_MSGRENDERERS
1696 (wcsession *sess)
1697 {
1698         DeleteHash(&sess->attachments);
1699         FreeStrBuf(&sess->ConvertBuf1);
1700         FreeStrBuf(&sess->ConvertBuf2);
1701 }