Rewrite is_from efficiently, and put it in lib-mime where it belongs.
[apps/madmutt.git] / pager.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  *
5  * Parts were written/modified by:
6  * Nico Golde <nico@ngolde.de>
7  * Andreas Krennmair <ak@synflood.at>
8  *
9  * This file is part of mutt-ng, see http://www.muttng.org/.
10  * It's licensed under the GNU General Public License,
11  * please see the file GPL in the top level source directory.
12  */
13
14 #include <lib-lib/lib-lib.h>
15
16 #include <lib-ui/lib-ui.h>
17 #include <lib-ui/enter.h>
18 #include <lib-ui/menu.h>
19 #include <lib-ui/sidebar.h>
20 #include <lib-mx/mx.h>
21
22 #include "mutt.h"
23 #include "crypt.h"
24 #include "alias.h"
25 #include "keymap.h"
26 #include "sort.h"
27 #include "pager.h"
28 #include "attach.h"
29 #include "recvattach.h"
30 #include "charset.h"
31 #include "buffy.h"
32
33 #include <imap/imap_private.h>
34
35 #define ISHEADER(x) ((x) == MT_COLOR_HEADER || (x) == MT_COLOR_HDEFAULT)
36
37 #define IsAttach(x)      (x && (x)->bdy)
38 #define IsRecvAttach(x)  (x && (x)->bdy && (x)->fp)
39 #define IsSendAttach(x)  (x && (x)->bdy && !(x)->fp)
40 #define IsMsgAttach(x)   (x && (x)->fp && (x)->bdy && (x)->bdy->hdr)
41 #define IsHeader(x)      (x && (x)->hdr && !(x)->bdy)
42
43 /* hack to return to position when returning from index to same message */
44 static int TopLine = 0;
45 static HEADER *OldHdr = NULL;
46
47 #define CHECK_MODE(x) \
48     if (!(x)) {                                         \
49         mutt_flushinp();                                \
50         mutt_error _("Not available in this menu.");    \
51         break;                                          \
52     }
53
54 #define CHECK_READONLY \
55     if (Context->readonly) {                            \
56         mutt_flushinp();                                \
57         mutt_error _("Mailbox is read-only.");          \
58         break;                                          \
59     }
60
61 #define CHECK_ATTACH \
62     if (option(OPTATTACHMSG)) {                         \
63         mutt_flushinp();                                \
64         mutt_error _("Function not permitted in attach-message mode."); \
65         break;                                          \
66     }
67
68 struct q_class_t {
69   int length;
70   int index;
71   int color;
72   char *prefix;
73   struct q_class_t *next, *prev;
74   struct q_class_t *down, *up;
75 };
76
77 struct syntax_t {
78   int color;
79   int first;
80   int last;
81 };
82
83 struct line_t {
84   off_t offset;
85   short type;
86   short continuation;
87   short chunks;
88   short search_cnt;
89   struct syntax_t *syntax;
90   struct syntax_t *search;
91   struct q_class_t *quote;
92 };
93
94 #define ANSI_OFF       (1<<0)
95 #define ANSI_BLINK     (1<<1)
96 #define ANSI_BOLD      (1<<2)
97 #define ANSI_UNDERLINE (1<<3)
98 #define ANSI_REVERSE   (1<<4)
99 #define ANSI_COLOR     (1<<5)
100
101 typedef struct _ansi_attr {
102   int attr;
103   int fg;
104   int bg;
105   int pair;
106 } ansi_attr;
107
108 static short InHelp = 0;
109
110 static struct resize {
111   int line;
112   int SearchCompiled;
113   int SearchBack;
114 } *Resize = NULL;
115
116 #define NumSigLines 4
117
118 static int check_sig(const char *s, struct line_t *info, int n)
119 {
120     int count = 0;
121
122     while (n > 0 && count <= NumSigLines) {
123         if (info[n].type != MT_COLOR_SIGNATURE)
124             break;
125         count++;
126         n--;
127     }
128
129     if (count == 0)
130         return -1;
131
132     if (count > NumSigLines) {
133         /* check for a blank line */
134         s = skipspaces(s);
135         return *s ? -1 : 0;
136     }
137
138     return 0;
139 }
140
141 static void
142 resolve_color (struct line_t *lineInfo, int n, int cnt, int flags,
143                int special, ansi_attr * a)
144 {
145   int def_color;                /* color without syntax hilight */
146   int color;                    /* final color */
147   static int last_color;        /* last color set */
148   int search = 0, i, m;
149
150   if (!cnt)
151     last_color = -1;            /* force wattrset(main_w) */
152
153   if (lineInfo[n].continuation) {
154     if (!cnt && option (OPTMARKERS)) {
155       SETCOLOR(main_w, MT_COLOR_MARKERS);
156       waddch(main_w, '+');
157       last_color = ColorDefs[MT_COLOR_MARKERS];
158     }
159     m = (lineInfo[n].syntax)[0].first;
160     cnt += (lineInfo[n].syntax)[0].last;
161   } else {
162     m = n;
163   }
164
165   if (!(flags & M_SHOWCOLOR))
166     def_color = ColorDefs[MT_COLOR_NORMAL];
167   else if (lineInfo[m].type == MT_COLOR_HEADER)
168     def_color = (lineInfo[m].syntax)[0].color;
169   else
170     def_color = ColorDefs[lineInfo[m].type];
171
172   if ((flags & M_SHOWCOLOR) && lineInfo[m].type == MT_COLOR_QUOTED) {
173     struct q_class_t *class = lineInfo[m].quote;
174
175     if (class) {
176       def_color = class->color;
177
178       while (class && class->length > cnt) {
179         def_color = class->color;
180         class = class->up;
181       }
182     }
183   }
184
185   color = def_color;
186   if (flags & M_SHOWCOLOR) {
187     for (i = 0; i < lineInfo[m].chunks; i++) {
188       /* we assume the chunks are sorted */
189       if (cnt > (lineInfo[m].syntax)[i].last)
190         continue;
191       if (cnt < (lineInfo[m].syntax)[i].first)
192         break;
193       if (cnt != (lineInfo[m].syntax)[i].last) {
194         color = (lineInfo[m].syntax)[i].color;
195         break;
196       }
197       /* don't break here, as cnt might be in the next chunk as well */
198     }
199   }
200
201   if (flags & M_SEARCH) {
202     for (i = 0; i < lineInfo[m].search_cnt; i++) {
203       if (cnt > (lineInfo[m].search)[i].last)
204         continue;
205       if (cnt < (lineInfo[m].search)[i].first)
206         break;
207       if (cnt != (lineInfo[m].search)[i].last) {
208         color = ColorDefs[MT_COLOR_SEARCH];
209         search = 1;
210         break;
211       }
212     }
213   }
214
215   /* handle "special" bold & underlined characters */
216   if (special || a->attr) {
217     if ((a->attr & ANSI_COLOR)) {
218       if (a->pair == -1)
219         a->pair = mutt_alloc_color (a->fg, a->bg);
220       color = a->pair;
221       if (a->attr & ANSI_BOLD)
222         color |= A_BOLD;
223     } else
224     if ((special & A_BOLD) || (a->attr & ANSI_BOLD)) {
225       if (ColorDefs[MT_COLOR_BOLD] && !search)
226         color = ColorDefs[MT_COLOR_BOLD];
227       else
228         color ^= A_BOLD;
229     }
230     if ((special & A_UNDERLINE) || (a->attr & ANSI_UNDERLINE)) {
231       if (ColorDefs[MT_COLOR_UNDERLINE] && !search)
232         color = ColorDefs[MT_COLOR_UNDERLINE];
233       else
234         color ^= A_UNDERLINE;
235     }
236     else if (a->attr & ANSI_REVERSE) {
237       color ^= A_REVERSE;
238     }
239     else if (a->attr & ANSI_BLINK) {
240       color ^= A_BLINK;
241     }
242     else if (a->attr & ANSI_OFF) {
243       a->attr = 0;
244     }
245   }
246
247   if (color != last_color) {
248     wattrset(main_w, color);
249     last_color = color;
250   }
251 }
252
253 static void append_line (struct line_t *lineInfo, int n, int cnt)
254 {
255   int m;
256
257   lineInfo[n + 1].type = lineInfo[n].type;
258   lineInfo[n + 1].syntax[0].color = lineInfo[n].syntax[0].color;
259   lineInfo[n + 1].continuation = 1;
260
261   /* find the real start of the line */
262   for (m = n; m >= 0; m--)
263       if (lineInfo[m].continuation == 0)
264           break;
265
266   (lineInfo[n + 1].syntax)[0].first = m;
267   (lineInfo[n + 1].syntax)[0].last = (lineInfo[n].continuation) ?
268       cnt + (lineInfo[n].syntax)[0].last : cnt;
269 }
270
271 static void new_class_color (struct q_class_t *class, int *q_level)
272 {
273     class->index = (*q_level)++;
274     class->color = ColorQuote[class->index % ColorQuoteUsed];
275 }
276
277 static void
278 shift_class_colors (struct q_class_t *QuoteList, struct q_class_t *new_class,
279                     int lindex, int *q_level)
280 {
281     struct q_class_t *q_list;
282
283     q_list = QuoteList;
284     new_class->index = -1;
285
286     while (q_list) {
287         if (q_list->index >= lindex) {
288             q_list->index++;
289             q_list->color = ColorQuote[q_list->index % ColorQuoteUsed];
290         }
291         if (q_list->down)
292             q_list = q_list->down;
293         else if (q_list->next)
294             q_list = q_list->next;
295         else {
296             while (!q_list->next) {
297                 q_list = q_list->up;
298                 if (q_list == NULL)
299                     break;
300             }
301             if (q_list)
302                 q_list = q_list->next;
303         }
304     }
305
306     new_class->index = lindex;
307     new_class->color = ColorQuote[lindex % ColorQuoteUsed];
308     (*q_level)++;
309 }
310
311 static void cleanup_quote(struct q_class_t **QuoteList)
312 {
313     while (*QuoteList) {
314         struct q_class_t *ptr = (*QuoteList)->next;
315         cleanup_quote(&(*QuoteList)->down);
316         p_delete(&(*QuoteList)->prefix);
317         p_delete(QuoteList);
318         *QuoteList = ptr;
319     }
320 }
321
322 static struct q_class_t *classify_quote (struct q_class_t **QuoteList,
323                                          const char *qptr, int length,
324                                          int *force_redraw, int *q_level)
325 {
326     struct q_class_t *q_list = *QuoteList;
327     struct q_class_t *class = NULL, *tmp = NULL, *ptr, *save;
328     char *tail_qptr;
329     int offset, tail_lng;
330     int lindex = -1;
331
332     if (ColorQuoteUsed <= 1) {
333         /* not much point in classifying quotes... */
334
335         if (*QuoteList == NULL) {
336             class = p_new(struct q_class_t, 1);
337             class->color = ColorQuote[0];
338             *QuoteList = class;
339         }
340         return (*QuoteList);
341     }
342
343     /* Did I mention how much I like emulating Lisp in C? */
344
345     /* classify quoting prefix */
346     while (q_list) {
347         if (length <= q_list->length) {
348             /* case 1: check the top level nodes */
349
350             if (m_strncmp(qptr, q_list->prefix, length) == 0) {
351                 if (length == q_list->length)
352                     return q_list;        /* same prefix: return the current class */
353
354                 /* found shorter prefix */
355                 if (tmp == NULL) {
356                     /* add a node above q_list */
357                     tmp = p_new(struct q_class_t, 1);
358                     tmp->prefix = p_dupstr(qptr, length);
359                     tmp->length = length;
360
361                     /* replace q_list by tmp in the top level list */
362                     if (q_list->next) {
363                         tmp->next = q_list->next;
364                         q_list->next->prev = tmp;
365                     }
366                     if (q_list->prev) {
367                         tmp->prev = q_list->prev;
368                         q_list->prev->next = tmp;
369                     }
370
371                     /* make q_list a child of tmp */
372                     tmp->down = q_list;
373                     q_list->up = tmp;
374
375                     /* q_list has no siblings for now */
376                     q_list->next = NULL;
377                     q_list->prev = NULL;
378
379                     /* update the root if necessary */
380                     if (q_list == *QuoteList)
381                         *QuoteList = tmp;
382
383                     lindex = q_list->index;
384
385                     /* tmp should be the return class too */
386                     class = tmp;
387
388                     /* next class to test; if tmp is a shorter prefix for another
389                      * node, that node can only be in the top level list, so don't
390                      * go down after this point
391                      */
392                     q_list = tmp->next;
393                 } else {
394                     /* found another branch for which tmp is a shorter prefix */
395
396                     /* save the next sibling for later */
397                     save = q_list->next;
398
399                     /* unlink q_list from the top level list */
400                     if (q_list->next)
401                         q_list->next->prev = q_list->prev;
402                     if (q_list->prev)
403                         q_list->prev->next = q_list->next;
404
405                     /* at this point, we have a tmp->down; link q_list to it */
406                     ptr = tmp->down;
407                     /* sibling order is important here, q_list should be linked last */
408                     while (ptr->next)
409                         ptr = ptr->next;
410                     ptr->next = q_list;
411                     q_list->next = NULL;
412                     q_list->prev = ptr;
413                     q_list->up = tmp;
414
415                     lindex = q_list->index;
416
417                     /* next class to test; as above, we shouldn't go down */
418                     q_list = save;
419                 }
420
421                 /* we found a shorter prefix, so certain quotes have changed classes */
422                 *force_redraw = 1;
423                 continue;
424             } else {
425                 /* shorter, but not a substring of the current class: try next */
426                 q_list = q_list->next;
427                 continue;
428             }
429         } else {
430             /* case 2: try subclassing the current top level node */
431
432             /* tmp != NULL means we already found a shorter prefix at case 1 */
433             if (tmp == NULL
434                 && m_strncmp(qptr, q_list->prefix, q_list->length) == 0) {
435                 /* ok, it's a subclass somewhere on this branch */
436
437                 ptr = q_list;
438                 offset = q_list->length;
439
440                 q_list = q_list->down;
441                 tail_lng = length - offset;
442                 tail_qptr = (char *) qptr + offset;
443
444                 while (q_list) {
445                     if (length <= q_list->length) {
446                         if (m_strncmp(tail_qptr, (q_list->prefix) + offset, tail_lng)
447                             == 0) {
448                             /* same prefix: return the current class */
449                             if (length == q_list->length)
450                                 return q_list;
451
452                             /* found shorter common prefix */
453                             if (tmp == NULL) {
454                                 /* add a node above q_list */
455                                 tmp = p_new(struct q_class_t, 1);
456                                 tmp->prefix = p_dupstr(qptr, length);
457                                 tmp->length = length;
458
459                                 /* replace q_list by tmp */
460                                 if (q_list->next) {
461                                     tmp->next = q_list->next;
462                                     q_list->next->prev = tmp;
463                                 }
464                                 if (q_list->prev) {
465                                     tmp->prev = q_list->prev;
466                                     q_list->prev->next = tmp;
467                                 }
468
469                                 /* make q_list a child of tmp */
470                                 tmp->down = q_list;
471                                 tmp->up = q_list->up;
472                                 q_list->up = tmp;
473                                 if (tmp->up->down == q_list)
474                                     tmp->up->down = tmp;
475
476                                 /* q_list has no siblings */
477                                 q_list->next = NULL;
478                                 q_list->prev = NULL;
479
480                                 lindex = q_list->index;
481
482                                 /* tmp should be the return class too */
483                                 class = tmp;
484
485                                 /* next class to test */
486                                 q_list = tmp->next;
487                             } else {
488                                 /* found another branch for which tmp is a shorter prefix */
489
490                                 /* save the next sibling for later */
491                                 save = q_list->next;
492
493                                 /* unlink q_list from the top level list */
494                                 if (q_list->next)
495                                     q_list->next->prev = q_list->prev;
496                                 if (q_list->prev)
497                                     q_list->prev->next = q_list->next;
498
499                                 /* at this point, we have a tmp->down; link q_list to it */
500                                 ptr = tmp->down;
501                                 while (ptr->next)
502                                     ptr = ptr->next;
503                                 ptr->next = q_list;
504                                 q_list->next = NULL;
505                                 q_list->prev = ptr;
506                                 q_list->up = tmp;
507
508                                 lindex = q_list->index;
509
510                                 /* next class to test */
511                                 q_list = save;
512                             }
513
514                             /* we found a shorter prefix, so we need a redraw */
515                             *force_redraw = 1;
516                             continue;
517                         } else {
518                             q_list = q_list->next;
519                             continue;
520                         }
521                     } else {
522                         /* longer than the current prefix: try subclassing it */
523                         if (tmp == NULL
524                             && m_strncmp(tail_qptr, (q_list->prefix) + offset,
525                                          q_list->length - offset) == 0) {
526                             /* still a subclass: go down one level */
527                             ptr = q_list;
528                             offset = q_list->length;
529
530                             q_list = q_list->down;
531                             tail_lng = length - offset;
532                             tail_qptr = (char *) qptr + offset;
533
534                             continue;
535                         } else {
536                             /* nope, try the next prefix */
537                             q_list = q_list->next;
538                             continue;
539                         }
540                     }
541                 }
542
543                 /* still not found so far: add it as a sibling to the current node */
544                 if (class == NULL) {
545                     tmp = p_new(struct q_class_t, 1);
546                     tmp->prefix = p_dupstr(qptr, length);
547                     tmp->length = length;
548
549                     if (ptr->down) {
550                         tmp->next = ptr->down;
551                         ptr->down->prev = tmp;
552                     }
553                     ptr->down = tmp;
554                     tmp->up = ptr;
555
556                     new_class_color (tmp, q_level);
557
558                     return tmp;
559                 } else {
560                     if (lindex != -1)
561                         shift_class_colors (*QuoteList, tmp, lindex, q_level);
562
563                     return class;
564                 }
565             } else {
566                 /* nope, try the next prefix */
567                 q_list = q_list->next;
568                 continue;
569             }
570         }
571     }
572
573     if (class == NULL) {
574         /* not found so far: add it as a top level class */
575         class = p_new(struct q_class_t, 1);
576         class->prefix = p_dupstr(qptr, length);
577         class->length = length;
578         new_class_color (class, q_level);
579
580         if (*QuoteList) {
581             class->next = *QuoteList;
582             (*QuoteList)->prev = class;
583         }
584         *QuoteList = class;
585     }
586
587     if (lindex != -1)
588         shift_class_colors (*QuoteList, tmp, lindex, q_level);
589
590     return class;
591 }
592
593 static int check_attachment_marker (char *);
594
595 static void
596 resolve_types (char *buf, char *rawbuf, struct line_t *lineInfo, int n, int last,
597                struct q_class_t **QuoteList, int *q_level, int *force_redraw,
598                int q_classify)
599 {
600     COLOR_LINE *color_line;
601     regmatch_t pmatch[1], smatch[1];
602     int found, offset, null_rx, i;
603
604     if (n == 0 || ISHEADER (lineInfo[n - 1].type)) {
605         if (buf[0] == '\n') {
606             lineInfo[n].type = MT_COLOR_NORMAL;
607         }
608         else if (n > 0 && (buf[0] == ' ' || buf[0] == '\t')) {
609             lineInfo[n].type = lineInfo[n - 1].type;  /* wrapped line */
610             (lineInfo[n].syntax)[0].color = (lineInfo[n - 1].syntax)[0].color;
611         } else {
612             lineInfo[n].type = MT_COLOR_HDEFAULT;
613             color_line = ColorHdrList;
614             while (color_line) {
615                 if (REGEXEC (&color_line->rx, buf) == 0) {
616                     lineInfo[n].type = MT_COLOR_HEADER;
617                     lineInfo[n].syntax[0].color = color_line->pair;
618                     break;
619                 }
620                 color_line = color_line->next;
621             }
622         }
623     }
624     else if (m_strncmp("\033[0m", rawbuf, 4) == 0)       /* a little hack... */
625         lineInfo[n].type = MT_COLOR_NORMAL;
626     else if (check_attachment_marker ((char *) rawbuf) == 0)
627         lineInfo[n].type = MT_COLOR_ATTACHMENT;
628     else if (m_strcmp("-- \n", buf) == 0
629              || m_strcmp("-- \r\n", buf) == 0) {
630         i = n + 1;
631
632         lineInfo[n].type = MT_COLOR_SIGNATURE;
633         while (i < last && check_sig(buf, lineInfo, i - 1) == 0 &&
634                (lineInfo[i].type == MT_COLOR_NORMAL ||
635                 lineInfo[i].type == MT_COLOR_QUOTED ||
636                 lineInfo[i].type == MT_COLOR_HEADER)) {
637             /* oops... */
638             if (lineInfo[i].chunks) {
639                 lineInfo[i].chunks = 0;
640                 p_realloc(&(lineInfo[n].syntax), 1);
641             }
642             lineInfo[i++].type = MT_COLOR_SIGNATURE;
643         }
644     }
645     else if (check_sig(buf, lineInfo, n - 1) == 0)
646         lineInfo[n].type = MT_COLOR_SIGNATURE;
647     else if (regexec ((regex_t *) QuoteRegexp.rx, buf, 1, pmatch, 0) == 0) {
648         if (regexec ((regex_t *) Smileys.rx, buf, 1, smatch, 0) == 0) {
649             if (smatch[0].rm_so > 0) {
650                 char c;
651
652                 /* hack to avoid making an extra copy of buf */
653                 c = buf[smatch[0].rm_so];
654                 buf[smatch[0].rm_so] = 0;
655
656                 if (regexec ((regex_t *) QuoteRegexp.rx, buf, 1, pmatch, 0) == 0) {
657                     if (q_classify && lineInfo[n].quote == NULL)
658                         lineInfo[n].quote = classify_quote (QuoteList,
659                                                             buf + pmatch[0].rm_so,
660                                                             pmatch[0].rm_eo -
661                                                             pmatch[0].rm_so, force_redraw,
662                                                             q_level);
663                     lineInfo[n].type = MT_COLOR_QUOTED;
664                 } else {
665                     lineInfo[n].type = MT_COLOR_NORMAL;
666                 }
667
668                 buf[smatch[0].rm_so] = c;
669             } else {
670                 lineInfo[n].type = MT_COLOR_NORMAL;
671             }
672         } else {
673             if (q_classify && lineInfo[n].quote == NULL)
674                 lineInfo[n].quote = classify_quote (QuoteList, buf + pmatch[0].rm_so,
675                                                     pmatch[0].rm_eo - pmatch[0].rm_so,
676                                                     force_redraw, q_level);
677             lineInfo[n].type = MT_COLOR_QUOTED;
678         }
679     } else {
680         lineInfo[n].type = MT_COLOR_NORMAL;
681     }
682
683     /* body patterns */
684     if (lineInfo[n].type == MT_COLOR_NORMAL ||
685         lineInfo[n].type == MT_COLOR_QUOTED) {
686         i = 0;
687
688         offset = 0;
689         lineInfo[n].chunks = 0;
690         do {
691             if (!buf[offset])
692                 break;
693
694             found = 0;
695             null_rx = 0;
696             color_line = ColorBodyList;
697             while (color_line) {
698                 if (regexec (&color_line->rx, buf + offset, 1, pmatch,
699                              (offset ? REG_NOTBOL : 0)) == 0) {
700                     if (pmatch[0].rm_eo != pmatch[0].rm_so) {
701                         if (!found) {
702                             if (++(lineInfo[n].chunks) > 1)
703                                 p_realloc(&(lineInfo[n].syntax), lineInfo[n].chunks);
704                         }
705                         i = lineInfo[n].chunks - 1;
706                         pmatch[0].rm_so += offset;
707                         pmatch[0].rm_eo += offset;
708                         if (!found ||
709                             pmatch[0].rm_so < (lineInfo[n].syntax)[i].first ||
710                             (pmatch[0].rm_so == (lineInfo[n].syntax)[i].first &&
711                              pmatch[0].rm_eo > (lineInfo[n].syntax)[i].last)) {
712                             (lineInfo[n].syntax)[i].color = color_line->pair;
713                             (lineInfo[n].syntax)[i].first = pmatch[0].rm_so;
714                             (lineInfo[n].syntax)[i].last = pmatch[0].rm_eo;
715                         }
716                         found = 1;
717                         null_rx = 0;
718                     } else {
719                         null_rx = 1;        /* empty regexp; don't add it, but keep looking */
720                     }
721                 }
722                 color_line = color_line->next;
723             }
724
725             if (null_rx)
726                 offset++;               /* avoid degenerate cases */
727             else
728                 offset = lineInfo[n].syntax[i].last;
729         } while (found || null_rx);
730     }
731 }
732
733 static int is_ansi(unsigned char *buf)
734 {
735     while (isdigit(*buf) || *buf == ';')
736         buf++;
737     return (*buf == 'm');
738 }
739
740 static int check_attachment_marker(char *p)
741 {
742     char *q = AttachmentMarker;
743
744     for (; *p == *q && *q && *p && *q != '\a' && *p != '\a'; p++, q++);
745     return (int)(*p - *q);
746 }
747
748 /* trim tail of buf so that it contains complete multibyte characters */
749 static int trim_incomplete_mbyte(unsigned char *buf, size_t len) {
750     mbstate_t mbstate;
751     ssize_t k;
752
753     p_clear(&mbstate, 1);
754     for (; len > 0; buf += k, len -= k) {
755         k = mbrtowc (NULL, (char *) buf, len, &mbstate);
756         if (k == -2)
757             break;
758         if (k == -1 || k == 0)
759             k = 1;
760     }
761     *buf = '\0';
762
763     return len;
764 }
765
766 static int
767 fill_buffer (FILE * f, off_t *last_pos, off_t offset, unsigned char *buf,
768              unsigned char *fmt, ssize_t blen, int *buf_ready)
769 {
770     unsigned char *p;
771     static int b_read = 0;
772
773     if (*buf_ready == 0) {
774         buf[blen - 1] = 0;
775         if (offset != *last_pos)
776             fseeko (f, offset, 0);
777         if (fgets ((char *) buf, blen - 1, f) == NULL) {
778             fmt[0] = 0;
779             return (-1);
780         }
781         *last_pos = ftello (f);
782         b_read = (int) (*last_pos - offset);
783         *buf_ready = 1;
784
785         /* incomplete mbyte characters trigger a segfault in regex processing for
786          * certain versions of glibc. Trim them if necessary. */
787         if (b_read == blen - 2)
788             b_read -= trim_incomplete_mbyte(buf, b_read);
789
790         /* copy "buf" to "fmt", but without bold and underline controls */
791         p = buf;
792         while (*p) {
793             if (*p == '\010' && (p > buf)) {
794                 if (*(p + 1) == '_')    /* underline */
795                     p += 2;
796                 else if (*(p + 1)) {    /* bold or overstrike */
797                     *(fmt - 1) = *(p + 1);
798                     p += 2;
799                 } else {                  /* ^H */
800                     *fmt++ = *p++;
801                 }
802             }
803             else if (*p == '\033' && *(p + 1) == '[' && is_ansi (p + 2)) {
804                 while (*p++ != 'm')     /* skip ANSI sequence */
805                     ;
806             }
807             else if (*p == '\033' && *(p + 1) == ']'
808                      && check_attachment_marker ((char *) p) == 0) {
809                 while (*p++ != '\a')    /* skip pseudo-ANSI sequence */
810                     ;
811             } else {
812                 *fmt++ = *p++;
813             }
814         }
815         *fmt = 0;
816     }
817     return b_read;
818 }
819
820 #ifdef USE_NNTP
821 #include "nntp.h"
822 #endif
823
824 static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
825                         int flags, ansi_attr * pa, int cnt,
826                         int *pspace, int *pvch, int *pcol, int *pspecial)
827 {
828   int space = -1;               /* index of the last space or TAB */
829   int col = option (OPTMARKERS) ? (*lineInfo)[n].continuation : 0;
830   int ch, vch, k, last_special = -1, special = 0, t;
831   wchar_t wc;
832   mbstate_t mbstate;
833
834   int wrap_cols = getmaxx(main_w);
835
836   if (!(flags & (M_SHOWFLAT)))
837     wrap_cols -= WrapMargin;
838
839   if (wrap_cols <= 0)
840     wrap_cols = getmaxx(main_w);
841
842   /* FIXME: this should come from lineInfo */
843   p_clear(&mbstate, 1);
844
845   for (ch = 0, vch = 0; ch < cnt; ch += k, vch += k) {
846     /* Handle ANSI sequences */
847     while (cnt - ch >= 2 && buf[ch] == '\033' && buf[ch + 1] == '[' &&
848            is_ansi (buf + ch + 2)) {
849       while (isdigit(buf[ch]) || buf[ch] == ';')
850         ch++;
851     }
852
853     while (cnt - ch >= 2 && buf[ch] == '\033' && buf[ch + 1] == ']' &&
854            check_attachment_marker ((char *) buf + ch) == 0) {
855       while (buf[ch++] != '\a')
856         if (ch >= cnt)
857           break;
858     }
859
860     /* is anything left to do? */
861     if (ch >= cnt)
862       break;
863
864     k = mbrtowc (&wc, (char *) buf + ch, cnt - ch, &mbstate);
865     if (k == -2 || k == -1) {
866       if (col + 4 > wrap_cols)
867         break;
868       col += 4;
869       if (pa)
870         wprintw(main_w, "\\%03o", buf[ch]);
871       k = 1;
872       continue;
873     }
874     if (k == 0)
875       k = 1;
876
877     /* Handle backspace */
878     special = 0;
879     if (iswprint(wc)) {
880       wchar_t wc1;
881       mbstate_t mbstate1;
882       int k1, k2;
883
884       while ((wc1 = 0, mbstate1 = mbstate,
885               k1 =
886               k + mbrtowc (&wc1, (char *) buf + ch + k, cnt - ch - k,
887                            &mbstate1), k1 - k > 0 && wc1 == '\b')
888              && (wc1 = 0, k2 =
889                  mbrtowc (&wc1, (char *) buf + ch + k1, cnt - ch - k1,
890                           &mbstate1), k2 > 0 && iswprint(wc1))) {
891         if (wc == wc1) {
892           special |= (wc == '_' && special & A_UNDERLINE)
893             ? A_UNDERLINE : A_BOLD;
894         }
895         else if (wc == '_' || wc1 == '_') {
896           special |= A_UNDERLINE;
897           wc = (wc1 == '_') ? wc : wc1;
898         } else {
899           /* special = 0; / * overstrike: nothing to do! */
900           wc = wc1;
901         }
902         ch += k1;
903         k = k2;
904         mbstate = mbstate1;
905       }
906     }
907
908     if (pa &&
909         ((flags & (M_SHOWCOLOR | M_SEARCH | M_PAGER_MARKER)) ||
910          special || last_special || pa->attr)) {
911       resolve_color (*lineInfo, n, vch, flags, special, pa);
912       last_special = special;
913     }
914
915     if (iswprint(wc)) {
916       if (wc == ' ')
917         space = ch;
918       t = wcwidth (wc);
919       if (col + t > wrap_cols)
920         break;
921       col += t;
922       if (pa)
923         waddwch(main_w, wc);
924     }
925     else if (wc == '\n')
926       break;
927     else if (wc == '\t') {
928       space = ch;
929       t = (col & ~7) + 8;
930       if (t > wrap_cols)
931         break;
932       if (pa)
933         for (; col < t; col++)
934           waddch(main_w, ' ');
935       else
936         col = t;
937     }
938     else if (wc < 0x20 || wc == 0x7f) {
939       if (col + 2 > wrap_cols)
940         break;
941       col += 2;
942       if (pa)
943         wprintw(main_w, "^%c", ('@' + wc) & 0x7f);
944     }
945     else if (wc < 0x100) {
946       if (col + 4 > wrap_cols)
947         break;
948       col += 4;
949       if (pa)
950         wprintw(main_w, "\\%03o", wc);
951     } else {
952       if (col + 1 > wrap_cols)
953         break;
954       ++col;
955       if (pa)
956         waddch(main_w, CharsetReplacement);
957     }
958   }
959   *pspace = space;
960   *pcol = col;
961   *pvch = vch;
962   *pspecial = special;
963   return ch;
964 }
965
966 /*
967  * Args:
968  *      flags   M_SHOWFLAT, show characters (used for displaying help)
969  *              M_SHOWCOLOR, show characters in color
970  *                      otherwise don't show characters
971  *              M_HIDE, don't show quoted text
972  *              M_SEARCH, resolve search patterns
973  *              M_TYPES, compute line's type
974  *              M_PAGER_NSKIP, keeps leading whitespace
975  *              M_PAGER_MARKER, eventually show markers
976  *
977  * Return values:
978  *      -1      EOF was reached
979  *      0       normal exit, line was not displayed
980  *      >0      normal exit, line was displayed
981  */
982 static int
983 display_line (FILE * f, off_t *last_pos, struct line_t **lineInfo, int n,
984               int *last, int *max, int flags, struct q_class_t **QuoteList,
985               int *q_level, int *force_redraw, regex_t * SearchRE)
986 {
987   unsigned char buf[LONG_STRING], fmt[LONG_STRING];
988   unsigned char *buf_ptr = buf;
989   int ch, vch, col, cnt, b_read;
990   int buf_ready = 0, change_last = 0;
991   int special;
992   int offset;
993   int def_color;
994   int m;
995   ansi_attr a = { 0, 0, 0, -1 };
996   regmatch_t pmatch[1];
997
998   if (n == *last) {
999     (*last)++;
1000     change_last = 1;
1001   }
1002
1003   if (*last == *max) {
1004     p_realloc(lineInfo, *max += LINES);
1005     for (ch = *last; ch < *max; ch++) {
1006       p_clear(&(*lineInfo)[ch], 1);
1007       (*lineInfo)[ch].type = -1;
1008       (*lineInfo)[ch].search_cnt = -1;
1009       (*lineInfo)[ch].syntax = p_new(struct syntax_t, 1);
1010       ((*lineInfo)[ch].syntax)[0].first = ((*lineInfo)[ch].syntax)[0].last =
1011         -1;
1012     }
1013   }
1014
1015   /* only do color hiliting if we are viewing a message */
1016   if (flags & (M_SHOWCOLOR | M_TYPES)) {
1017     if ((*lineInfo)[n].type == -1) {
1018       /* determine the line class */
1019       if (fill_buffer
1020           (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1021            &buf_ready) < 0) {
1022         if (change_last)
1023           (*last)--;
1024         return (-1);
1025       }
1026
1027       resolve_types ((char *) fmt, (char *) buf, *lineInfo, n, *last,
1028                      QuoteList, q_level, force_redraw, flags & M_SHOWCOLOR);
1029
1030       /* avoid race condition for continuation lines when scrolling up */
1031       for (m = n + 1;
1032            m < *last && (*lineInfo)[m].offset && (*lineInfo)[m].continuation;
1033            m++)
1034         (*lineInfo)[m].type = (*lineInfo)[n].type;
1035     }
1036
1037     /* this also prevents searching through the hidden lines */
1038     if ((flags & M_HIDE) && (*lineInfo)[n].type == MT_COLOR_QUOTED)
1039       flags = 0;                /* M_NOSHOW */
1040   }
1041
1042   /* At this point, (*lineInfo[n]).quote may still be undefined. We 
1043    * don't want to compute it every time M_TYPES is set, since this
1044    * would slow down the "bottom" function unacceptably. A compromise
1045    * solution is hence to call regexec() again, just to find out the
1046    * length of the quote prefix.
1047    */
1048   if ((flags & M_SHOWCOLOR) && !(*lineInfo)[n].continuation &&
1049       (*lineInfo)[n].type == MT_COLOR_QUOTED && (*lineInfo)[n].quote == NULL)
1050   {
1051     if (fill_buffer
1052         (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1053          &buf_ready) < 0) {
1054       if (change_last)
1055         (*last)--;
1056       return (-1);
1057     }
1058     regexec ((regex_t *) QuoteRegexp.rx, (char *) fmt, 1, pmatch, 0);
1059     (*lineInfo)[n].quote = classify_quote (QuoteList,
1060                                            (char *) fmt + pmatch[0].rm_so,
1061                                            pmatch[0].rm_eo - pmatch[0].rm_so,
1062                                            force_redraw, q_level);
1063   }
1064
1065   if ((flags & M_SEARCH) && !(*lineInfo)[n].continuation
1066       && (*lineInfo)[n].search_cnt == -1) {
1067     if (fill_buffer
1068         (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1069          &buf_ready) < 0) {
1070       if (change_last)
1071         (*last)--;
1072       return (-1);
1073     }
1074
1075     offset = 0;
1076     (*lineInfo)[n].search_cnt = 0;
1077     while (regexec
1078            (SearchRE, (char *) fmt + offset, 1, pmatch,
1079             (offset ? REG_NOTBOL : 0)) == 0) {
1080       if (++((*lineInfo)[n].search_cnt) > 1)
1081         p_realloc(&(*lineInfo)[n].search, (*lineInfo)[n].search_cnt);
1082       else
1083         (*lineInfo)[n].search = p_new(struct syntax_t, 1);
1084       pmatch[0].rm_so += offset;
1085       pmatch[0].rm_eo += offset;
1086       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].first =
1087         pmatch[0].rm_so;
1088       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].last =
1089         pmatch[0].rm_eo;
1090
1091       if (pmatch[0].rm_eo == pmatch[0].rm_so)
1092         offset++;               /* avoid degenerate cases */
1093       else
1094         offset = pmatch[0].rm_eo;
1095       if (!fmt[offset])
1096         break;
1097     }
1098   }
1099
1100   if (!(flags & M_SHOW) && (*lineInfo)[n + 1].offset > 0) {
1101     /* we've already scanned this line, so just exit */
1102     return (0);
1103   }
1104   if ((flags & M_SHOWCOLOR) && *force_redraw && (*lineInfo)[n + 1].offset > 0) {
1105     /* no need to try to display this line... */
1106     return (1);                 /* fake display */
1107   }
1108
1109   if ((b_read = fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt,
1110                              sizeof (buf), &buf_ready)) < 0) {
1111     if (change_last)
1112       (*last)--;
1113     return (-1);
1114   }
1115
1116   /* now chose a good place to break the line */
1117   cnt = format_line(lineInfo, n, buf, flags, 0, b_read, &ch, &vch, &col,
1118                     &special);
1119   buf_ptr = buf + cnt;
1120
1121   /* move the break point only if smart_wrap is set */
1122   if (option (OPTWRAP)) {
1123     if (cnt < b_read) {
1124       if (ch != -1 && buf[cnt] != ' ' && buf[cnt] != '\t' && buf[cnt] != '\n'
1125           && buf[cnt] != '\r') {
1126         buf_ptr = buf + ch;
1127         /* skip trailing blanks */
1128         while (ch && (buf[ch] == ' ' || buf[ch] == '\t' || buf[ch] == '\r'))
1129           ch--;
1130         /* a very long word with leading spaces causes infinite wrapping */
1131         if ((!ch) && (flags & M_PAGER_NSKIP))
1132           buf_ptr = buf + cnt;
1133         else
1134           cnt = ch + 1;
1135       } else {
1136         buf_ptr = buf + cnt;    /* a very long word... */
1137       }
1138     }
1139     if (!(flags & M_PAGER_NSKIP))
1140       /* skip leading blanks on the next line too */
1141       while (*buf_ptr == ' ' || *buf_ptr == '\t')
1142         buf_ptr++;
1143   }
1144
1145   if (*buf_ptr == '\r')
1146     buf_ptr++;
1147   if (*buf_ptr == '\n')
1148     buf_ptr++;
1149
1150   if ((int) (buf_ptr - buf) < b_read && !(*lineInfo)[n + 1].continuation)
1151     append_line (*lineInfo, n, (int) (buf_ptr - buf));
1152   (*lineInfo)[n + 1].offset = (*lineInfo)[n].offset + (long) (buf_ptr - buf);
1153
1154   /* if we don't need to display the line we are done */
1155   if (!(flags & M_SHOW))
1156     return 0;
1157
1158   /* display the line */
1159   format_line (lineInfo, n, buf, flags, &a, cnt, &ch, &vch, &col, &special);
1160
1161   /* end the last color pattern (needed by S-Lang) */
1162   if (special || (col != getmaxx(main_w) && (flags & (M_SHOWCOLOR | M_SEARCH))))
1163     resolve_color(*lineInfo, n, vch, flags, 0, &a);
1164
1165   /*
1166    * Fill the blank space at the end of the line with the prevailing color.
1167    * ncurses does an implicit wclrtoeol(main_w) when you do waddch(main_w,
1168    * '\n') so we have to make sure to reset the color *after* that
1169    */
1170   if (flags & M_SHOWCOLOR) {
1171     m = ((*lineInfo)[n].continuation) ? ((*lineInfo)[n].syntax)[0].first : n;
1172     if ((*lineInfo)[m].type == MT_COLOR_HEADER)
1173       def_color = ((*lineInfo)[m].syntax)[0].color;
1174     else
1175       def_color = ColorDefs[(*lineInfo)[m].type];
1176
1177     wattrset(main_w, def_color);
1178     wbkgdset(main_w, def_color | ' ');
1179   }
1180   waddch(main_w, '\n');
1181
1182   /*
1183    * reset the color back to normal.  This *must* come after the
1184    * waddch(main_w, '\n'), otherwise the color for this line will not be
1185    * filled to the right margin.
1186    */
1187   if (flags & M_SHOWCOLOR) {
1188     SETCOLOR(main_w, MT_COLOR_NORMAL);
1189     BKGDSET(main_w, MT_COLOR_NORMAL);
1190   }
1191
1192   /* build a return code */
1193   if (!(flags & M_SHOW))
1194     flags = 0;
1195
1196   return (flags);
1197 }
1198
1199 static int upNLines (int nlines, struct line_t *info, int cur, int hiding)
1200 {
1201   while (cur > 0 && nlines > 0) {
1202     cur--;
1203     if (!hiding || info[cur].type != MT_COLOR_QUOTED)
1204       nlines--;
1205   }
1206
1207   return cur;
1208 }
1209
1210 /* This pager is actually not so simple as it once was.  It now operates in
1211    two modes: one for viewing messages and the other for viewing help.  These
1212    can be distinguished by whether or not ``hdr'' is NULL.  The ``hdr'' arg
1213    is there so that we can do operations on the current message without the
1214    need to pop back out to the main-menu.  */
1215 int
1216 mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra)
1217 {
1218   static char searchbuf[STRING];
1219   char buffer[LONG_STRING];
1220   int maxLine, lastLine = 0;
1221   struct line_t *lineInfo;
1222   struct q_class_t *QuoteList = NULL;
1223   int i, j, ch = 0, rc = -1, hideQuoted = 0, q_level = 0, force_redraw = 0;
1224   int lines = 0, curline = 0, topline = 0, oldtopline = 0, err, first = 1;
1225   int r = -1;
1226   int redraw = REDRAW_FULL;
1227   FILE *fp = NULL;
1228   off_t last_pos = 0, last_offset = 0;
1229   int old_smart_wrap, old_markers;
1230   struct stat sb;
1231   regex_t SearchRE;
1232   int SearchCompiled = 0, SearchFlag = 0, SearchBack = 0;
1233   int has_types = (IsHeader (extra) || (flags & M_SHOWCOLOR)) ? M_TYPES : 0;    /* main message or rfc822 attachment */
1234
1235   int bodyoffset = 1;           /* offset of first line of real text */
1236   int statusoffset = 0;         /* offset for the status bar */
1237   int helpoffset = LINES - 2;   /* offset for the help bar. */
1238   int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */
1239
1240   MUTTMENU *pager_index = NULL;       /* the Pager Index (PI) */
1241   int indexlen = PagerIndexLines;     /* indexlen not always == PIL */
1242   int indicator = indexlen / 3; /* the indicator line of the PI */
1243   int old_PagerIndexLines;      /* some people want to resize it
1244                                  * while inside the pager... */
1245
1246 #ifdef USE_NNTP
1247   char *followup_to;
1248 #endif
1249
1250   if (!(flags & M_SHOWCOLOR))
1251     flags |= M_SHOWFLAT;
1252
1253   if ((fp = fopen (fname, "r")) == NULL) {
1254     mutt_perror (fname);
1255     return (-1);
1256   }
1257
1258   if (stat (fname, &sb) != 0) {
1259     mutt_perror (fname);
1260     m_fclose(&fp);
1261     return (-1);
1262   }
1263   unlink (fname);
1264
1265   /* Initialize variables */
1266
1267   if (IsHeader (extra) && !extra->hdr->read) {
1268     Context->msgnotreadyet = extra->hdr->msgno;
1269     mutt_set_flag (Context, extra->hdr, M_READ, 1);
1270   }
1271
1272   lineInfo = p_new(struct line_t, maxLine = LINES);
1273   for (i = 0; i < maxLine; i++) {
1274     p_clear(&lineInfo[i], 1);
1275     lineInfo[i].type = -1;
1276     lineInfo[i].search_cnt = -1;
1277     lineInfo[i].syntax = p_new(struct syntax_t, 1);
1278     (lineInfo[i].syntax)[0].first = (lineInfo[i].syntax)[0].last = -1;
1279   }
1280
1281   while (ch != -1) {
1282     mutt_curs_set (0);
1283     imap_keepalive ();
1284
1285     if (redraw & REDRAW_FULL) {
1286       SETCOLOR(main_w, MT_COLOR_NORMAL);
1287       /* wclear(main_w) doesn't optimize screen redraws */
1288       wmove(main_w, 0, 0);
1289       wclrtobot(main_w);
1290
1291       if (IsHeader (extra) && Context->vcount + 1 < PagerIndexLines)
1292         indexlen = Context->vcount + 1;
1293       else
1294         indexlen = PagerIndexLines;
1295
1296       indicator = indexlen / 3;
1297
1298       statusoffset = IsHeader (extra) ? indexlen : 0;
1299       bodyoffset   = statusoffset + 1;
1300       helpoffset   = LINES - 2;
1301       bodylen      = helpoffset - bodyoffset;
1302
1303       SETCOLOR(main_w, MT_COLOR_STATUS);
1304       wmove(main_w, helpoffset, 0);
1305       mutt_paddstr(main_w, getmaxx(main_w), "");
1306       SETCOLOR(main_w, MT_COLOR_NORMAL);
1307
1308       if (Resize != NULL) {
1309         if ((SearchCompiled = Resize->SearchCompiled)) {
1310           REGCOMP
1311             (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf));
1312           SearchFlag = M_SEARCH;
1313           SearchBack = Resize->SearchBack;
1314         }
1315         lines = Resize->line;
1316         redraw |= REDRAW_SIGWINCH;
1317
1318         p_delete(&Resize);
1319       }
1320
1321       if (IsHeader (extra) && PagerIndexLines) {
1322         if (pager_index == NULL) {
1323           /* only allocate the space if/when we need the index.
1324              Initialise the menu as per the main index */
1325           pager_index = mutt_new_menu ();
1326           pager_index->menu = MENU_MAIN;
1327           pager_index->make_entry = index_make_entry;
1328           pager_index->color = index_color;
1329           pager_index->max = Context->vcount;
1330           pager_index->current = extra->hdr->virtual;
1331         }
1332
1333         SETCOLOR(main_w, MT_COLOR_NORMAL);
1334         pager_index->offset  = 1;
1335         pager_index->pagelen = indexlen - 1;
1336
1337         /* some fudge to work out where abouts the indicator should go */
1338         if (pager_index->current - indicator < 0)
1339           pager_index->top = 0;
1340         else if (pager_index->max - pager_index->current < pager_index->pagelen - indicator)
1341           pager_index->top = pager_index->max - pager_index->pagelen;
1342         else
1343           pager_index->top = pager_index->current - indicator;
1344
1345         menu_redraw_index (pager_index);
1346       }
1347
1348       redraw |= REDRAW_BODY | REDRAW_INDEX | REDRAW_STATUS;
1349       mutt_show_error ();
1350     }
1351
1352     if (redraw & REDRAW_SIGWINCH) {
1353       i = -1;
1354       j = -1;
1355       while (display_line (fp, &last_pos, &lineInfo, ++i, &lastLine, &maxLine,
1356                            has_types | SearchFlag, &QuoteList, &q_level,
1357                            &force_redraw, &SearchRE) == 0) {
1358         if (!lineInfo[i].continuation && ++j == lines) {
1359           topline = i;
1360           if (!SearchFlag)
1361             break;
1362         }
1363         redraw |= REDRAW_SIDEBAR;
1364       }                         /* while */
1365     }
1366
1367     if ((redraw & REDRAW_BODY) || topline != oldtopline) {
1368       do {
1369         wmove(main_w, bodyoffset, 0);
1370         curline = oldtopline = topline;
1371         lines = 0;
1372         force_redraw = 0;
1373
1374         while (lines < bodylen && lineInfo[curline].offset <= sb.st_size - 1) {
1375           if (display_line (fp, &last_pos, &lineInfo, curline, &lastLine,
1376                             &maxLine,
1377                             (flags & M_DISPLAYFLAGS) | hideQuoted |
1378                             SearchFlag, &QuoteList, &q_level, &force_redraw,
1379                             &SearchRE) > 0)
1380             lines++;
1381           curline++;
1382           wmove(main_w, lines + bodyoffset, 0);
1383           redraw |= REDRAW_SIDEBAR;
1384         }
1385         last_offset = lineInfo[curline].offset;
1386       } while (force_redraw);
1387
1388       SETCOLOR(main_w, MT_COLOR_TILDE);
1389       BKGDSET(main_w, MT_COLOR_TILDE);
1390       while (lines < bodylen) {
1391         wclrtoeol(main_w);
1392         if (option (OPTTILDE))
1393           waddch(main_w, '~');
1394         waddch(main_w, '\n');
1395         lines++;
1396         wmove(main_w, lines + bodyoffset, 0);
1397       }
1398       /* We are going to update the pager status bar, so it isn't
1399        * necessary to reset to normal color now. */
1400
1401       redraw |= REDRAW_STATUS;  /* need to update the % seen */
1402     }
1403
1404     if (redraw & REDRAW_STATUS) {
1405       /* print out the pager status bar */
1406       SETCOLOR(main_w, MT_COLOR_STATUS);
1407       BKGDSET(main_w, MT_COLOR_STATUS);
1408       wmove(main_w, statusoffset, 0);
1409       wclrtoeol(main_w);
1410       if (IsHeader (extra)) {
1411         size_t l1 = (getmaxx(main_w) - 9) * MB_LEN_MAX;
1412         size_t l2 = sizeof (buffer);
1413
1414         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1415                            Context, extra->hdr, M_FORMAT_MAKEPRINT);
1416       }
1417       else if (IsMsgAttach (extra)) {
1418         size_t l1 = (getmaxx(main_w) - 9) * MB_LEN_MAX;
1419         size_t l2 = sizeof (buffer);
1420
1421         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1422                            Context, extra->bdy->hdr, M_FORMAT_MAKEPRINT);
1423       }
1424       wmove(main_w, statusoffset, 0);
1425       mutt_paddstr(main_w, getmaxx(main_w) - 10,
1426                    IsHeader(extra) || IsMsgAttach(extra) ? buffer : banner);
1427
1428       waddstr(main_w, " -- (");
1429       if (last_pos < sb.st_size - 1)
1430         wprintw(main_w, "%d%%)", (int) (100 * last_offset / sb.st_size));
1431       else
1432         waddstr(main_w, topline == 0 ? "all)" : "end)");
1433       BKGDSET(main_w, MT_COLOR_NORMAL);
1434       SETCOLOR(main_w, MT_COLOR_NORMAL);
1435     }
1436
1437     if (redraw & REDRAW_SIDEBAR)
1438       sidebar_draw ();
1439
1440     if ((redraw & REDRAW_INDEX) && pager_index) {
1441       /* redraw the pager_index indicator, because the
1442        * flags for this message might have changed. */
1443       menu_redraw_current (pager_index);
1444       sidebar_draw ();
1445       /* print out the pager_index status bar */
1446       menu_status_line (buffer, sizeof (buffer), pager_index, NONULL (Status));
1447       wmove(main_w, 0, 0);
1448       SETCOLOR(main_w, MT_COLOR_STATUS);
1449       BKGDSET(main_w, MT_COLOR_STATUS);
1450       mutt_paddstr(main_w, getmaxx(main_w), buffer);
1451       SETCOLOR(main_w, MT_COLOR_NORMAL);
1452       BKGDSET(main_w, MT_COLOR_NORMAL);
1453     }
1454     /* if we're not using the index, update every time */
1455     if (index == 0)
1456       sidebar_draw ();
1457
1458     redraw = 0;
1459     mutt_refresh();
1460
1461     if (IsHeader (extra) && OldHdr == extra->hdr && TopLine != topline
1462         && lineInfo[curline].offset < sb.st_size-1) {
1463       if (TopLine - topline > lines)
1464         topline += lines;
1465       else
1466         topline = TopLine;
1467       continue;
1468     } else {
1469       OldHdr = NULL;
1470     }
1471
1472     ch = km_dokey (MENU_PAGER);
1473     if (ch != -1)
1474       mutt_clear_error ();
1475     mutt_curs_set (1);
1476
1477     if (SigInt) {
1478       mutt_query_exit ();
1479       continue;
1480     }
1481
1482     if (SigWinch) {
1483       ui_layout_resize();
1484
1485       /* Store current position. */
1486       lines = -1;
1487       for (i = 0; i <= topline; i++)
1488         if (!lineInfo[i].continuation)
1489           lines++;
1490
1491       if (flags & M_PAGER_RETWINCH) {
1492         Resize = p_new(struct resize, 1);
1493
1494         Resize->line = lines;
1495         Resize->SearchCompiled = SearchCompiled;
1496         Resize->SearchBack = SearchBack;
1497
1498         ch = -1;
1499         rc = OP_REFORMAT_WINCH;
1500       } else {
1501         for (i = 0; i < maxLine; i++) {
1502           lineInfo[i].offset = 0;
1503           lineInfo[i].type = -1;
1504           lineInfo[i].continuation = 0;
1505           lineInfo[i].chunks = 0;
1506           lineInfo[i].search_cnt = -1;
1507           lineInfo[i].quote = NULL;
1508
1509           p_realloc(&lineInfo[i].syntax, 1);
1510           if (SearchCompiled)
1511             p_delete(&lineInfo[i].search);
1512         }
1513
1514         lastLine = 0;
1515         topline = 0;
1516
1517         redraw = REDRAW_FULL | REDRAW_SIGWINCH;
1518         ch = 0;
1519       }
1520       continue;
1521     }
1522
1523     if (ch == -1) {
1524       ch = 0;
1525       continue;
1526     }
1527
1528     rc = ch;
1529
1530     switch (ch) {
1531     case OP_EXIT:
1532       rc = -1;
1533       ch = -1;
1534       break;
1535
1536     case OP_NEXT_PAGE:
1537       if (lineInfo[curline].offset < sb.st_size - 1) {
1538         topline = upNLines (PagerContext, lineInfo, curline, hideQuoted);
1539       }
1540       else if (option (OPTPAGERSTOP)) {
1541         /* emulate "less -q" and don't go on to the next message. */
1542         mutt_error _("Bottom of message is shown.");
1543       } else {
1544         /* end of the current message, so display the next message. */
1545         rc = OP_MAIN_NEXT_UNDELETED;
1546         ch = -1;
1547       }
1548       break;
1549
1550     case OP_PREV_PAGE:
1551       if (topline != 0) {
1552         topline =
1553           upNLines (bodylen - PagerContext, lineInfo, topline, hideQuoted);
1554       }
1555       else
1556         mutt_error _("Top of message is shown.");
1557       break;
1558
1559     case OP_NEXT_LINE:
1560       if (lineInfo[curline].offset < sb.st_size - 1) {
1561         topline++;
1562         if (hideQuoted) {
1563           while (lineInfo[topline].type == MT_COLOR_QUOTED &&
1564                  topline < lastLine)
1565             topline++;
1566         }
1567       }
1568       else
1569         mutt_error _("Bottom of message is shown.");
1570       break;
1571
1572     case OP_PREV_LINE:
1573       if (topline)
1574         topline = upNLines (1, lineInfo, topline, hideQuoted);
1575       else
1576         mutt_error _("Top of message is shown.");
1577       break;
1578
1579     case OP_PAGER_TOP:
1580       if (topline)
1581         topline = 0;
1582       else
1583         mutt_error _("Top of message is shown.");
1584       break;
1585
1586     case OP_HALF_UP:
1587       if (topline)
1588         topline = upNLines (bodylen / 2, lineInfo, topline, hideQuoted);
1589       else
1590         mutt_error _("Top of message is shown.");
1591       break;
1592
1593     case OP_HALF_DOWN:
1594       if (lineInfo[curline].offset < sb.st_size - 1) {
1595         topline = upNLines (bodylen / 2, lineInfo, curline, hideQuoted);
1596       }
1597       else if (option (OPTPAGERSTOP)) {
1598         /* emulate "less -q" and don't go on to the next message. */
1599         mutt_error _("Bottom of message is shown.");
1600       } else {
1601         /* end of the current message, so display the next message. */
1602         rc = OP_MAIN_NEXT_UNDELETED;
1603         ch = -1;
1604       }
1605       break;
1606
1607     case OP_SEARCH_NEXT:
1608     case OP_SEARCH_OPPOSITE:
1609       if (SearchCompiled) {
1610       search_next:
1611         if ((!SearchBack && ch == OP_SEARCH_NEXT) ||
1612             (SearchBack && ch == OP_SEARCH_OPPOSITE)) {
1613           /* searching forward */
1614           for (i = topline + 1; i < lastLine; i++) {
1615             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1616                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1617               break;
1618           }
1619
1620           if (i < lastLine)
1621             topline = i;
1622           else
1623             mutt_error _("Not found.");
1624         }
1625         else {
1626           /* searching backward */
1627           for (i = topline - 1; i >= 0; i--) {
1628             if ((!hideQuoted || (has_types &&
1629                                  lineInfo[i].type != MT_COLOR_QUOTED)) &&
1630                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1631               break;
1632           }
1633
1634           if (i >= 0)
1635             topline = i;
1636           else
1637             mutt_error _("Not found.");
1638         }
1639
1640         if (lineInfo[topline].search_cnt > 0)
1641           SearchFlag = M_SEARCH;
1642
1643         break;
1644       }
1645       /* no previous search pattern, so fall through to search */
1646
1647     case OP_SEARCH:
1648     case OP_SEARCH_REVERSE:
1649       m_strcpy(buffer, sizeof(buffer), searchbuf);
1650       if (mutt_get_field ((SearchBack ? _("Reverse search: ") :
1651                            _("Search: ")), buffer, sizeof (buffer),
1652                           M_CLEAR) != 0)
1653         break;
1654
1655       if (!m_strcmp (buffer, searchbuf)) {
1656         if (SearchCompiled) {
1657           /* do an implicit search-next */
1658           if (ch == OP_SEARCH)
1659             ch = OP_SEARCH_NEXT;
1660           else
1661             ch = OP_SEARCH_OPPOSITE;
1662
1663           goto search_next;
1664         }
1665       }
1666
1667       if (!buffer[0])
1668         break;
1669
1670       m_strcpy(searchbuf, sizeof(searchbuf), buffer);
1671
1672       /* leave SearchBack alone if ch == OP_SEARCH_NEXT */
1673       if (ch == OP_SEARCH)
1674         SearchBack = 0;
1675       else if (ch == OP_SEARCH_REVERSE)
1676         SearchBack = 1;
1677
1678       if (SearchCompiled) {
1679         regfree (&SearchRE);
1680         for (i = 0; i < lastLine; i++) {
1681           p_delete(&lineInfo[i].search);
1682           lineInfo[i].search_cnt = -1;
1683         }
1684       }
1685
1686       if ((err =
1687            REGCOMP (&SearchRE, searchbuf,
1688                     REG_NEWLINE | mutt_which_case (searchbuf))) != 0) {
1689         regerror (err, &SearchRE, buffer, sizeof (buffer));
1690         mutt_error ("%s", buffer);
1691         regfree (&SearchRE);
1692         for (i = 0; i < maxLine; i++) {
1693           /* cleanup */
1694           p_delete(&lineInfo[i].search);
1695           lineInfo[i].search_cnt = -1;
1696         }
1697         SearchFlag = 0;
1698         SearchCompiled = 0;
1699       }
1700       else {
1701         SearchCompiled = 1;
1702         /* update the search pointers */
1703         i = 0;
1704         while (display_line (fp, &last_pos, &lineInfo, i, &lastLine,
1705                              &maxLine, M_SEARCH | (flags & M_PAGER_NSKIP),
1706                              &QuoteList, &q_level,
1707                              &force_redraw, &SearchRE) == 0) {
1708           i++;
1709           redraw |= REDRAW_SIDEBAR;
1710         }
1711
1712         if (!SearchBack) {
1713           /* searching forward */
1714           for (i = topline; i < lastLine; i++) {
1715             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1716                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1717               break;
1718           }
1719
1720           if (i < lastLine)
1721             topline = i;
1722         }
1723         else {
1724           /* searching backward */
1725           for (i = topline; i >= 0; i--) {
1726             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1727                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1728               break;
1729           }
1730
1731           if (i >= 0)
1732             topline = i;
1733         }
1734
1735         if (lineInfo[topline].search_cnt == 0) {
1736           SearchFlag = 0;
1737           mutt_error _("Not found.");
1738         }
1739         else
1740           SearchFlag = M_SEARCH;
1741       }
1742       redraw = REDRAW_BODY;
1743       break;
1744
1745     case OP_SEARCH_TOGGLE:
1746       if (SearchCompiled) {
1747         SearchFlag ^= M_SEARCH;
1748         redraw = REDRAW_BODY;
1749       }
1750       break;
1751
1752     case OP_HELP:
1753       /* don't let the user enter the help-menu from the help screen! */
1754       if (!InHelp) {
1755         InHelp = 1;
1756         mutt_help (MENU_PAGER);
1757         redraw = REDRAW_FULL;
1758         InHelp = 0;
1759       }
1760       else
1761         mutt_error _("Help is currently being shown.");
1762       break;
1763
1764     case OP_PAGER_HIDE_QUOTED:
1765       if (has_types) {
1766         hideQuoted ^= M_HIDE;
1767         if (hideQuoted && lineInfo[topline].type == MT_COLOR_QUOTED)
1768           topline = upNLines (1, lineInfo, topline, hideQuoted);
1769         else
1770           redraw = REDRAW_BODY;
1771       }
1772       break;
1773
1774     case OP_PAGER_SKIP_QUOTED:
1775       if (has_types) {
1776         int dretval = 0;
1777         int new_topline = topline;
1778
1779         while ((new_topline < lastLine ||
1780                 (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
1781                                                new_topline, &lastLine,
1782                                                &maxLine, M_TYPES, &QuoteList,
1783                                                &q_level, &force_redraw,
1784                                                &SearchRE))))
1785                && lineInfo[new_topline].type != MT_COLOR_QUOTED) {
1786           redraw |= REDRAW_SIDEBAR;
1787           new_topline++;
1788         }
1789
1790         if (dretval < 0) {
1791           mutt_error _("No more quoted text.");
1792
1793           break;
1794         }
1795
1796         while ((new_topline < lastLine ||
1797                 (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
1798                                                new_topline, &lastLine,
1799                                                &maxLine, M_TYPES, &QuoteList,
1800                                                &q_level, &force_redraw,
1801                                                &SearchRE))))
1802                && lineInfo[new_topline].type == MT_COLOR_QUOTED) {
1803           new_topline++;
1804           redraw |= REDRAW_SIDEBAR;
1805         }
1806
1807         if (dretval < 0) {
1808           mutt_error _("No more unquoted text after quoted text.");
1809
1810           break;
1811         }
1812         topline = new_topline;
1813       }
1814       break;
1815
1816     case OP_PAGER_BOTTOM:      /* move to the end of the file */
1817       if (lineInfo[curline].offset < sb.st_size - 1) {
1818         i = curline;
1819         /* make sure the types are defined to the end of file */
1820         while (display_line (fp, &last_pos, &lineInfo, i, &lastLine,
1821                              &maxLine, has_types,
1822                              &QuoteList, &q_level, &force_redraw,
1823                              &SearchRE) == 0) {
1824           i++;
1825           redraw |= REDRAW_SIDEBAR;
1826         }
1827         topline = upNLines (bodylen, lineInfo, lastLine, hideQuoted);
1828       }
1829       else
1830         mutt_error _("Bottom of message is shown.");
1831       break;
1832
1833     case OP_REDRAW:
1834       clearok(main_w, TRUE);
1835       redraw = REDRAW_FULL;
1836       break;
1837
1838     case OP_NULL:
1839       km_error_key (MENU_PAGER);
1840       break;
1841
1842       /* --------------------------------------------------------------------
1843        * The following are operations on the current message rather than
1844        * adjusting the view of the message.
1845        */
1846
1847     case OP_BOUNCE_MESSAGE:
1848       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra))
1849         CHECK_ATTACH;
1850       if (IsMsgAttach (extra))
1851         mutt_attach_bounce (extra->fp, extra->hdr,
1852                             extra->idx, extra->idxlen, extra->bdy);
1853       else
1854         ci_bounce_message (extra->hdr, &redraw);
1855       break;
1856
1857     case OP_RESEND:
1858       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra))
1859         CHECK_ATTACH;
1860       if (IsMsgAttach (extra))
1861         mutt_attach_resend (extra->fp, extra->hdr,
1862                             extra->idx, extra->idxlen, extra->bdy);
1863       else
1864         mutt_resend_message (NULL, extra->ctx, extra->hdr);
1865       redraw = REDRAW_FULL;
1866       break;
1867
1868     case OP_CHECK_TRADITIONAL:
1869       CHECK_MODE (IsHeader (extra));
1870       if (!(extra->hdr->security & PGP_TRADITIONAL_CHECKED)) {
1871         ch = -1;
1872         rc = OP_CHECK_TRADITIONAL;
1873       }
1874       break;
1875
1876     case OP_CREATE_ALIAS:
1877       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
1878       if (IsMsgAttach (extra))
1879         mutt_create_alias (extra->bdy->hdr->env, NULL);
1880       else
1881         mutt_create_alias (extra->hdr->env, NULL);
1882       MAYBE_REDRAW (redraw);
1883       break;
1884
1885     case OP_PURGE_MESSAGE:
1886     case OP_DELETE:
1887       CHECK_MODE (IsHeader (extra));
1888       CHECK_READONLY;
1889
1890       CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1891
1892       mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
1893       mutt_set_flag (Context, extra->hdr, M_PURGED,
1894                      ch != OP_PURGE_MESSAGE ? 0 : 1);
1895       if (option (OPTDELETEUNTAG))
1896         mutt_set_flag (Context, extra->hdr, M_TAG, 0);
1897       redraw = REDRAW_STATUS | REDRAW_INDEX;
1898       if (option (OPTRESOLVE)) {
1899         ch = -1;
1900         rc = OP_MAIN_NEXT_UNDELETED;
1901       }
1902       break;
1903
1904     case OP_DELETE_THREAD:
1905     case OP_DELETE_SUBTHREAD:
1906       CHECK_MODE (IsHeader (extra));
1907       CHECK_READONLY;
1908
1909       CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1910
1911       r = mutt_thread_set_flag (extra->hdr, M_DELETE, 1,
1912                                 ch == OP_DELETE_THREAD ? 0 : 1);
1913
1914       if (r != -1) {
1915         if (option (OPTDELETEUNTAG))
1916           mutt_thread_set_flag (extra->hdr, M_TAG, 0,
1917                                 ch == OP_DELETE_THREAD ? 0 : 1);
1918         if (option (OPTRESOLVE)) {
1919           rc = OP_MAIN_NEXT_UNDELETED;
1920           ch = -1;
1921         }
1922
1923         if (!option (OPTRESOLVE) && PagerIndexLines)
1924           redraw = REDRAW_FULL;
1925         else
1926           redraw = REDRAW_STATUS | REDRAW_INDEX;
1927       }
1928       break;
1929
1930     case OP_DISPLAY_ADDRESS:
1931       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
1932       if (IsMsgAttach (extra))
1933         mutt_display_address (extra->bdy->hdr->env);
1934       else
1935         mutt_display_address (extra->hdr->env);
1936       break;
1937
1938     case OP_ENTER_COMMAND:
1939       old_smart_wrap = option (OPTWRAP);
1940       old_markers = option (OPTMARKERS);
1941       old_PagerIndexLines = PagerIndexLines;
1942
1943       CurrentMenu = MENU_PAGER;
1944       mutt_enter_command ();
1945
1946       if (option (OPTNEEDRESORT)) {
1947         unset_option (OPTNEEDRESORT);
1948         CHECK_MODE (IsHeader (extra));
1949         set_option (OPTNEEDRESORT);
1950       }
1951
1952       if (old_PagerIndexLines != PagerIndexLines) {
1953         if (pager_index)
1954           mutt_menuDestroy (&pager_index);
1955         pager_index = NULL;
1956       }
1957
1958       if (option (OPTWRAP) != old_smart_wrap ||
1959           option (OPTMARKERS) != old_markers) {
1960         if (flags & M_PAGER_RETWINCH) {
1961           ch = -1;
1962           rc = OP_REFORMAT_WINCH;
1963           continue;
1964         }
1965
1966         /* count the real lines above */
1967         j = 0;
1968         for (i = 0; i <= topline; i++) {
1969           if (!lineInfo[i].continuation)
1970             j++;
1971         }
1972
1973         /* we need to restart the whole thing */
1974         for (i = 0; i < maxLine; i++) {
1975           lineInfo[i].offset = 0;
1976           lineInfo[i].type = -1;
1977           lineInfo[i].continuation = 0;
1978           lineInfo[i].chunks = 0;
1979           lineInfo[i].search_cnt = -1;
1980           lineInfo[i].quote = NULL;
1981
1982           p_realloc(&(lineInfo[i].syntax), 1);
1983           if (SearchCompiled)
1984             p_delete(&lineInfo[i].search);
1985         }
1986
1987         if (SearchCompiled) {
1988           regfree (&SearchRE);
1989           SearchCompiled = 0;
1990         }
1991         SearchFlag = 0;
1992
1993         /* try to keep the old position */
1994         topline = 0;
1995         lastLine = 0;
1996         while (j > 0 && display_line (fp, &last_pos, &lineInfo, topline,
1997                                       &lastLine, &maxLine,
1998                                       (has_types ? M_TYPES : 0),
1999                                       &QuoteList, &q_level, &force_redraw,
2000                                       &SearchRE) == 0) {
2001           redraw |= REDRAW_SIDEBAR;
2002           if (!lineInfo[topline].continuation)
2003             j--;
2004           if (j > 0)
2005             topline++;
2006         }
2007
2008         ch = 0;
2009       }
2010
2011       if (option (OPTFORCEREDRAWPAGER))
2012         redraw = REDRAW_FULL;
2013       unset_option (OPTFORCEREDRAWINDEX);
2014       unset_option (OPTFORCEREDRAWPAGER);
2015       break;
2016
2017     case OP_FLAG_MESSAGE:
2018       CHECK_MODE (IsHeader (extra));
2019       CHECK_READONLY;
2020
2021       CHECK_MX_ACL (Context, ACL_WRITE, _("Flagging"));
2022
2023       mutt_set_flag (Context, extra->hdr, M_FLAG, !extra->hdr->flagged);
2024       redraw = REDRAW_STATUS | REDRAW_INDEX;
2025       if (option (OPTRESOLVE)) {
2026         ch = -1;
2027         rc = OP_MAIN_NEXT_UNDELETED;
2028       }
2029       break;
2030
2031     case OP_PIPE:
2032       CHECK_MODE (IsHeader (extra) || IsAttach (extra));
2033       if (IsAttach (extra))
2034         mutt_pipe_attachment_list (extra->fp, 0, extra->bdy, 0);
2035       else
2036         mutt_pipe_message (extra->hdr);
2037       MAYBE_REDRAW (redraw);
2038       break;
2039
2040     case OP_PRINT:
2041       CHECK_MODE (IsHeader (extra) || IsAttach (extra));
2042       if (IsAttach (extra))
2043         mutt_print_attachment_list (extra->fp, 0, extra->bdy);
2044       else
2045         mutt_print_message (extra->hdr);
2046       break;
2047
2048     case OP_MAIL:
2049       CHECK_MODE (IsHeader (extra) && !IsAttach (extra));
2050       CHECK_ATTACH;
2051       ci_send_message (0, NULL, NULL, extra->ctx, NULL);
2052       redraw = REDRAW_FULL;
2053       break;
2054
2055 #ifdef USE_NNTP
2056     case OP_POST:
2057       CHECK_MODE (IsHeader (extra) && !IsAttach (extra));
2058       CHECK_ATTACH;
2059       if (extra->ctx && extra->ctx->magic == M_NNTP &&
2060           !((nntp_data_t *) extra->ctx->data)->allowed &&
2061           query_quadoption (OPT_TOMODERATED,
2062                             _
2063                             ("Posting to this group not allowed, may be moderated. Continue?"))
2064           != M_YES)
2065         break;
2066       ci_send_message (SENDNEWS, NULL, NULL, extra->ctx, NULL);
2067       redraw = REDRAW_FULL;
2068       break;
2069
2070     case OP_FORWARD_TO_GROUP:
2071       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2072       CHECK_ATTACH;
2073       if (extra->ctx && extra->ctx->magic == M_NNTP &&
2074           !((nntp_data_t *) extra->ctx->data)->allowed &&
2075           query_quadoption (OPT_TOMODERATED,
2076                             _
2077                             ("Posting to this group not allowed, may be moderated. Continue?"))
2078           != M_YES)
2079         break;
2080       if (IsMsgAttach (extra))
2081         mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2082                              extra->idxlen, extra->bdy, SENDNEWS);
2083       else
2084         ci_send_message (SENDNEWS | SENDFORWARD, NULL, NULL, extra->ctx,
2085                          extra->hdr);
2086       redraw = REDRAW_FULL;
2087       break;
2088
2089     case OP_FOLLOWUP:
2090       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2091       CHECK_ATTACH;
2092
2093       if (IsMsgAttach (extra))
2094         followup_to = extra->bdy->hdr->env->followup_to;
2095       else
2096         followup_to = extra->hdr->env->followup_to;
2097
2098       if (!followup_to || m_strcasecmp(followup_to, "poster") ||
2099           query_quadoption (OPT_FOLLOWUPTOPOSTER,
2100                             _("Reply by mail as poster prefers?")) != M_YES) {
2101         if (extra->ctx && extra->ctx->magic == M_NNTP
2102             && !((nntp_data_t *) extra->ctx->data)->allowed
2103             && query_quadoption (OPT_TOMODERATED,
2104                                  _
2105                                  ("Posting to this group not allowed, may be moderated. Continue?"))
2106             != M_YES)
2107           break;
2108         if (IsMsgAttach (extra))
2109           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2110                              extra->idxlen, extra->bdy, SENDNEWS | SENDREPLY);
2111         else
2112           ci_send_message (SENDNEWS | SENDREPLY, NULL, NULL,
2113                            extra->ctx, extra->hdr);
2114         redraw = REDRAW_FULL;
2115         break;
2116       }
2117 #endif
2118
2119     case OP_REPLY:
2120       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2121       CHECK_ATTACH;
2122       if (IsMsgAttach (extra))
2123         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2124                            extra->idxlen, extra->bdy, SENDREPLY);
2125       else
2126         ci_send_message (SENDREPLY, NULL, NULL, extra->ctx, extra->hdr);
2127       redraw = REDRAW_FULL;
2128       break;
2129
2130     case OP_RECALL_MESSAGE:
2131       CHECK_MODE (IsHeader (extra) && !IsAttach (extra));
2132       CHECK_ATTACH;
2133       ci_send_message (SENDPOSTPONED, NULL, NULL, extra->ctx, extra->hdr);
2134       redraw = REDRAW_FULL;
2135       break;
2136
2137     case OP_GROUP_REPLY:
2138       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2139       CHECK_ATTACH;
2140       if (IsMsgAttach (extra))
2141         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2142                            extra->idxlen, extra->bdy,
2143                            SENDREPLY | SENDGROUPREPLY);
2144       else
2145         ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, extra->ctx,
2146                          extra->hdr);
2147       redraw = REDRAW_FULL;
2148       break;
2149
2150     case OP_LIST_REPLY:
2151       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2152       CHECK_ATTACH;
2153       if (IsMsgAttach (extra))
2154         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2155                            extra->idxlen, extra->bdy,
2156                            SENDREPLY | SENDLISTREPLY);
2157       else
2158         ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, extra->ctx,
2159                          extra->hdr);
2160       redraw = REDRAW_FULL;
2161       break;
2162
2163     case OP_FORWARD_MESSAGE:
2164       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2165       CHECK_ATTACH;
2166       if (IsMsgAttach (extra))
2167         mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2168                              extra->idxlen, extra->bdy, 0);
2169       else
2170         ci_send_message (SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2171       redraw = REDRAW_FULL;
2172       break;
2173
2174     case OP_DECRYPT_SAVE:
2175     case OP_SAVE:
2176       if (IsAttach (extra)) {
2177         mutt_save_attachment_list (extra->fp, 0, extra->bdy, extra->hdr,
2178                                    NULL);
2179         break;
2180       }
2181       /* fall through */
2182     case OP_COPY_MESSAGE:
2183     case OP_DECODE_SAVE:
2184     case OP_DECODE_COPY:
2185     case OP_DECRYPT_COPY:
2186       CHECK_MODE (IsHeader (extra));
2187       if (mutt_save_message (extra->hdr,
2188                              (ch == OP_DECRYPT_SAVE) ||
2189                              (ch == OP_SAVE) || (ch == OP_DECODE_SAVE),
2190                              (ch == OP_DECODE_SAVE) || (ch == OP_DECODE_COPY),
2191                              (ch == OP_DECRYPT_SAVE)
2192                              || (ch == OP_DECRYPT_COPY) || 0, &redraw) == 0
2193           && (ch == OP_SAVE || ch == OP_DECODE_SAVE
2194               || ch == OP_DECRYPT_SAVE)) {
2195         if (option (OPTRESOLVE)) {
2196           ch = -1;
2197           rc = OP_MAIN_NEXT_UNDELETED;
2198         }
2199         else
2200           redraw |= REDRAW_STATUS | REDRAW_INDEX;
2201       }
2202       MAYBE_REDRAW (redraw);
2203       break;
2204
2205     case OP_SHELL_ESCAPE:
2206       mutt_shell_escape ();
2207       MAYBE_REDRAW (redraw);
2208       break;
2209
2210     case OP_TAG:
2211       CHECK_MODE (IsHeader (extra));
2212       mutt_set_flag (Context, extra->hdr, M_TAG, !extra->hdr->tagged);
2213
2214       Context->last_tag = extra->hdr->tagged ? extra->hdr :
2215         ((Context->last_tag == extra->hdr && !extra->hdr->tagged)
2216          ? NULL : Context->last_tag);
2217
2218       redraw = REDRAW_STATUS | REDRAW_INDEX;
2219       if (option (OPTRESOLVE)) {
2220         ch = -1;
2221         rc = OP_NEXT_ENTRY;
2222       }
2223       break;
2224
2225     case OP_TOGGLE_NEW:
2226       CHECK_MODE (IsHeader (extra));
2227       CHECK_READONLY;
2228
2229       CHECK_MX_ACL (Context, ACL_SEEN, _("Toggling"));
2230
2231       if (extra->hdr->read || extra->hdr->old)
2232         mutt_set_flag (Context, extra->hdr, M_NEW, 1);
2233       else if (!first)
2234         mutt_set_flag (Context, extra->hdr, M_READ, 1);
2235       first = 0;
2236       Context->msgnotreadyet = -1;
2237       redraw = REDRAW_STATUS | REDRAW_INDEX;
2238       if (option (OPTRESOLVE)) {
2239         ch = -1;
2240         rc = OP_MAIN_NEXT_UNDELETED;
2241       }
2242       break;
2243
2244     case OP_UNDELETE:
2245       CHECK_MODE (IsHeader (extra));
2246       CHECK_READONLY;
2247
2248       CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2249
2250       mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
2251       mutt_set_flag (Context, extra->hdr, M_PURGED, 0);
2252       redraw = REDRAW_STATUS | REDRAW_INDEX;
2253       if (option (OPTRESOLVE)) {
2254         ch = -1;
2255         rc = OP_NEXT_ENTRY;
2256       }
2257       break;
2258
2259     case OP_UNDELETE_THREAD:
2260     case OP_UNDELETE_SUBTHREAD:
2261       CHECK_MODE (IsHeader (extra));
2262       CHECK_READONLY;
2263
2264       CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2265
2266       r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
2267                                 ch == OP_UNDELETE_THREAD ? 0 : 1)
2268         + mutt_thread_set_flag (extra->hdr, M_PURGED, 0,
2269                                 ch == OP_UNDELETE_THREAD ? 0 : 1);
2270
2271       if (r > -1) {
2272         if (option (OPTRESOLVE)) {
2273           rc = (ch == OP_DELETE_THREAD) ?
2274             OP_MAIN_NEXT_THREAD : OP_MAIN_NEXT_SUBTHREAD;
2275           ch = -1;
2276         }
2277
2278         if (!option (OPTRESOLVE) && PagerIndexLines)
2279           redraw = REDRAW_FULL;
2280         else
2281           redraw = REDRAW_STATUS | REDRAW_INDEX;
2282       }
2283       break;
2284
2285     case OP_VERSION:
2286       mutt_version ();
2287       break;
2288
2289     case OP_BUFFY_LIST:
2290       if (option (OPTFORCEBUFFYCHECK))
2291         buffy_check (1);
2292       buffy_list ();
2293       redraw |= REDRAW_SIDEBAR;
2294       break;
2295
2296     case OP_VIEW_ATTACHMENTS:
2297       if (flags & M_PAGER_ATTACHMENT) {
2298         ch = -1;
2299         rc = OP_ATTACH_COLLAPSE;
2300         break;
2301       }
2302       CHECK_MODE (IsHeader (extra));
2303       mutt_view_attachments (extra->hdr);
2304       if (extra->hdr->attach_del)
2305         Context->changed = 1;
2306       redraw = REDRAW_FULL;
2307       break;
2308
2309     case OP_EXTRACT_KEYS:
2310       CHECK_MODE (IsHeader (extra));
2311       crypt_extract_keys_from_messages (extra->hdr);
2312       redraw = REDRAW_FULL;
2313       break;
2314
2315     case OP_SIDEBAR_SCROLL_UP:
2316     case OP_SIDEBAR_SCROLL_DOWN:
2317     case OP_SIDEBAR_NEXT:
2318     case OP_SIDEBAR_NEXT_NEW:
2319     case OP_SIDEBAR_PREV:
2320     case OP_SIDEBAR_PREV_NEW:
2321       sidebar_scroll (ch);
2322       break;
2323     default:
2324       ch = -1;
2325       break;
2326     }
2327   }
2328
2329   m_fclose(&fp);
2330   if (IsHeader (extra)) {
2331     Context->msgnotreadyet = -1;
2332     if (rc == -1)
2333       OldHdr = NULL;
2334     else {
2335       TopLine = topline;
2336       OldHdr = extra->hdr;
2337     }
2338   }
2339
2340   cleanup_quote(&QuoteList);
2341
2342   for (i = 0; i < maxLine; i++) {
2343     p_delete(&lineInfo[i].syntax);
2344     if (SearchCompiled)
2345       p_delete(&lineInfo[i].search);
2346   }
2347   if (SearchCompiled) {
2348     regfree (&SearchRE);
2349     SearchCompiled = 0;
2350   }
2351   p_delete(&lineInfo);
2352   if (pager_index)
2353     mutt_menuDestroy (&pager_index);
2354   return (rc != -1 ? rc : 0);
2355 }
2356
2357 #undef CHECK_ATTACH
2358 #undef CHECK_READONLY
2359 #undef CHECK_MODE