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