78887cc224509cb7fbf698ee1abdb7514b5d388d
[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 static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
821                         int flags, ansi_attr * pa, int cnt,
822                         int *pspace, int *pvch, int *pcol, int *pspecial)
823 {
824   int space = -1;               /* index of the last space or TAB */
825   int col = option (OPTMARKERS) ? (*lineInfo)[n].continuation : 0;
826   int ch, vch, k, last_special = -1, special = 0, t;
827   wchar_t wc;
828   mbstate_t mbstate;
829
830   int wrap_cols = getmaxx(main_w);
831
832   if (!(flags & (M_SHOWFLAT)))
833     wrap_cols -= WrapMargin;
834
835   if (wrap_cols <= 0)
836     wrap_cols = getmaxx(main_w);
837
838   /* FIXME: this should come from lineInfo */
839   p_clear(&mbstate, 1);
840
841   for (ch = 0, vch = 0; ch < cnt; ch += k, vch += k) {
842     /* Handle ANSI sequences */
843     while (cnt - ch >= 2 && buf[ch] == '\033' && buf[ch + 1] == '[' &&
844            is_ansi (buf + ch + 2)) {
845       while (isdigit(buf[ch]) || buf[ch] == ';')
846         ch++;
847     }
848
849     while (cnt - ch >= 2 && buf[ch] == '\033' && buf[ch + 1] == ']' &&
850            check_attachment_marker ((char *) buf + ch) == 0) {
851       while (buf[ch++] != '\a')
852         if (ch >= cnt)
853           break;
854     }
855
856     /* is anything left to do? */
857     if (ch >= cnt)
858       break;
859
860     k = mbrtowc (&wc, (char *) buf + ch, cnt - ch, &mbstate);
861     if (k == -2 || k == -1) {
862       if (col + 4 > wrap_cols)
863         break;
864       col += 4;
865       if (pa)
866         wprintw(main_w, "\\%03o", buf[ch]);
867       k = 1;
868       continue;
869     }
870     if (k == 0)
871       k = 1;
872
873     /* Handle backspace */
874     special = 0;
875     if (iswprint(wc)) {
876       wchar_t wc1;
877       mbstate_t mbstate1;
878       int k1, k2;
879
880       while ((wc1 = 0, mbstate1 = mbstate,
881               k1 =
882               k + mbrtowc (&wc1, (char *) buf + ch + k, cnt - ch - k,
883                            &mbstate1), k1 - k > 0 && wc1 == '\b')
884              && (wc1 = 0, k2 =
885                  mbrtowc (&wc1, (char *) buf + ch + k1, cnt - ch - k1,
886                           &mbstate1), k2 > 0 && iswprint(wc1))) {
887         if (wc == wc1) {
888           special |= (wc == '_' && special & A_UNDERLINE)
889             ? A_UNDERLINE : A_BOLD;
890         }
891         else if (wc == '_' || wc1 == '_') {
892           special |= A_UNDERLINE;
893           wc = (wc1 == '_') ? wc : wc1;
894         } else {
895           /* special = 0; / * overstrike: nothing to do! */
896           wc = wc1;
897         }
898         ch += k1;
899         k = k2;
900         mbstate = mbstate1;
901       }
902     }
903
904     if (pa &&
905         ((flags & (M_SHOWCOLOR | M_SEARCH | M_PAGER_MARKER)) ||
906          special || last_special || pa->attr)) {
907       resolve_color (*lineInfo, n, vch, flags, special, pa);
908       last_special = special;
909     }
910
911     if (iswprint(wc)) {
912       if (wc == ' ')
913         space = ch;
914       t = wcwidth (wc);
915       if (col + t > wrap_cols)
916         break;
917       col += t;
918       if (pa)
919         waddwch(main_w, wc);
920     }
921     else if (wc == '\n')
922       break;
923     else if (wc == '\t') {
924       space = ch;
925       t = (col & ~7) + 8;
926       if (t > wrap_cols)
927         break;
928       if (pa)
929         for (; col < t; col++)
930           waddch(main_w, ' ');
931       else
932         col = t;
933     }
934     else if (wc < 0x20 || wc == 0x7f) {
935       if (col + 2 > wrap_cols)
936         break;
937       col += 2;
938       if (pa)
939         wprintw(main_w, "^%c", ('@' + wc) & 0x7f);
940     }
941     else if (wc < 0x100) {
942       if (col + 4 > wrap_cols)
943         break;
944       col += 4;
945       if (pa)
946         wprintw(main_w, "\\%03o", wc);
947     } else {
948       if (col + 1 > wrap_cols)
949         break;
950       ++col;
951       if (pa)
952         waddch(main_w, CharsetReplacement);
953     }
954   }
955   *pspace = space;
956   *pcol = col;
957   *pvch = vch;
958   *pspecial = special;
959   return ch;
960 }
961
962 /*
963  * Args:
964  *      flags   M_SHOWFLAT, show characters (used for displaying help)
965  *              M_SHOWCOLOR, show characters in color
966  *                      otherwise don't show characters
967  *              M_HIDE, don't show quoted text
968  *              M_SEARCH, resolve search patterns
969  *              M_TYPES, compute line's type
970  *              M_PAGER_NSKIP, keeps leading whitespace
971  *              M_PAGER_MARKER, eventually show markers
972  *
973  * Return values:
974  *      -1      EOF was reached
975  *      0       normal exit, line was not displayed
976  *      >0      normal exit, line was displayed
977  */
978 static int
979 display_line (FILE * f, off_t *last_pos, struct line_t **lineInfo, int n,
980               int *last, int *max, int flags, struct q_class_t **QuoteList,
981               int *q_level, int *force_redraw, regex_t * SearchRE)
982 {
983   unsigned char buf[LONG_STRING], fmt[LONG_STRING];
984   unsigned char *buf_ptr = buf;
985   int ch, vch, col, cnt, b_read;
986   int buf_ready = 0, change_last = 0;
987   int special;
988   int offset;
989   int def_color;
990   int m;
991   ansi_attr a = { 0, 0, 0, -1 };
992   regmatch_t pmatch[1];
993
994   if (n == *last) {
995     (*last)++;
996     change_last = 1;
997   }
998
999   if (*last == *max) {
1000     p_realloc(lineInfo, *max += LINES);
1001     for (ch = *last; ch < *max; ch++) {
1002       p_clear(&(*lineInfo)[ch], 1);
1003       (*lineInfo)[ch].type = -1;
1004       (*lineInfo)[ch].search_cnt = -1;
1005       (*lineInfo)[ch].syntax = p_new(struct syntax_t, 1);
1006       ((*lineInfo)[ch].syntax)[0].first = ((*lineInfo)[ch].syntax)[0].last =
1007         -1;
1008     }
1009   }
1010
1011   /* only do color hiliting if we are viewing a message */
1012   if (flags & (M_SHOWCOLOR | M_TYPES)) {
1013     if ((*lineInfo)[n].type == -1) {
1014       /* determine the line class */
1015       if (fill_buffer
1016           (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1017            &buf_ready) < 0) {
1018         if (change_last)
1019           (*last)--;
1020         return (-1);
1021       }
1022
1023       resolve_types ((char *) fmt, (char *) buf, *lineInfo, n, *last,
1024                      QuoteList, q_level, force_redraw, flags & M_SHOWCOLOR);
1025
1026       /* avoid race condition for continuation lines when scrolling up */
1027       for (m = n + 1;
1028            m < *last && (*lineInfo)[m].offset && (*lineInfo)[m].continuation;
1029            m++)
1030         (*lineInfo)[m].type = (*lineInfo)[n].type;
1031     }
1032
1033     /* this also prevents searching through the hidden lines */
1034     if ((flags & M_HIDE) && (*lineInfo)[n].type == MT_COLOR_QUOTED)
1035       flags = 0;                /* M_NOSHOW */
1036   }
1037
1038   /* At this point, (*lineInfo[n]).quote may still be undefined. We 
1039    * don't want to compute it every time M_TYPES is set, since this
1040    * would slow down the "bottom" function unacceptably. A compromise
1041    * solution is hence to call regexec() again, just to find out the
1042    * length of the quote prefix.
1043    */
1044   if ((flags & M_SHOWCOLOR) && !(*lineInfo)[n].continuation &&
1045       (*lineInfo)[n].type == MT_COLOR_QUOTED && (*lineInfo)[n].quote == NULL)
1046   {
1047     if (fill_buffer
1048         (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1049          &buf_ready) < 0) {
1050       if (change_last)
1051         (*last)--;
1052       return (-1);
1053     }
1054     regexec ((regex_t *) QuoteRegexp.rx, (char *) fmt, 1, pmatch, 0);
1055     (*lineInfo)[n].quote = classify_quote (QuoteList,
1056                                            (char *) fmt + pmatch[0].rm_so,
1057                                            pmatch[0].rm_eo - pmatch[0].rm_so,
1058                                            force_redraw, q_level);
1059   }
1060
1061   if ((flags & M_SEARCH) && !(*lineInfo)[n].continuation
1062       && (*lineInfo)[n].search_cnt == -1) {
1063     if (fill_buffer
1064         (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf),
1065          &buf_ready) < 0) {
1066       if (change_last)
1067         (*last)--;
1068       return (-1);
1069     }
1070
1071     offset = 0;
1072     (*lineInfo)[n].search_cnt = 0;
1073     while (regexec
1074            (SearchRE, (char *) fmt + offset, 1, pmatch,
1075             (offset ? REG_NOTBOL : 0)) == 0) {
1076       if (++((*lineInfo)[n].search_cnt) > 1)
1077         p_realloc(&(*lineInfo)[n].search, (*lineInfo)[n].search_cnt);
1078       else
1079         (*lineInfo)[n].search = p_new(struct syntax_t, 1);
1080       pmatch[0].rm_so += offset;
1081       pmatch[0].rm_eo += offset;
1082       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].first =
1083         pmatch[0].rm_so;
1084       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].last =
1085         pmatch[0].rm_eo;
1086
1087       if (pmatch[0].rm_eo == pmatch[0].rm_so)
1088         offset++;               /* avoid degenerate cases */
1089       else
1090         offset = pmatch[0].rm_eo;
1091       if (!fmt[offset])
1092         break;
1093     }
1094   }
1095
1096   if (!(flags & M_SHOW) && (*lineInfo)[n + 1].offset > 0) {
1097     /* we've already scanned this line, so just exit */
1098     return (0);
1099   }
1100   if ((flags & M_SHOWCOLOR) && *force_redraw && (*lineInfo)[n + 1].offset > 0) {
1101     /* no need to try to display this line... */
1102     return (1);                 /* fake display */
1103   }
1104
1105   if ((b_read = fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt,
1106                              sizeof (buf), &buf_ready)) < 0) {
1107     if (change_last)
1108       (*last)--;
1109     return (-1);
1110   }
1111
1112   /* now chose a good place to break the line */
1113   cnt = format_line(lineInfo, n, buf, flags, 0, b_read, &ch, &vch, &col,
1114                     &special);
1115   buf_ptr = buf + cnt;
1116
1117   /* move the break point only if smart_wrap is set */
1118   if (option (OPTWRAP)) {
1119     if (cnt < b_read) {
1120       if (ch != -1 && buf[cnt] != ' ' && buf[cnt] != '\t' && buf[cnt] != '\n'
1121           && buf[cnt] != '\r') {
1122         buf_ptr = buf + ch;
1123         /* skip trailing blanks */
1124         while (ch && (buf[ch] == ' ' || buf[ch] == '\t' || buf[ch] == '\r'))
1125           ch--;
1126         /* a very long word with leading spaces causes infinite wrapping */
1127         if ((!ch) && (flags & M_PAGER_NSKIP))
1128           buf_ptr = buf + cnt;
1129         else
1130           cnt = ch + 1;
1131       } else {
1132         buf_ptr = buf + cnt;    /* a very long word... */
1133       }
1134     }
1135     if (!(flags & M_PAGER_NSKIP))
1136       /* skip leading blanks on the next line too */
1137       while (*buf_ptr == ' ' || *buf_ptr == '\t')
1138         buf_ptr++;
1139   }
1140
1141   if (*buf_ptr == '\r')
1142     buf_ptr++;
1143   if (*buf_ptr == '\n')
1144     buf_ptr++;
1145
1146   if ((int) (buf_ptr - buf) < b_read && !(*lineInfo)[n + 1].continuation)
1147     append_line (*lineInfo, n, (int) (buf_ptr - buf));
1148   (*lineInfo)[n + 1].offset = (*lineInfo)[n].offset + (long) (buf_ptr - buf);
1149
1150   /* if we don't need to display the line we are done */
1151   if (!(flags & M_SHOW))
1152     return 0;
1153
1154   /* display the line */
1155   format_line (lineInfo, n, buf, flags, &a, cnt, &ch, &vch, &col, &special);
1156
1157   /* end the last color pattern (needed by S-Lang) */
1158   if (special || (col != getmaxx(main_w) && (flags & (M_SHOWCOLOR | M_SEARCH))))
1159     resolve_color(*lineInfo, n, vch, flags, 0, &a);
1160
1161   /*
1162    * Fill the blank space at the end of the line with the prevailing color.
1163    * ncurses does an implicit wclrtoeol(main_w) when you do waddch(main_w,
1164    * '\n') so we have to make sure to reset the color *after* that
1165    */
1166   if (flags & M_SHOWCOLOR) {
1167     m = ((*lineInfo)[n].continuation) ? ((*lineInfo)[n].syntax)[0].first : n;
1168     if ((*lineInfo)[m].type == MT_COLOR_HEADER)
1169       def_color = ((*lineInfo)[m].syntax)[0].color;
1170     else
1171       def_color = ColorDefs[(*lineInfo)[m].type];
1172
1173     wattrset(main_w, def_color);
1174     wbkgdset(main_w, def_color | ' ');
1175   }
1176   waddch(main_w, '\n');
1177
1178   /*
1179    * reset the color back to normal.  This *must* come after the
1180    * waddch(main_w, '\n'), otherwise the color for this line will not be
1181    * filled to the right margin.
1182    */
1183   if (flags & M_SHOWCOLOR) {
1184     SETCOLOR(main_w, MT_COLOR_NORMAL);
1185     BKGDSET(main_w, MT_COLOR_NORMAL);
1186   }
1187
1188   /* build a return code */
1189   if (!(flags & M_SHOW))
1190     flags = 0;
1191
1192   return (flags);
1193 }
1194
1195 static int upNLines (int nlines, struct line_t *info, int cur, int hiding)
1196 {
1197   while (cur > 0 && nlines > 0) {
1198     cur--;
1199     if (!hiding || info[cur].type != MT_COLOR_QUOTED)
1200       nlines--;
1201   }
1202
1203   return cur;
1204 }
1205
1206 /* This pager is actually not so simple as it once was.  It now operates in
1207    two modes: one for viewing messages and the other for viewing help.  These
1208    can be distinguished by whether or not ``hdr'' is NULL.  The ``hdr'' arg
1209    is there so that we can do operations on the current message without the
1210    need to pop back out to the main-menu.  */
1211 int
1212 mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra)
1213 {
1214   static char searchbuf[STRING];
1215   char buffer[LONG_STRING];
1216   int maxLine, lastLine = 0;
1217   struct line_t *lineInfo;
1218   struct q_class_t *QuoteList = NULL;
1219   int i, j, ch = 0, rc = -1, hideQuoted = 0, q_level = 0, force_redraw = 0;
1220   int lines = 0, curline = 0, topline = 0, oldtopline = 0, err, first = 1;
1221   int r = -1;
1222   int redraw = REDRAW_FULL;
1223   FILE *fp = NULL;
1224   off_t last_pos = 0, last_offset = 0;
1225   int old_smart_wrap, old_markers;
1226   struct stat sb;
1227   regex_t SearchRE;
1228   int SearchCompiled = 0, SearchFlag = 0, SearchBack = 0;
1229   int has_types = (IsHeader (extra) || (flags & M_SHOWCOLOR)) ? M_TYPES : 0;    /* main message or rfc822 attachment */
1230
1231   int bodyoffset = 1;           /* offset of first line of real text */
1232   int statusoffset = 0;         /* offset for the status bar */
1233   int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */
1234
1235   MUTTMENU *pager_index = NULL;       /* the Pager Index (PI) */
1236   int indexlen = PagerIndexLines;     /* indexlen not always == PIL */
1237   int indicator = indexlen / 3; /* the indicator line of the PI */
1238   int old_PagerIndexLines;      /* some people want to resize it
1239                                  * while inside the pager... */
1240
1241   if (!(flags & M_SHOWCOLOR))
1242     flags |= M_SHOWFLAT;
1243
1244   if ((fp = fopen (fname, "r")) == NULL) {
1245     mutt_perror (fname);
1246     return (-1);
1247   }
1248
1249   if (stat (fname, &sb) != 0) {
1250     mutt_perror (fname);
1251     m_fclose(&fp);
1252     return (-1);
1253   }
1254   unlink (fname);
1255
1256   /* Initialize variables */
1257
1258   if (IsHeader (extra) && !extra->hdr->read) {
1259     Context->msgnotreadyet = extra->hdr->msgno;
1260     mutt_set_flag (Context, extra->hdr, M_READ, 1);
1261   }
1262
1263   lineInfo = p_new(struct line_t, maxLine = LINES);
1264   for (i = 0; i < maxLine; i++) {
1265     p_clear(&lineInfo[i], 1);
1266     lineInfo[i].type = -1;
1267     lineInfo[i].search_cnt = -1;
1268     lineInfo[i].syntax = p_new(struct syntax_t, 1);
1269     (lineInfo[i].syntax)[0].first = (lineInfo[i].syntax)[0].last = -1;
1270   }
1271
1272   while (ch != -1) {
1273     mutt_curs_set (0);
1274     imap_keepalive ();
1275
1276     if (redraw & REDRAW_FULL) {
1277       SETCOLOR(main_w, MT_COLOR_NORMAL);
1278       /* wclear(main_w) doesn't optimize screen redraws */
1279       wmove(main_w, 0, 0);
1280       wclrtobot(main_w);
1281
1282       if (IsHeader (extra) && Context->vcount + 1 < PagerIndexLines)
1283         indexlen = Context->vcount + 1;
1284       else
1285         indexlen = PagerIndexLines;
1286
1287       indicator = indexlen / 3;
1288
1289       statusoffset = IsHeader (extra) ? indexlen : 0;
1290       bodyoffset   = statusoffset + 1;
1291       bodylen      = LINES - 2 - bodyoffset;
1292
1293       SETCOLOR(main_w, MT_COLOR_SIDEBAR);
1294       mvwhline(main_w, LINES - 2, 0, ACS_HLINE, getmaxx(main_w));
1295       SETCOLOR(main_w, MT_COLOR_NORMAL);
1296
1297       if (Resize != NULL) {
1298         if ((SearchCompiled = Resize->SearchCompiled)) {
1299           REGCOMP
1300             (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf));
1301           SearchFlag = M_SEARCH;
1302           SearchBack = Resize->SearchBack;
1303         }
1304         lines = Resize->line;
1305         redraw |= REDRAW_SIGWINCH;
1306
1307         p_delete(&Resize);
1308       }
1309
1310       if (IsHeader (extra) && PagerIndexLines) {
1311         if (pager_index == NULL) {
1312           /* only allocate the space if/when we need the index.
1313              Initialise the menu as per the main index */
1314           pager_index = mutt_new_menu ();
1315           pager_index->menu = MENU_MAIN;
1316           pager_index->make_entry = index_make_entry;
1317           pager_index->color = index_color;
1318           pager_index->max = Context->vcount;
1319           pager_index->current = extra->hdr->virtual;
1320         }
1321
1322         SETCOLOR(main_w, MT_COLOR_NORMAL);
1323         pager_index->offset  = 1;
1324         pager_index->pagelen = indexlen - 1;
1325
1326         /* some fudge to work out where abouts the indicator should go */
1327         if (pager_index->current - indicator < 0)
1328           pager_index->top = 0;
1329         else if (pager_index->max - pager_index->current < pager_index->pagelen - indicator)
1330           pager_index->top = pager_index->max - pager_index->pagelen;
1331         else
1332           pager_index->top = pager_index->current - indicator;
1333
1334         menu_redraw_index (pager_index);
1335       }
1336
1337       redraw |= REDRAW_BODY | REDRAW_INDEX | REDRAW_STATUS;
1338       mutt_show_error ();
1339     }
1340
1341     if (redraw & REDRAW_SIGWINCH) {
1342       i = -1;
1343       j = -1;
1344       while (display_line (fp, &last_pos, &lineInfo, ++i, &lastLine, &maxLine,
1345                            has_types | SearchFlag, &QuoteList, &q_level,
1346                            &force_redraw, &SearchRE) == 0) {
1347         if (!lineInfo[i].continuation && ++j == lines) {
1348           topline = i;
1349           if (!SearchFlag)
1350             break;
1351         }
1352         redraw |= REDRAW_SIDEBAR;
1353       }                         /* while */
1354     }
1355
1356     if ((redraw & REDRAW_BODY) || topline != oldtopline) {
1357       do {
1358         wmove(main_w, bodyoffset, 0);
1359         curline = oldtopline = topline;
1360         lines = 0;
1361         force_redraw = 0;
1362
1363         while (lines < bodylen && lineInfo[curline].offset <= sb.st_size - 1) {
1364           if (display_line (fp, &last_pos, &lineInfo, curline, &lastLine,
1365                             &maxLine,
1366                             (flags & M_DISPLAYFLAGS) | hideQuoted |
1367                             SearchFlag, &QuoteList, &q_level, &force_redraw,
1368                             &SearchRE) > 0)
1369             lines++;
1370           curline++;
1371           wmove(main_w, lines + bodyoffset, 0);
1372           redraw |= REDRAW_SIDEBAR;
1373         }
1374         last_offset = lineInfo[curline].offset;
1375       } while (force_redraw);
1376
1377       SETCOLOR(main_w, MT_COLOR_TILDE);
1378       BKGDSET(main_w, MT_COLOR_TILDE);
1379       while (lines < bodylen) {
1380         wclrtoeol(main_w);
1381         if (option (OPTTILDE))
1382           waddch(main_w, '~');
1383         waddch(main_w, '\n');
1384         lines++;
1385         wmove(main_w, lines + bodyoffset, 0);
1386       }
1387       /* We are going to update the pager status bar, so it isn't
1388        * necessary to reset to normal color now. */
1389
1390       redraw |= REDRAW_STATUS;  /* need to update the % seen */
1391     }
1392
1393     if (redraw & REDRAW_STATUS) {
1394       /* print out the pager status bar */
1395       SETCOLOR(main_w, MT_COLOR_STATUS);
1396       BKGDSET(main_w, MT_COLOR_STATUS);
1397       wmove(main_w, statusoffset, 0);
1398       wclrtoeol(main_w);
1399       if (IsHeader (extra)) {
1400         size_t l1 = (getmaxx(main_w) - 9) * MB_LEN_MAX;
1401         size_t l2 = sizeof (buffer);
1402
1403         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1404                            Context, extra->hdr, M_FORMAT_MAKEPRINT);
1405       }
1406       else if (IsMsgAttach (extra)) {
1407         size_t l1 = (getmaxx(main_w) - 9) * MB_LEN_MAX;
1408         size_t l2 = sizeof (buffer);
1409
1410         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1411                            Context, extra->bdy->hdr, M_FORMAT_MAKEPRINT);
1412       }
1413       wmove(main_w, statusoffset, 0);
1414       mutt_paddstr(main_w, getmaxx(main_w) - 10,
1415                    IsHeader(extra) || IsMsgAttach(extra) ? buffer : banner);
1416
1417       waddstr(main_w, " -- (");
1418       if (last_pos < sb.st_size - 1)
1419         wprintw(main_w, "%d%%)", (int) (100 * last_offset / sb.st_size));
1420       else
1421         waddstr(main_w, topline == 0 ? "all)" : "end)");
1422       BKGDSET(main_w, MT_COLOR_NORMAL);
1423       SETCOLOR(main_w, MT_COLOR_NORMAL);
1424     }
1425
1426     if (redraw & REDRAW_SIDEBAR)
1427       sidebar_draw ();
1428
1429     if ((redraw & REDRAW_INDEX) && pager_index) {
1430       /* redraw the pager_index indicator, because the
1431        * flags for this message might have changed. */
1432       menu_redraw_current (pager_index);
1433       sidebar_draw ();
1434       /* print out the pager_index status bar */
1435       menu_status_line (buffer, sizeof (buffer), pager_index, NONULL (Status));
1436       wmove(main_w, 0, 0);
1437       SETCOLOR(main_w, MT_COLOR_STATUS);
1438       BKGDSET(main_w, MT_COLOR_STATUS);
1439       mutt_paddstr(main_w, getmaxx(main_w), buffer);
1440       SETCOLOR(main_w, MT_COLOR_NORMAL);
1441       BKGDSET(main_w, MT_COLOR_NORMAL);
1442     }
1443
1444     sidebar_draw ();
1445     redraw = 0;
1446     mutt_refresh();
1447
1448     if (IsHeader (extra) && OldHdr == extra->hdr && TopLine != topline
1449         && lineInfo[curline].offset < sb.st_size-1) {
1450       if (TopLine - topline > lines)
1451         topline += lines;
1452       else
1453         topline = TopLine;
1454       continue;
1455     } else {
1456       OldHdr = NULL;
1457     }
1458
1459     ch = km_dokey (MENU_PAGER);
1460     if (ch != -1)
1461       mutt_clear_error ();
1462     mutt_curs_set (1);
1463
1464     if (SigInt) {
1465       mutt_query_exit ();
1466       continue;
1467     }
1468
1469     if (SigWinch) {
1470       ui_layout_resize();
1471
1472       /* Store current position. */
1473       lines = -1;
1474       for (i = 0; i <= topline; i++)
1475         if (!lineInfo[i].continuation)
1476           lines++;
1477
1478       if (flags & M_PAGER_RETWINCH) {
1479         Resize = p_new(struct resize, 1);
1480
1481         Resize->line = lines;
1482         Resize->SearchCompiled = SearchCompiled;
1483         Resize->SearchBack = SearchBack;
1484
1485         ch = -1;
1486         rc = OP_REFORMAT_WINCH;
1487       } else {
1488         for (i = 0; i < maxLine; i++) {
1489           lineInfo[i].offset = 0;
1490           lineInfo[i].type = -1;
1491           lineInfo[i].continuation = 0;
1492           lineInfo[i].chunks = 0;
1493           lineInfo[i].search_cnt = -1;
1494           lineInfo[i].quote = NULL;
1495
1496           p_realloc(&lineInfo[i].syntax, 1);
1497           if (SearchCompiled)
1498             p_delete(&lineInfo[i].search);
1499         }
1500
1501         lastLine = 0;
1502         topline = 0;
1503
1504         redraw = REDRAW_FULL | REDRAW_SIGWINCH;
1505         ch = 0;
1506       }
1507       continue;
1508     }
1509
1510     if (ch == -1) {
1511       ch = 0;
1512       continue;
1513     }
1514
1515     rc = ch;
1516
1517     switch (ch) {
1518     case OP_EXIT:
1519       rc = -1;
1520       ch = -1;
1521       break;
1522
1523     case OP_NEXT_PAGE:
1524       if (lineInfo[curline].offset < sb.st_size - 1) {
1525         topline = upNLines (PagerContext, lineInfo, curline, hideQuoted);
1526       }
1527       else if (option (OPTPAGERSTOP)) {
1528         /* emulate "less -q" and don't go on to the next message. */
1529         mutt_error _("Bottom of message is shown.");
1530       } else {
1531         /* end of the current message, so display the next message. */
1532         rc = OP_MAIN_NEXT_UNDELETED;
1533         ch = -1;
1534       }
1535       break;
1536
1537     case OP_PREV_PAGE:
1538       if (topline != 0) {
1539         topline =
1540           upNLines (bodylen - PagerContext, lineInfo, topline, hideQuoted);
1541       }
1542       else
1543         mutt_error _("Top of message is shown.");
1544       break;
1545
1546     case OP_NEXT_LINE:
1547       if (lineInfo[curline].offset < sb.st_size - 1) {
1548         topline++;
1549         if (hideQuoted) {
1550           while (lineInfo[topline].type == MT_COLOR_QUOTED &&
1551                  topline < lastLine)
1552             topline++;
1553         }
1554       }
1555       else
1556         mutt_error _("Bottom of message is shown.");
1557       break;
1558
1559     case OP_PREV_LINE:
1560       if (topline)
1561         topline = upNLines (1, lineInfo, topline, hideQuoted);
1562       else
1563         mutt_error _("Top of message is shown.");
1564       break;
1565
1566     case OP_PAGER_TOP:
1567       if (topline)
1568         topline = 0;
1569       else
1570         mutt_error _("Top of message is shown.");
1571       break;
1572
1573     case OP_HALF_UP:
1574       if (topline)
1575         topline = upNLines (bodylen / 2, lineInfo, topline, hideQuoted);
1576       else
1577         mutt_error _("Top of message is shown.");
1578       break;
1579
1580     case OP_HALF_DOWN:
1581       if (lineInfo[curline].offset < sb.st_size - 1) {
1582         topline = upNLines (bodylen / 2, lineInfo, curline, hideQuoted);
1583       }
1584       else if (option (OPTPAGERSTOP)) {
1585         /* emulate "less -q" and don't go on to the next message. */
1586         mutt_error _("Bottom of message is shown.");
1587       } else {
1588         /* end of the current message, so display the next message. */
1589         rc = OP_MAIN_NEXT_UNDELETED;
1590         ch = -1;
1591       }
1592       break;
1593
1594     case OP_SEARCH_NEXT:
1595     case OP_SEARCH_OPPOSITE:
1596       if (SearchCompiled) {
1597       search_next:
1598         if ((!SearchBack && ch == OP_SEARCH_NEXT) ||
1599             (SearchBack && ch == OP_SEARCH_OPPOSITE)) {
1600           /* searching forward */
1601           for (i = topline + 1; i < lastLine; i++) {
1602             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1603                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1604               break;
1605           }
1606
1607           if (i < lastLine)
1608             topline = i;
1609           else
1610             mutt_error _("Not found.");
1611         }
1612         else {
1613           /* searching backward */
1614           for (i = topline - 1; i >= 0; i--) {
1615             if ((!hideQuoted || (has_types &&
1616                                  lineInfo[i].type != MT_COLOR_QUOTED)) &&
1617                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1618               break;
1619           }
1620
1621           if (i >= 0)
1622             topline = i;
1623           else
1624             mutt_error _("Not found.");
1625         }
1626
1627         if (lineInfo[topline].search_cnt > 0)
1628           SearchFlag = M_SEARCH;
1629
1630         break;
1631       }
1632       /* no previous search pattern, so fall through to search */
1633
1634     case OP_SEARCH:
1635     case OP_SEARCH_REVERSE:
1636       m_strcpy(buffer, sizeof(buffer), searchbuf);
1637       if (mutt_get_field ((SearchBack ? _("Reverse search: ") :
1638                            _("Search: ")), buffer, sizeof (buffer),
1639                           M_CLEAR) != 0)
1640         break;
1641
1642       if (!m_strcmp (buffer, searchbuf)) {
1643         if (SearchCompiled) {
1644           /* do an implicit search-next */
1645           if (ch == OP_SEARCH)
1646             ch = OP_SEARCH_NEXT;
1647           else
1648             ch = OP_SEARCH_OPPOSITE;
1649
1650           goto search_next;
1651         }
1652       }
1653
1654       if (!buffer[0])
1655         break;
1656
1657       m_strcpy(searchbuf, sizeof(searchbuf), buffer);
1658
1659       /* leave SearchBack alone if ch == OP_SEARCH_NEXT */
1660       if (ch == OP_SEARCH)
1661         SearchBack = 0;
1662       else if (ch == OP_SEARCH_REVERSE)
1663         SearchBack = 1;
1664
1665       if (SearchCompiled) {
1666         regfree (&SearchRE);
1667         for (i = 0; i < lastLine; i++) {
1668           p_delete(&lineInfo[i].search);
1669           lineInfo[i].search_cnt = -1;
1670         }
1671       }
1672
1673       if ((err =
1674            REGCOMP (&SearchRE, searchbuf,
1675                     REG_NEWLINE | mutt_which_case (searchbuf))) != 0) {
1676         regerror (err, &SearchRE, buffer, sizeof (buffer));
1677         mutt_error ("%s", buffer);
1678         regfree (&SearchRE);
1679         for (i = 0; i < maxLine; i++) {
1680           /* cleanup */
1681           p_delete(&lineInfo[i].search);
1682           lineInfo[i].search_cnt = -1;
1683         }
1684         SearchFlag = 0;
1685         SearchCompiled = 0;
1686       }
1687       else {
1688         SearchCompiled = 1;
1689         /* update the search pointers */
1690         i = 0;
1691         while (display_line (fp, &last_pos, &lineInfo, i, &lastLine,
1692                              &maxLine, M_SEARCH | (flags & M_PAGER_NSKIP),
1693                              &QuoteList, &q_level,
1694                              &force_redraw, &SearchRE) == 0) {
1695           i++;
1696           redraw |= REDRAW_SIDEBAR;
1697         }
1698
1699         if (!SearchBack) {
1700           /* searching forward */
1701           for (i = topline; i < lastLine; i++) {
1702             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1703                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1704               break;
1705           }
1706
1707           if (i < lastLine)
1708             topline = i;
1709         }
1710         else {
1711           /* searching backward */
1712           for (i = topline; i >= 0; i--) {
1713             if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) &&
1714                 !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1715               break;
1716           }
1717
1718           if (i >= 0)
1719             topline = i;
1720         }
1721
1722         if (lineInfo[topline].search_cnt == 0) {
1723           SearchFlag = 0;
1724           mutt_error _("Not found.");
1725         }
1726         else
1727           SearchFlag = M_SEARCH;
1728       }
1729       redraw = REDRAW_BODY;
1730       break;
1731
1732     case OP_SEARCH_TOGGLE:
1733       if (SearchCompiled) {
1734         SearchFlag ^= M_SEARCH;
1735         redraw = REDRAW_BODY;
1736       }
1737       break;
1738
1739     case OP_HELP:
1740       /* don't let the user enter the help-menu from the help screen! */
1741       if (!InHelp) {
1742         InHelp = 1;
1743         mutt_help (MENU_PAGER);
1744         redraw = REDRAW_FULL;
1745         InHelp = 0;
1746       }
1747       else
1748         mutt_error _("Help is currently being shown.");
1749       break;
1750
1751     case OP_PAGER_HIDE_QUOTED:
1752       if (has_types) {
1753         hideQuoted ^= M_HIDE;
1754         if (hideQuoted && lineInfo[topline].type == MT_COLOR_QUOTED)
1755           topline = upNLines (1, lineInfo, topline, hideQuoted);
1756         else
1757           redraw = REDRAW_BODY;
1758       }
1759       break;
1760
1761     case OP_PAGER_SKIP_QUOTED:
1762       if (has_types) {
1763         int dretval = 0;
1764         int new_topline = topline;
1765
1766         while ((new_topline < lastLine ||
1767                 (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
1768                                                new_topline, &lastLine,
1769                                                &maxLine, M_TYPES, &QuoteList,
1770                                                &q_level, &force_redraw,
1771                                                &SearchRE))))
1772                && lineInfo[new_topline].type != MT_COLOR_QUOTED) {
1773           redraw |= REDRAW_SIDEBAR;
1774           new_topline++;
1775         }
1776
1777         if (dretval < 0) {
1778           mutt_error _("No more quoted text.");
1779
1780           break;
1781         }
1782
1783         while ((new_topline < lastLine ||
1784                 (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
1785                                                new_topline, &lastLine,
1786                                                &maxLine, M_TYPES, &QuoteList,
1787                                                &q_level, &force_redraw,
1788                                                &SearchRE))))
1789                && lineInfo[new_topline].type == MT_COLOR_QUOTED) {
1790           new_topline++;
1791           redraw |= REDRAW_SIDEBAR;
1792         }
1793
1794         if (dretval < 0) {
1795           mutt_error _("No more unquoted text after quoted text.");
1796
1797           break;
1798         }
1799         topline = new_topline;
1800       }
1801       break;
1802
1803     case OP_PAGER_BOTTOM:      /* move to the end of the file */
1804       if (lineInfo[curline].offset < sb.st_size - 1) {
1805         i = curline;
1806         /* make sure the types are defined to the end of file */
1807         while (display_line (fp, &last_pos, &lineInfo, i, &lastLine,
1808                              &maxLine, has_types,
1809                              &QuoteList, &q_level, &force_redraw,
1810                              &SearchRE) == 0) {
1811           i++;
1812           redraw |= REDRAW_SIDEBAR;
1813         }
1814         topline = upNLines (bodylen, lineInfo, lastLine, hideQuoted);
1815       }
1816       else
1817         mutt_error _("Bottom of message is shown.");
1818       break;
1819
1820     case OP_REDRAW:
1821       clearok(main_w, TRUE);
1822       redraw = REDRAW_FULL;
1823       break;
1824
1825     case OP_NULL:
1826       km_error_key (MENU_PAGER);
1827       break;
1828
1829       /* --------------------------------------------------------------------
1830        * The following are operations on the current message rather than
1831        * adjusting the view of the message.
1832        */
1833
1834     case OP_BOUNCE_MESSAGE:
1835       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra))
1836         CHECK_ATTACH;
1837       if (IsMsgAttach (extra))
1838         mutt_attach_bounce (extra->fp, extra->hdr,
1839                             extra->idx, extra->idxlen, extra->bdy);
1840       else
1841         ci_bounce_message (extra->hdr, &redraw);
1842       break;
1843
1844     case OP_RESEND:
1845       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra))
1846         CHECK_ATTACH;
1847       if (IsMsgAttach (extra))
1848         mutt_attach_resend (extra->fp, extra->hdr,
1849                             extra->idx, extra->idxlen, extra->bdy);
1850       else
1851         mutt_resend_message (NULL, extra->ctx, extra->hdr);
1852       redraw = REDRAW_FULL;
1853       break;
1854
1855     case OP_CHECK_TRADITIONAL:
1856       CHECK_MODE (IsHeader (extra));
1857       if (!(extra->hdr->security & PGP_TRADITIONAL_CHECKED)) {
1858         ch = -1;
1859         rc = OP_CHECK_TRADITIONAL;
1860       }
1861       break;
1862
1863     case OP_CREATE_ALIAS:
1864       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
1865       if (IsMsgAttach (extra))
1866         mutt_create_alias (extra->bdy->hdr->env, NULL);
1867       else
1868         mutt_create_alias (extra->hdr->env, NULL);
1869       MAYBE_REDRAW (redraw);
1870       break;
1871
1872     case OP_PURGE_MESSAGE:
1873     case OP_DELETE:
1874       CHECK_MODE (IsHeader (extra));
1875       CHECK_READONLY;
1876
1877       CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1878
1879       mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
1880       mutt_set_flag (Context, extra->hdr, M_PURGED,
1881                      ch != OP_PURGE_MESSAGE ? 0 : 1);
1882       if (option (OPTDELETEUNTAG))
1883         mutt_set_flag (Context, extra->hdr, M_TAG, 0);
1884       redraw = REDRAW_STATUS | REDRAW_INDEX;
1885       if (option (OPTRESOLVE)) {
1886         ch = -1;
1887         rc = OP_MAIN_NEXT_UNDELETED;
1888       }
1889       break;
1890
1891     case OP_DELETE_THREAD:
1892     case OP_DELETE_SUBTHREAD:
1893       CHECK_MODE (IsHeader (extra));
1894       CHECK_READONLY;
1895
1896       CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1897
1898       r = mutt_thread_set_flag (extra->hdr, M_DELETE, 1,
1899                                 ch == OP_DELETE_THREAD ? 0 : 1);
1900
1901       if (r != -1) {
1902         if (option (OPTDELETEUNTAG))
1903           mutt_thread_set_flag (extra->hdr, M_TAG, 0,
1904                                 ch == OP_DELETE_THREAD ? 0 : 1);
1905         if (option (OPTRESOLVE)) {
1906           rc = OP_MAIN_NEXT_UNDELETED;
1907           ch = -1;
1908         }
1909
1910         if (!option (OPTRESOLVE) && PagerIndexLines)
1911           redraw = REDRAW_FULL;
1912         else
1913           redraw = REDRAW_STATUS | REDRAW_INDEX;
1914       }
1915       break;
1916
1917     case OP_DISPLAY_ADDRESS:
1918       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
1919       if (IsMsgAttach (extra))
1920         mutt_display_address (extra->bdy->hdr->env);
1921       else
1922         mutt_display_address (extra->hdr->env);
1923       break;
1924
1925     case OP_ENTER_COMMAND:
1926       old_smart_wrap = option (OPTWRAP);
1927       old_markers = option (OPTMARKERS);
1928       old_PagerIndexLines = PagerIndexLines;
1929
1930       CurrentMenu = MENU_PAGER;
1931       mutt_enter_command ();
1932
1933       if (option (OPTNEEDRESORT)) {
1934         unset_option (OPTNEEDRESORT);
1935         CHECK_MODE (IsHeader (extra));
1936         set_option (OPTNEEDRESORT);
1937       }
1938
1939       if (old_PagerIndexLines != PagerIndexLines) {
1940         if (pager_index)
1941           mutt_menuDestroy (&pager_index);
1942         pager_index = NULL;
1943       }
1944
1945       if (option (OPTWRAP) != old_smart_wrap ||
1946           option (OPTMARKERS) != old_markers) {
1947         if (flags & M_PAGER_RETWINCH) {
1948           ch = -1;
1949           rc = OP_REFORMAT_WINCH;
1950           continue;
1951         }
1952
1953         /* count the real lines above */
1954         j = 0;
1955         for (i = 0; i <= topline; i++) {
1956           if (!lineInfo[i].continuation)
1957             j++;
1958         }
1959
1960         /* we need to restart the whole thing */
1961         for (i = 0; i < maxLine; i++) {
1962           lineInfo[i].offset = 0;
1963           lineInfo[i].type = -1;
1964           lineInfo[i].continuation = 0;
1965           lineInfo[i].chunks = 0;
1966           lineInfo[i].search_cnt = -1;
1967           lineInfo[i].quote = NULL;
1968
1969           p_realloc(&(lineInfo[i].syntax), 1);
1970           if (SearchCompiled)
1971             p_delete(&lineInfo[i].search);
1972         }
1973
1974         if (SearchCompiled) {
1975           regfree (&SearchRE);
1976           SearchCompiled = 0;
1977         }
1978         SearchFlag = 0;
1979
1980         /* try to keep the old position */
1981         topline = 0;
1982         lastLine = 0;
1983         while (j > 0 && display_line (fp, &last_pos, &lineInfo, topline,
1984                                       &lastLine, &maxLine,
1985                                       (has_types ? M_TYPES : 0),
1986                                       &QuoteList, &q_level, &force_redraw,
1987                                       &SearchRE) == 0) {
1988           redraw |= REDRAW_SIDEBAR;
1989           if (!lineInfo[topline].continuation)
1990             j--;
1991           if (j > 0)
1992             topline++;
1993         }
1994
1995         ch = 0;
1996       }
1997
1998       if (option (OPTFORCEREDRAWPAGER))
1999         redraw = REDRAW_FULL;
2000       unset_option (OPTFORCEREDRAWINDEX);
2001       unset_option (OPTFORCEREDRAWPAGER);
2002       break;
2003
2004     case OP_FLAG_MESSAGE:
2005       CHECK_MODE (IsHeader (extra));
2006       CHECK_READONLY;
2007
2008       CHECK_MX_ACL (Context, ACL_WRITE, _("Flagging"));
2009
2010       mutt_set_flag (Context, extra->hdr, M_FLAG, !extra->hdr->flagged);
2011       redraw = REDRAW_STATUS | REDRAW_INDEX;
2012       if (option (OPTRESOLVE)) {
2013         ch = -1;
2014         rc = OP_MAIN_NEXT_UNDELETED;
2015       }
2016       break;
2017
2018     case OP_PIPE:
2019       CHECK_MODE (IsHeader (extra) || IsAttach (extra));
2020       if (IsAttach (extra))
2021         mutt_pipe_attachment_list (extra->fp, 0, extra->bdy, 0);
2022       else
2023         mutt_pipe_message (extra->hdr);
2024       MAYBE_REDRAW (redraw);
2025       break;
2026
2027     case OP_PRINT:
2028       CHECK_MODE (IsHeader (extra) || IsAttach (extra));
2029       if (IsAttach (extra))
2030         mutt_print_attachment_list (extra->fp, 0, extra->bdy);
2031       else
2032         mutt_print_message (extra->hdr);
2033       break;
2034
2035     case OP_MAIL:
2036       CHECK_MODE (IsHeader (extra) && !IsAttach (extra));
2037       CHECK_ATTACH;
2038       ci_send_message (0, NULL, NULL, extra->ctx, NULL);
2039       redraw = REDRAW_FULL;
2040       break;
2041
2042     case OP_REPLY:
2043       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2044       CHECK_ATTACH;
2045       if (IsMsgAttach (extra))
2046         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2047                            extra->idxlen, extra->bdy, SENDREPLY);
2048       else
2049         ci_send_message (SENDREPLY, NULL, NULL, extra->ctx, extra->hdr);
2050       redraw = REDRAW_FULL;
2051       break;
2052
2053     case OP_RECALL_MESSAGE:
2054       CHECK_MODE (IsHeader (extra) && !IsAttach (extra));
2055       CHECK_ATTACH;
2056       ci_send_message (SENDPOSTPONED, NULL, NULL, extra->ctx, extra->hdr);
2057       redraw = REDRAW_FULL;
2058       break;
2059
2060     case OP_GROUP_REPLY:
2061       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2062       CHECK_ATTACH;
2063       if (IsMsgAttach (extra))
2064         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2065                            extra->idxlen, extra->bdy,
2066                            SENDREPLY | SENDGROUPREPLY);
2067       else
2068         ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, extra->ctx,
2069                          extra->hdr);
2070       redraw = REDRAW_FULL;
2071       break;
2072
2073     case OP_LIST_REPLY:
2074       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2075       CHECK_ATTACH;
2076       if (IsMsgAttach (extra))
2077         mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2078                            extra->idxlen, extra->bdy,
2079                            SENDREPLY | SENDLISTREPLY);
2080       else
2081         ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, extra->ctx,
2082                          extra->hdr);
2083       redraw = REDRAW_FULL;
2084       break;
2085
2086     case OP_FORWARD_MESSAGE:
2087       CHECK_MODE (IsHeader (extra) || IsMsgAttach (extra));
2088       CHECK_ATTACH;
2089       if (IsMsgAttach (extra))
2090         mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2091                              extra->idxlen, extra->bdy, 0);
2092       else
2093         ci_send_message (SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2094       redraw = REDRAW_FULL;
2095       break;
2096
2097     case OP_DECRYPT_SAVE:
2098     case OP_SAVE:
2099       if (IsAttach (extra)) {
2100         mutt_save_attachment_list (extra->fp, 0, extra->bdy, extra->hdr,
2101                                    NULL);
2102         break;
2103       }
2104       /* fall through */
2105     case OP_COPY_MESSAGE:
2106     case OP_DECODE_SAVE:
2107     case OP_DECODE_COPY:
2108     case OP_DECRYPT_COPY:
2109       CHECK_MODE (IsHeader (extra));
2110       if (mutt_save_message (extra->hdr,
2111                              (ch == OP_DECRYPT_SAVE) ||
2112                              (ch == OP_SAVE) || (ch == OP_DECODE_SAVE),
2113                              (ch == OP_DECODE_SAVE) || (ch == OP_DECODE_COPY),
2114                              (ch == OP_DECRYPT_SAVE)
2115                              || (ch == OP_DECRYPT_COPY) || 0, &redraw) == 0
2116           && (ch == OP_SAVE || ch == OP_DECODE_SAVE
2117               || ch == OP_DECRYPT_SAVE)) {
2118         if (option (OPTRESOLVE)) {
2119           ch = -1;
2120           rc = OP_MAIN_NEXT_UNDELETED;
2121         }
2122         else
2123           redraw |= REDRAW_STATUS | REDRAW_INDEX;
2124       }
2125       MAYBE_REDRAW (redraw);
2126       break;
2127
2128     case OP_SHELL_ESCAPE:
2129       mutt_shell_escape ();
2130       MAYBE_REDRAW (redraw);
2131       break;
2132
2133     case OP_TAG:
2134       CHECK_MODE (IsHeader (extra));
2135       mutt_set_flag (Context, extra->hdr, M_TAG, !extra->hdr->tagged);
2136
2137       Context->last_tag = extra->hdr->tagged ? extra->hdr :
2138         ((Context->last_tag == extra->hdr && !extra->hdr->tagged)
2139          ? NULL : Context->last_tag);
2140
2141       redraw = REDRAW_STATUS | REDRAW_INDEX;
2142       if (option (OPTRESOLVE)) {
2143         ch = -1;
2144         rc = OP_NEXT_ENTRY;
2145       }
2146       break;
2147
2148     case OP_TOGGLE_NEW:
2149       CHECK_MODE (IsHeader (extra));
2150       CHECK_READONLY;
2151
2152       CHECK_MX_ACL (Context, ACL_SEEN, _("Toggling"));
2153
2154       if (extra->hdr->read || extra->hdr->old)
2155         mutt_set_flag (Context, extra->hdr, M_NEW, 1);
2156       else if (!first)
2157         mutt_set_flag (Context, extra->hdr, M_READ, 1);
2158       first = 0;
2159       Context->msgnotreadyet = -1;
2160       redraw = REDRAW_STATUS | REDRAW_INDEX;
2161       if (option (OPTRESOLVE)) {
2162         ch = -1;
2163         rc = OP_MAIN_NEXT_UNDELETED;
2164       }
2165       break;
2166
2167     case OP_UNDELETE:
2168       CHECK_MODE (IsHeader (extra));
2169       CHECK_READONLY;
2170
2171       CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2172
2173       mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
2174       mutt_set_flag (Context, extra->hdr, M_PURGED, 0);
2175       redraw = REDRAW_STATUS | REDRAW_INDEX;
2176       if (option (OPTRESOLVE)) {
2177         ch = -1;
2178         rc = OP_NEXT_ENTRY;
2179       }
2180       break;
2181
2182     case OP_UNDELETE_THREAD:
2183     case OP_UNDELETE_SUBTHREAD:
2184       CHECK_MODE (IsHeader (extra));
2185       CHECK_READONLY;
2186
2187       CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2188
2189       r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
2190                                 ch == OP_UNDELETE_THREAD ? 0 : 1)
2191         + mutt_thread_set_flag (extra->hdr, M_PURGED, 0,
2192                                 ch == OP_UNDELETE_THREAD ? 0 : 1);
2193
2194       if (r > -1) {
2195         if (option (OPTRESOLVE)) {
2196           rc = (ch == OP_DELETE_THREAD) ?
2197             OP_MAIN_NEXT_THREAD : OP_MAIN_NEXT_SUBTHREAD;
2198           ch = -1;
2199         }
2200
2201         if (!option (OPTRESOLVE) && PagerIndexLines)
2202           redraw = REDRAW_FULL;
2203         else
2204           redraw = REDRAW_STATUS | REDRAW_INDEX;
2205       }
2206       break;
2207
2208     case OP_VERSION:
2209       mutt_version ();
2210       break;
2211
2212     case OP_BUFFY_LIST:
2213       if (option (OPTFORCEBUFFYCHECK))
2214         buffy_check (1);
2215       buffy_list ();
2216       redraw |= REDRAW_SIDEBAR;
2217       break;
2218
2219     case OP_VIEW_ATTACHMENTS:
2220       if (flags & M_PAGER_ATTACHMENT) {
2221         ch = -1;
2222         rc = OP_ATTACH_COLLAPSE;
2223         break;
2224       }
2225       CHECK_MODE (IsHeader (extra));
2226       mutt_view_attachments (extra->hdr);
2227       if (extra->hdr->attach_del)
2228         Context->changed = 1;
2229       redraw = REDRAW_FULL;
2230       break;
2231
2232     case OP_EXTRACT_KEYS:
2233       CHECK_MODE (IsHeader (extra));
2234       crypt_extract_keys_from_messages (extra->hdr);
2235       redraw = REDRAW_FULL;
2236       break;
2237
2238     case OP_SIDEBAR_SCROLL_UP:
2239     case OP_SIDEBAR_SCROLL_DOWN:
2240     case OP_SIDEBAR_NEXT:
2241     case OP_SIDEBAR_NEXT_NEW:
2242     case OP_SIDEBAR_PREV:
2243     case OP_SIDEBAR_PREV_NEW:
2244       sidebar_scroll (ch);
2245       break;
2246     default:
2247       ch = -1;
2248       break;
2249     }
2250   }
2251
2252   m_fclose(&fp);
2253   if (IsHeader (extra)) {
2254     Context->msgnotreadyet = -1;
2255     if (rc == -1)
2256       OldHdr = NULL;
2257     else {
2258       TopLine = topline;
2259       OldHdr = extra->hdr;
2260     }
2261   }
2262
2263   cleanup_quote(&QuoteList);
2264
2265   for (i = 0; i < maxLine; i++) {
2266     p_delete(&lineInfo[i].syntax);
2267     if (SearchCompiled)
2268       p_delete(&lineInfo[i].search);
2269   }
2270   if (SearchCompiled) {
2271     regfree (&SearchRE);
2272     SearchCompiled = 0;
2273   }
2274   p_delete(&lineInfo);
2275   if (pager_index)
2276     mutt_menuDestroy (&pager_index);
2277   return (rc != -1 ? rc : 0);
2278 }
2279
2280 #undef CHECK_ATTACH
2281 #undef CHECK_READONLY
2282 #undef CHECK_MODE