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