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