File: display.c

package info (click to toggle)
prayer 1.3.5-dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,596 kB
  • sloc: ansic: 43,163; makefile: 817; sh: 445; perl: 166
file content (768 lines) | stat: -rw-r--r-- 24,156 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
/* $Cambridge: hermes/src/prayer/session/display.c,v 1.16 2010/07/12 10:34:51 dpc22 Exp $ */

#include "prayer_session.h"

/* ====================================================================== */

static BOOL simple_string_compare(char *s1, char *s2)
{
    if ((s1 == NIL) && (s2 == NIL))
        return T;

    if ((s1 == NIL) || (s2 == NIL))
        return NIL;

    return (!strcmp(s1, s2));
}

/* Compare two ADDRESS structures, see if identical
 *   Returns: T   => definitely identical, can use shortcuts.
 *            NIL => Not clear whether identical. Don't try to use shortcuts.
 */

static BOOL simple_address_compare(ADDRESS * addr1, ADDRESS * addr2)
{
    /* Get rid of two difficult cases quickly */

    if ((addr1 == NIL) || (addr2 == NIL))
        return NIL;

    if ((addr1->next != NIL) || (addr2->next != NIL))
        return NIL;

    if (simple_string_compare(addr1->personal, addr2->personal) &&
        simple_string_compare(addr1->adl, addr2->adl) &&
        simple_string_compare(addr1->mailbox, addr2->mailbox) &&
        simple_string_compare(addr1->host, addr2->host) &&
        simple_string_compare(addr1->error, addr2->error))
        return T;

    return NIL;
}

static BOOL
display_addr(struct template_vals *tvals, char *array, ADDRESS * addr,
             struct abook *abook)
{
    struct pool *pool = tvals->pool;
    ADDRESS *a;
    char *email;
    struct abook_entry *abe;
    unsigned long offset = 0;

    for (a = addr; a; a = a->next) {
        template_vals_foreach_init(tvals, array, offset);
        if (a->next)
            template_vals_foreach_string(tvals, array, offset, "next", "1");

        if (!(a->mailbox && a->host)) {
            /* Something that we can't parse sensibly */
            template_vals_foreach_string(tvals, array, offset, "raw",
                                         addr_text(pool, a));
            offset++;
            continue;
        }

        email = pool_strcat3(pool, a->mailbox, "@", a->host);
        template_vals_foreach_string(tvals, array, offset, "email", email);

        abe = abook_find_email(abook, email);
        if (abe && abe->alias) {
            template_vals_foreach_string(tvals, array, offset,
                                         "alias", abe->alias);
        }

        if (a->personal && a->personal[0]) {
            unsigned long len = strlen(a->personal) + 20;
            char *tmp = pool_alloc(pool, len);   /* Decoded form smaller */
            char *d = (char *) rfc1522_decode((unsigned char *) tmp,
                                              len, a->personal, NIL);

            template_vals_foreach_string(tvals, array, offset, "personal", d);
        }
        offset++;
    }
    return(T);
}

BOOL
display_addhdrs(struct session *session,
                MAILSTREAM *stream, unsigned long msgno)
{
    struct template_vals *tvals = session->template_vals;
    struct abook *abook = session->options->abook;
    MESSAGECACHE *elt;
    ENVELOPE *env;

    if (!((elt = ml_elt(session, stream, msgno)) &&
          (env = ml_fetch_structure(session, stream, msgno, NIL, 0))))
        return (NIL);

    if (session->full_hdrs)
        template_vals_ulong(tvals, "$full_hdrs", 1);

    if (env->reply_to
        && !simple_address_compare(env->reply_to, env->from))
        display_addr(tvals, "@reply_to", env->reply_to, abook);

    display_addr(tvals, "@from", env->from, abook);
    if (env->to)
        display_addr(tvals, "@to", env->to, abook);
    if (env->cc)
        display_addr(tvals, "@cc", env->cc, abook);

    if (env->date)
        template_vals_string(tvals, "$date", (char *)env->date);
    else
        template_vals_string(tvals, "$date", "(Unknown date)");

    if (env->subject) {
        char *subject = env->subject;

        subject = (char *)
            rfc1522_decode(pool_alloc(tvals->pool, strlen(subject)),
                           strlen(subject), subject, NIL);

        template_vals_string(tvals, "$subject", subject);
    } else
        template_vals_string(tvals, "$subject", "(No subject)");

    return(T);
}

/* ====================================================================== */

BOOL
display_addnav(struct session *session,
               MAILSTREAM *stream, unsigned long msgno)
{
    struct template_vals *tvals = session->template_vals;
    struct msgmap *zm = session->zm;
    unsigned long zm_offset = msgmap_find(zm, msgno);
    unsigned long uid;
    MESSAGECACHE *elt;

    if (!(elt = ml_elt(session, stream, msgno)))
        return (NIL);
    if (elt->deleted)
        template_vals_hash_ulong(tvals, "$nav", "deleted", 1);

    uid = ml_uid(session, stream, msgno);
    template_vals_hash_ulong(tvals, "$nav", "cur_msg", msgno);
    template_vals_hash_ulong(tvals, "$nav", "cur_uid", uid);
    template_vals_hash_ulong(tvals, "$nav", "msg_count",msgmap_size(zm)); 

    if (msgmap_has_mark(zm, msgno))
        template_vals_hash_ulong(tvals, "$nav", "marked", 1);

    if (zm_offset > 1) {
        msgno = msgmap_value(zm, zm_offset - 1);
        uid = ml_uid(session, stream, msgno);

        template_vals_hash_ulong(tvals, "$nav", "prev_msg", msgno);
        template_vals_hash_ulong(tvals, "$nav", "prev_uid", uid);
    }
    if (zm_offset < msgmap_size(zm)) {
        msgno = msgmap_value(zm, zm_offset + 1);
        uid = ml_uid(session, stream, msgno);

        template_vals_hash_ulong(tvals, "$nav", "next_msg", msgno);
        template_vals_hash_ulong(tvals, "$nav", "next_uid", uid);
    }
    return(T);
}


/* ====================================================================== */

/* Parse RFC 2231 name of form ISO-8859-1''%a3
 *
 * Returns simple UTF-8 string or NIL if the input was NIL.
 */

static char *parse_2231(char *value, struct pool *pool)
{
    char *s, *t, *charset;

    if (!value)
        return(NIL);

    value = pool_strdup(pool, value);

    if ((s=strchr(value, '\'')) && ((t=strchr(s+1, '\'')))) {
        *s++ = '\0';
        *t++ = '\0';

        charset = value;
        value   = t;

        string_url_decode(value);

        if (!strcasecmp(charset, "utf-8"))
            return(value);

        if (charset[0] == '\0')
            charset = "ISO-8859-1";   /* Default not specified by RFC 2231 */

        return(utf8_from_string(pool, charset, value, strlen(value)));
    }
    return(NIL);
}

static char *body_get_name(BODY *body, struct pool *pool)
{
    PARAMETER *parameter;
    char *name = NIL;

    for (parameter = body->parameter; parameter;
         parameter = parameter->next) {
        if (!strcasecmp(parameter->attribute, "NAME*")) {
            name = parse_2231(parameter->value, pool);
        } else if (!strcasecmp(parameter->attribute, "NAME")) {
            name = parameter->value;
        }
    }
    if (!name && body->description)
        name = body->description;

    if (!name && body->disposition.type) {
        for (parameter = body->disposition.parameter; parameter;
             parameter = parameter->next) {
            if (!strcasecmp(parameter->attribute, "FILENAME*")) {
                name = parse_2231(parameter->value, pool);
            } else if (!strcasecmp(parameter->attribute, "FILENAME")) {
                name = parameter->value;
            }
        }
    }
    if (!name)
        name = "";

    return(name);
}


/* show_structure():
 *   Recursively render message MIME structure as collection of
 *   nested <ol> with links to body parts.
 *
 *  session:
 *    tvals: Template vals to render into
 *  offsetp: Offset into @atts list
 *    msgno: Message that we are rendering
 *   msguid: Message UID
 *     body: Current body part that we are rendering
 *  section: IMAP session number prefix for this body part
 *        i: Offset count for multipart messages. ($section$i gives offset).
 *             (section and i could be combined, this approach requires
 *              fewer temporary copies of strings).
 */

static void
show_structure_simple(struct template_vals *tvals,
                      unsigned long offset,
                      BODY * body)
{
    struct pool *pool = tvals->pool;
    char *type, *name, *size;

    name = body_get_name(body, pool);
    template_vals_foreach_string(tvals, "@atts", offset, "name", name);

    type = pool_strcat3(pool, body_types[body->type], "/", body->subtype);
    string_lcase(type);

    template_vals_foreach_string(tvals, "@atts", offset, "type", type);
    template_vals_foreach_ulong(tvals, "@atts", offset,
                                "lines", body->size.lines);

    if (body->size.bytes >= 2048)
        size = pool_printf(pool, "%lu KBytes", body->size.bytes / 1024);
    else if (body->size.bytes != 1)
        size = pool_printf(pool, "%lu bytes", body->size.bytes);
    else
        size = "1 byte";
    template_vals_foreach_string(tvals, "@atts", offset, "size", size);
}

static void
show_structure(struct template_vals *tvals, unsigned long *offsetp,
               BODY * body, char *parent, long i)
{
    struct pool *pool = tvals->pool;
    PART *part;
    char *section;

    if (parent) {
        template_vals_foreach_init(tvals, "@atts", *offsetp);
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "start_item", 1);
        (*offsetp)++; 
    }

    template_vals_foreach_init(tvals, "@atts", *offsetp);
    if (parent && parent[0])
        section = pool_printf(pool, "%s.%d", parent, i);
    else
        section = pool_printf(pool, "%d", i);
    template_vals_foreach_string(tvals, "@atts", *offsetp, "section", section);

    switch (body->type) {
    case TYPEMULTIPART:
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "start_list", 1);
        if (parent)
            template_vals_foreach_ulong(tvals, "@atts", *offsetp,
                                        "nested_multipart", 1);
        (*offsetp)++;
        for (i = 1, part = body->nested.part; part != NIL;
             part = part->next, i++) {
            show_structure(tvals, offsetp, &part->body,
                           (parent) ? section : "", i);
        }
        template_vals_foreach_init(tvals, "@atts", *offsetp);
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "end_list", 1);
        if (parent)
            template_vals_foreach_ulong(tvals, "@atts", *offsetp,
                                        "nested_multipart", 1);
        (*offsetp)++; 
        break;
    case TYPEMESSAGE:
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "is_msg", 1);
        show_structure_simple(tvals, *offsetp, body);
        (*offsetp)++;

        if (!strcmp(body->subtype, "RFC822")
            && (body = body->nested.msg->body)) {
            template_vals_foreach_init(tvals, "@atts", *offsetp);
            template_vals_foreach_ulong(tvals, "@atts", *offsetp,
                                        "start_list", 1);
            (*offsetp)++;
            if (body->type == TYPEMULTIPART) {
                /* Nested multipart message */
                for (i = 1, part = body->nested.part; part != NIL;
                     part = part->next, i++) {
                    show_structure(tvals, offsetp, &part->body, section, i);
                }
            } else {
                /* Nested singlepart message */
                show_structure(tvals, offsetp, body, section, 1);
            }
            template_vals_foreach_init(tvals, "@atts", *offsetp);
            template_vals_foreach_ulong(tvals, "@atts", *offsetp,
                                        "end_list", 1);
            (*offsetp)++;
        }
        break;
    case TYPETEXT:
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "is_text", 1);
        /* Fall through to default */
    default:
        show_structure_simple(tvals, *offsetp, body);
        (*offsetp)++;
        break;
    }

    if (parent) {
        template_vals_foreach_init(tvals, "@atts", *offsetp);
        template_vals_foreach_ulong(tvals, "@atts", *offsetp, "end_item", 1);
        (*offsetp)++; 
    }
}

/* ====================================================================== */

/* show_textpart():
 *
 * Render given text section into output buffer. Code factored out from
 * cmd_display() so that it can be used for simple text/plain messages,
 * as well as multipart. Could also be used to display all text bodyparts.
 *
 */

static BOOL
show_textpart(struct session *session,
              MAILSTREAM *stream,
              unsigned long msgno,
              char *section,
              BOOL html_show_images,
              int depth)
{
    struct template_vals *tvals = session->template_vals;
    struct options *options = session->options;
    struct prefs *prefs = options->prefs;
    struct request *request = session->request;
    struct pool *pool = request->pool;
    struct buffer *b = request->write_buffer;
    char *init_msg, *decode_msg;
    char *charset = "ISO-8859-1";
    unsigned long len;
    BODY *body = NIL;
    BOOL show_html = NIL;
    PARAMETER *parameter;

    if (!(body = ml_body(session, stream, msgno, section)))
        return(NIL);

    /* Include section numbers for tree leaves only */
    if (section && (depth > 0))
        bprintf(b, "<p>Part %s:</p>"CRLF, section);

    if (body->type != TYPETEXT) {
        session_alert(session, "Invalid body type (should never happen)");
        session_log(session, "show_textpart(): Invalid bodypart");
        return(NIL);
    }

    for (parameter = body->parameter; parameter; parameter = parameter->next) {
        if (strcasecmp(parameter->attribute, "charset") == 0) {
            charset = parameter->value;
            break;
        }
    }

    if (!(init_msg = ml_fetchbody(session, stream, msgno, section, &len)))
        return(NIL);

    /* Strip off encoding */
    switch (body->encoding) {
    case ENCBASE64:
        decode_msg = (char *) rfc822_base64((unsigned char *) init_msg,
                                            body->size.bytes, &len);

        if (!decode_msg) {
            /* Decode failed */
            decode_msg = init_msg;
            len = body->size.bytes;
        }
        break;
    case ENCQUOTEDPRINTABLE:
        decode_msg = (char *) rfc822_qprint((unsigned char *) init_msg,
                                            body->size.bytes, &len);

        if (!decode_msg) {
            /* Decode failed */
            decode_msg = init_msg;
            len = body->size.bytes;
        }
        break;
    case ENC7BIT:
    case ENC8BIT:
    case ENCBINARY:
    case ENCOTHER:
    default:
        decode_msg = init_msg;
        len = body->size.bytes;
    }

    if ((prefs->html_inline) &&
        body->subtype && !strcasecmp(body->subtype, "html"))
        show_html = T;
    else if (prefs->html_inline_auto) {
        char *s = decode_msg;

        while ((*s == ' ') || (*s == '\t') || (*s == '\015')
               || (*s == '\012'))
            s++;

        if (!strncasecmp(s, "<html>", strlen("<html>")))
            show_html = T;
        else if (!strncasecmp
                 (s, "<!doctype html ", strlen("<!doctype html ")))
            show_html = T;
        else
            show_html = NIL;
    } else
        show_html = NIL;

    if (show_html) {
        if (!prefs->html_remote_images) {
            template_vals_ulong(tvals, "$is_html", 1);
            if (html_show_images)
                template_vals_ulong(tvals, "$html_images_shown", 1);
            template_expand("display_images", tvals, b);
        }

        if (decode_msg == init_msg)
            decode_msg = strdup(init_msg);

        bputs(b, "<div class=\"fix_fonts\">"CRLF);
        html_secure(session, b, html_show_images,
                    utf8_from_string(pool, charset, decode_msg, len));
        bputs(b, "</div>"CRLF);
    } else {
        bprintf(b, "<pre>" CRLF);
        wrap_line_html(session, b,
                       utf8_from_string(pool, charset, decode_msg, len), 80);
        bprintf(b, "</pre>" CRLF);
    }

    if (decode_msg != init_msg)
        fs_give((void **) &decode_msg);

    return(T);
}

/* ====================================================================== */

static STRINGLIST *new_strlst(char **l)
{
    STRINGLIST *sl = mail_newstringlist();

    sl->text.data = (unsigned char *) (*l);
    sl->text.size = strlen(*l);
    sl->next = (*++l) ? new_strlst(l) : NULL;
    return (sl);
}

static BOOL
show_message_hdrs(struct session *session, MAILSTREAM *stream,
                  unsigned long msgno, char *section, int depth)
{
    static char *short_hdrs[] =
        { "from", "to", "cc", "date", "subject", NIL };
    static STRINGLIST *hdrslist_cache = NIL;
    STRINGLIST *hdrslist;
    struct request *request = session->request;
    struct buffer *b = request->write_buffer;
    char *hdr;
    unsigned long len;

    if (!hdrslist_cache)
        hdrslist_cache = new_strlst(short_hdrs);
    hdrslist = (session->full_hdrs) ? NIL : hdrslist_cache;

    if (section && (depth > 0))
        bprintf(b, "<p>Part %s:</p>"CRLF, section);

    bprintf(b, "<pre>"CRLF);

    hdr = ml_fetch_header(session, stream, msgno, section, hdrslist, &len, 0);
    if (!hdr)
        return(NIL);
    html_quote_string(b, hdr);

    bprintf(b, "</pre>"CRLF);

    return(T);

}

static BOOL
show_message(struct session *session, MAILSTREAM *stream,
             unsigned long msgno, char *section, int depth)
{
    struct request *request = session->request;
    struct buffer *b = request->write_buffer;
    char *msg;
    unsigned long len;

    if (!show_message_hdrs(session, stream, msgno, section, depth))
        return(NIL);

    bprintf(b, "<pre>"CRLF);

    msg =  ml_fetch_body(session, stream, msgno, section, &len, 0);
    if (!msg)
        return(NIL);
    html_quote_string(b, msg);  /* No attempt to decode: raw text */

    bprintf(b, "</pre>"CRLF);

    return(T);
}

static BOOL
show_attachment(struct session *session, MAILSTREAM *stream,
                unsigned long msgno, char *section, int depth)
{
    struct request *request = session->request;
    struct buffer *b = request->write_buffer;
    struct pool *pool = request->pool;
    BODY *body = NIL;
    char *type, *name, *size;
    unsigned long uid = ml_uid(session, stream, msgno);

    if (!(body = ml_body(session, stream, msgno, section)))
        return(NIL);

    name = body_get_name(body, pool);
    type = pool_strcat3(pool, body_types[body->type], "/", body->subtype);
    string_lcase(type);

    if (body->size.bytes >= 2048)
        size = pool_printf(pool, "%lu KBytes", body->size.bytes / 1024);
    else if (body->size.bytes != 1)
        size = pool_printf(pool, "%lu bytes", body->size.bytes);
    else
        size = "1 byte";

    bprintf(b, "<p>Part %s: ", section);

    /* XXX Evil session URLs. */
    bprintf(b, "<a href=\"%s/NOSEQ/rawdisplay/%lu/%lu/%s/%s/%s\">",
            session->url_prefix_bsession, msgno, uid, section,
            string_url_encode(pool, type),
            string_url_encode(pool, name));
    html_quote_string(b, name);
    bputs(b, " ");
    html_quote_string(b, type);
    bprintf(b, " (%s)</a></p>"CRLF, size);

    return(T);
}

/* ====================================================================== */

static int
find_single_text_section(BODY *body)
{
    PART *part = body->nested.part;
    int   i = 1, body_plain = 0, body_html = 0;

    for (i = 1; part != NIL; part = part->next, i++) {
        if (!(body = &part->body))
            continue;

        if ((body->type != TYPETEXT) || !body->subtype)
            continue;

        if (!strcasecmp(body->subtype, "plain")) {
            if (!body_plain) body_plain = i;
        } else if (!strcasecmp(body->subtype, "html")) {
            if (!body_html) body_html = i;
        }
    }
    return((body_plain) ? body_plain : body_html);
}

static BOOL
show_tree(struct session *session, MAILSTREAM *stream, unsigned long msgno,
          BODY *body, char *parent, long i, BOOL html_show_images, int depth)

{
    struct request *request = session->request;
    struct pool *pool = request->pool;
    PART *part;
    char *section;

    if (parent && parent[0]) {
        section = pool_printf(pool, "%s.%d", parent, i);
    } else 
        section = pool_printf(pool, "%d", i);

    switch (body->type) {
    case TYPETEXT:
        if (!show_textpart(session, stream, msgno, section,
                           html_show_images, depth))
            return(NIL);
        break;
    case TYPEMULTIPART:
        if (body->subtype && !strcasecmp(body->subtype, "alternative")) {
            int subsection = find_single_text_section(body);
            
            if (subsection) {
                if (parent)
                    section = pool_printf(pool, "%s.%lu", section, subsection);
                else
                    section = pool_printf(pool, "%lu", subsection);
        
                if (!show_textpart(session, stream, msgno, section,
                                   html_show_images, depth))
                    return(NIL);
            }
        } else {
            for (i = 1, part = body->nested.part; part != NIL;
                 part = part->next, i++) {

                if (!show_tree(session, stream, msgno, &part->body,
                               (parent) ? section : "", i,
                               html_show_images, depth+1))
                    return(NIL);
            }
        }
        break;
    case TYPEMESSAGE:
        if (!show_message_hdrs(session, stream, msgno, section, depth))
            return(NIL);

        if (!strcmp(body->subtype, "RFC822")
            && (body = body->nested.msg->body)) {
            if (body->type == TYPEMULTIPART) {
                /* Nested multipart message */
                for (i = 1, part = body->nested.part; part != NIL;
                     part = part->next, i++) {
                    if (!show_tree(session, stream, msgno,
                                   &part->body, section, i,
                                   html_show_images, depth+1))
                        return(NIL);
                }
            } else {
                /* Nested singlepart message */
                if (!show_tree(session, stream, msgno,
                               body, section, 1, html_show_images, depth+1))
                    return(NIL);
            }
        }
        break;
    default: 
        if (!show_attachment(session, stream, msgno, section, depth))
            return(NIL);
        break;
    }
    return(T);
}

/* ====================================================================== */

BOOL
display_body(struct session *session,
             struct request *request,
             MAILSTREAM *stream,
             unsigned long msgno,
             char *section,
             char *cmd,
             BOOL html_show_images)
{
    struct template_vals *tvals = session->template_vals;
    struct buffer *b = request->write_buffer;
    BODY *body = NIL;

    /* Fetch message structure */
    if (!ml_fetch_structure(session, stream, msgno, &body, NIL)) {
        session_redirect(session, request, "restart");
        return(NIL);
    }

    /* Print out MIME bodystructure if multipart message */
    if ((body->type == TYPEMULTIPART) || (body->type == TYPEMESSAGE)) {
        unsigned long offset = 0;

        show_structure(tvals, &offset, body, NIL, 1);
        template_expand("display_mime", tvals, b);
    }

    if (section && section[0]) {
        bprintf(b, "<p>Part %s:</p>"CRLF, section);

        template_vals_string(tvals, "$section", section);

        if ((body = ml_body(session, stream, msgno, section)) == NIL)
            return(NIL);

        switch (body->type) {
        case TYPETEXT:
            show_textpart(session, stream, msgno, section, html_show_images, 0);
            break;
        case TYPEMULTIPART:
            show_tree(session, stream, msgno,
                      body, section, 1, html_show_images, 0);
            break;
        case TYPEMESSAGE:
            show_message(session, stream, msgno, section, 0);
            break;
        }
    } else {
        show_tree(session, stream, msgno, body, NIL, 1, html_show_images, 0);
    }
    
    return(T);
}