0e975e430466f3c54b7f1bc91fb62cfd41289fc9
[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 - WrapMargin - SidebarWidth;
1046   
1047   if (wrap_cols <= 0)
1048     wrap_cols = COLS;
1049   
1050   /* FIXME: this should come from lineInfo */
1051   memset(&mbstate, 0, sizeof(mbstate));
1052
1053   for (ch = 0, vch = 0; ch < cnt; ch += k, vch += k)
1054   {
1055     /* Handle ANSI sequences */
1056     while (cnt-ch >= 2 && buf[ch] == '\033' && buf[ch+1] == '[' &&
1057            is_ansi (buf+ch+2))
1058       ch = grok_ansi (buf, ch+2, pa) + 1;
1059
1060     while (cnt-ch >= 2 && buf[ch] == '\033' && buf[ch+1] == ']' &&
1061            check_attachment_marker ((char *) buf+ch) == 0)
1062     {
1063       while (buf[ch++] != '\a')
1064         if (ch >= cnt)
1065           break;
1066     }
1067
1068     /* is anything left to do? */
1069     if (ch >= cnt)
1070       break;
1071     
1072     k = mbrtowc (&wc, (char *)buf+ch, cnt-ch, &mbstate);
1073     if (k == -2 || k == -1)
1074     {
1075       dprint (1, (debugfile, "%s:%d: mbrtowc returned %d; errno = %d.\n",
1076                   __FILE__, __LINE__, k, errno));
1077       if (col + 4 > wrap_cols)
1078         break;
1079       col += 4;
1080       if (pa)
1081         printw ("\\%03o", buf[ch]);
1082       k = 1;
1083       continue;
1084     }
1085     if (k == 0)
1086       k = 1;
1087
1088     /* Handle backspace */
1089     special = 0;
1090     if (IsWPrint (wc))
1091     {
1092       wchar_t wc1;
1093       mbstate_t mbstate1;
1094       int k1, k2;
1095
1096       while ((wc1 = 0, mbstate1 = mbstate,
1097               k1 = k + mbrtowc (&wc1, (char *)buf+ch+k, cnt-ch-k, &mbstate1),
1098               k1 - k > 0 && wc1 == '\b') &&
1099              (wc1 = 0,
1100               k2 = mbrtowc (&wc1, (char *)buf+ch+k1, cnt-ch-k1, &mbstate1),
1101               k2 > 0 && IsWPrint (wc1)))
1102       {
1103         if (wc == wc1)
1104         {
1105           special |= (wc == '_' && special & A_UNDERLINE)
1106             ? A_UNDERLINE : A_BOLD;
1107         }
1108         else if (wc == '_' || wc1 == '_')
1109         {
1110           special |= A_UNDERLINE;
1111           wc = (wc1 == '_') ? wc : wc1;
1112         }
1113         else
1114         {
1115           /* special = 0; / * overstrike: nothing to do! */
1116           wc = wc1;
1117         }
1118         ch += k1;
1119         k = k2;
1120         mbstate = mbstate1;
1121       }
1122     }
1123
1124     if (pa &&
1125         ((flags & (M_SHOWCOLOR | M_SEARCH | M_PAGER_MARKER)) ||
1126          special || last_special || pa->attr))
1127     {
1128       resolve_color (*lineInfo, n, vch, flags, special, pa);
1129       last_special = special;
1130     }
1131
1132     if (IsWPrint (wc))
1133     {
1134       if (wc == ' ')
1135         space = ch;
1136       t = wcwidth (wc);
1137       if (col + t > wrap_cols)
1138         break;
1139       col += t;
1140       if (pa)
1141         mutt_addwch (wc);
1142     }
1143     else if (wc == '\n')
1144       break;
1145     else if (wc == '\t')
1146     {
1147       space = ch;
1148       t = (col & ~7) + 8;
1149       if (t > wrap_cols)
1150         break;
1151       if (pa)
1152         for (; col < t; col++)
1153           addch (' ');
1154       else
1155         col = t;
1156     }
1157     else if (wc < 0x20 || wc == 0x7f)
1158     {
1159       if (col + 2 > wrap_cols)
1160         break;
1161       col += 2;
1162       if (pa)
1163         printw ("^%c", ('@' + wc) & 0x7f);
1164     }
1165     else if (wc < 0x100)
1166     {
1167       if (col + 4 > wrap_cols)
1168         break;
1169       col += 4;
1170       if (pa)
1171         printw ("\\%03o", wc);
1172     }
1173     else
1174     {
1175       if (col + 1 > wrap_cols)
1176         break;
1177       ++col;
1178       if (pa)
1179         addch (replacement_char ());
1180     }
1181   }
1182   *pspace = space;
1183   *pcol = col;
1184   *pvch = vch;
1185   *pspecial = special;
1186   return ch;
1187 }
1188
1189 /*
1190  * Args:
1191  *      flags   M_SHOWFLAT, show characters (used for displaying help)
1192  *              M_SHOWCOLOR, show characters in color
1193  *                      otherwise don't show characters
1194  *              M_HIDE, don't show quoted text
1195  *              M_SEARCH, resolve search patterns
1196  *              M_TYPES, compute line's type
1197  *              M_PAGER_NSKIP, keeps leading whitespace
1198  *              M_PAGER_MARKER, eventually show markers
1199  *
1200  * Return values:
1201  *      -1      EOF was reached
1202  *      0       normal exit, line was not displayed
1203  *      >0      normal exit, line was displayed
1204  */
1205
1206 static int
1207 display_line (FILE *f, long *last_pos, struct line_t **lineInfo, int n, 
1208               int *last, int *max, int flags, struct q_class_t **QuoteList,
1209               int *q_level, int *force_redraw, regex_t *SearchRE)
1210 {
1211   unsigned char buf[LONG_STRING], fmt[LONG_STRING];
1212   unsigned char *buf_ptr = buf;
1213   int ch, vch, col, cnt, b_read;
1214   int buf_ready = 0, change_last = 0;
1215   int special;
1216   int offset;
1217   int def_color;
1218   int m;
1219   ansi_attr a = {0,0,0,-1};
1220   regmatch_t pmatch[1];
1221
1222   if (n == *last)
1223   {
1224     (*last)++;
1225     change_last = 1;
1226   }
1227
1228   if (*last == *max)
1229   {
1230     safe_realloc (lineInfo, sizeof (struct line_t) * (*max += LINES));
1231     for (ch = *last; ch < *max ; ch++)
1232     {
1233       memset (&((*lineInfo)[ch]), 0, sizeof (struct line_t));
1234       (*lineInfo)[ch].type = -1;
1235       (*lineInfo)[ch].search_cnt = -1;
1236       (*lineInfo)[ch].syntax = safe_malloc (sizeof (struct syntax_t));
1237       ((*lineInfo)[ch].syntax)[0].first = ((*lineInfo)[ch].syntax)[0].last = -1;
1238     }
1239   }
1240
1241   /* only do color hiliting if we are viewing a message */
1242   if (flags & (M_SHOWCOLOR | M_TYPES))
1243   {
1244     if ((*lineInfo)[n].type == -1)
1245     {
1246       /* determine the line class */
1247       if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf), &buf_ready) < 0)
1248       {
1249         if (change_last)
1250           (*last)--;
1251         return (-1);
1252       }
1253
1254       resolve_types ((char *) fmt, (char *) buf, *lineInfo, n, *last,
1255                       QuoteList, q_level, force_redraw, flags & M_SHOWCOLOR);
1256
1257       /* avoid race condition for continuation lines when scrolling up */
1258       for (m = n + 1; m < *last && (*lineInfo)[m].offset && (*lineInfo)[m].continuation; m++)
1259         (*lineInfo)[m].type = (*lineInfo)[n].type;
1260     }
1261
1262     /* this also prevents searching through the hidden lines */
1263     if ((flags & M_HIDE) && (*lineInfo)[n].type == MT_COLOR_QUOTED)
1264       flags = 0; /* M_NOSHOW */
1265   }
1266
1267   /* At this point, (*lineInfo[n]).quote may still be undefined. We 
1268    * don't want to compute it every time M_TYPES is set, since this
1269    * would slow down the "bottom" function unacceptably. A compromise
1270    * solution is hence to call regexec() again, just to find out the
1271    * length of the quote prefix.
1272    */
1273   if ((flags & M_SHOWCOLOR) && !(*lineInfo)[n].continuation &&
1274       (*lineInfo)[n].type == MT_COLOR_QUOTED && (*lineInfo)[n].quote == NULL)
1275   {
1276     if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf), &buf_ready) < 0)
1277     {
1278       if (change_last)
1279         (*last)--;
1280       return (-1);
1281     }
1282     regexec ((regex_t *) QuoteRegexp.rx, (char *) fmt, 1, pmatch, 0);
1283     (*lineInfo)[n].quote = classify_quote (QuoteList,
1284                             (char *) fmt + pmatch[0].rm_so,
1285                             pmatch[0].rm_eo - pmatch[0].rm_so,
1286                             force_redraw, q_level);
1287   }
1288
1289   if ((flags & M_SEARCH) && !(*lineInfo)[n].continuation && (*lineInfo)[n].search_cnt == -1) 
1290   {
1291     if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt, sizeof (buf), &buf_ready) < 0)
1292     {
1293       if (change_last)
1294         (*last)--;
1295       return (-1);
1296     }
1297
1298     offset = 0;
1299     (*lineInfo)[n].search_cnt = 0;
1300     while (regexec (SearchRE, (char *) fmt + offset, 1, pmatch, (offset ? REG_NOTBOL : 0)) == 0)
1301     {
1302       if (++((*lineInfo)[n].search_cnt) > 1)
1303         safe_realloc (&((*lineInfo)[n].search),
1304                       ((*lineInfo)[n].search_cnt) * sizeof (struct syntax_t));
1305       else
1306         (*lineInfo)[n].search = safe_malloc (sizeof (struct syntax_t));
1307       pmatch[0].rm_so += offset;
1308       pmatch[0].rm_eo += offset;
1309       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].first = pmatch[0].rm_so;
1310       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].last = pmatch[0].rm_eo;
1311
1312       if (pmatch[0].rm_eo == pmatch[0].rm_so)
1313         offset++; /* avoid degenerate cases */
1314       else
1315         offset = pmatch[0].rm_eo;
1316       if (!fmt[offset])
1317         break;
1318     }
1319   }
1320
1321   if (!(flags & M_SHOW) && (*lineInfo)[n+1].offset > 0)
1322   {
1323     /* we've already scanned this line, so just exit */
1324     return (0);
1325   }
1326   if ((flags & M_SHOWCOLOR) && *force_redraw && (*lineInfo)[n+1].offset > 0)
1327   {
1328     /* no need to try to display this line... */
1329     return (1); /* fake display */
1330   }
1331
1332   if ((b_read = fill_buffer (f, last_pos, (*lineInfo)[n].offset, buf, fmt, 
1333                               sizeof (buf), &buf_ready)) < 0)
1334   {
1335     if (change_last)
1336       (*last)--;
1337     return (-1);
1338   }
1339
1340   /* now chose a good place to break the line */
1341   cnt = format_line (lineInfo, n, buf, flags, 0, b_read, &ch, &vch, &col, &special);
1342   buf_ptr = buf + cnt;
1343
1344   /* move the break point only if smart_wrap is set */
1345   if (option (OPTWRAP))
1346   {
1347     if (cnt < b_read)
1348     {
1349       if (ch != -1 && buf[cnt] != ' ' && buf[cnt] != '\t' && buf[cnt] != '\n' && buf[cnt] != '\r')
1350       {
1351         buf_ptr = buf + ch;
1352         /* skip trailing blanks */
1353         while (ch && (buf[ch] == ' ' || buf[ch] == '\t' || buf[ch] == '\r'))
1354           ch--;
1355         cnt = ch + 1;
1356       }
1357       else
1358         buf_ptr = buf + cnt; /* a very long word... */
1359     }
1360     if (!(flags & M_PAGER_NSKIP))
1361       /* skip leading blanks on the next line too */
1362       while (*buf_ptr == ' ' || *buf_ptr == '\t') 
1363         buf_ptr++;
1364   }
1365
1366   if (*buf_ptr == '\r')
1367     buf_ptr++;
1368   if (*buf_ptr == '\n')
1369     buf_ptr++;
1370
1371   if ((int) (buf_ptr - buf) < b_read && !(*lineInfo)[n+1].continuation)
1372     append_line (*lineInfo, n, (int) (buf_ptr - buf));
1373   (*lineInfo)[n+1].offset = (*lineInfo)[n].offset + (long) (buf_ptr - buf);
1374
1375   /* if we don't need to display the line we are done */
1376   if (!(flags & M_SHOW))
1377     return 0;
1378
1379   /* display the line */
1380   format_line (lineInfo, n, buf, flags, &a, cnt, &ch, &vch, &col, &special);
1381
1382   /* avoid a bug in ncurses... */
1383 #ifndef USE_SLANG_CURSES
1384   if (col == 0)
1385   {
1386     SETCOLOR (MT_COLOR_NORMAL);
1387     addch (' ');
1388   }
1389 #endif
1390
1391   /* end the last color pattern (needed by S-Lang) */
1392   if (special || (col != COLS && (flags & (M_SHOWCOLOR | M_SEARCH))))
1393     resolve_color (*lineInfo, n, vch, flags, 0, &a);
1394           
1395   /*
1396    * Fill the blank space at the end of the line with the prevailing color.
1397    * ncurses does an implicit clrtoeol() when you do addch('\n') so we have
1398    * to make sure to reset the color *after* that
1399    */
1400   if (flags & M_SHOWCOLOR)
1401   {
1402     m = ((*lineInfo)[n].continuation) ? ((*lineInfo)[n].syntax)[0].first : n;
1403     if ((*lineInfo)[m].type == MT_COLOR_HEADER)
1404       def_color = ((*lineInfo)[m].syntax)[0].color;
1405     else
1406       def_color = ColorDefs[ (*lineInfo)[m].type ];
1407
1408     attrset (def_color);
1409 #ifdef HAVE_BKGDSET
1410     bkgdset (def_color | ' ');
1411 #endif
1412   }
1413
1414   /* ncurses always wraps lines when you get to the right side of the
1415    * screen, but S-Lang seems to only wrap if the next character is *not*
1416    * a newline (grr!).
1417    */
1418 #ifndef USE_SLANG_CURSES
1419     if (col < COLS)
1420 #endif
1421       addch ('\n');
1422
1423   /*
1424    * reset the color back to normal.  This *must* come after the
1425    * addch('\n'), otherwise the color for this line will not be
1426    * filled to the right margin.
1427    */
1428   if (flags & M_SHOWCOLOR)
1429   {
1430     SETCOLOR(MT_COLOR_NORMAL);
1431     BKGDSET(MT_COLOR_NORMAL);
1432   }
1433
1434   /* build a return code */
1435   if (!(flags & M_SHOW))
1436     flags = 0;
1437
1438   return (flags);
1439 }
1440
1441 static int
1442 upNLines (int nlines, struct line_t *info, int cur, int hiding)
1443 {
1444   while (cur > 0 && nlines > 0)
1445   {
1446     cur--;
1447     if (!hiding || info[cur].type != MT_COLOR_QUOTED)
1448       nlines--;
1449   }
1450
1451   return cur;
1452 }
1453
1454 static struct mapping_t PagerHelp[] = {
1455   { N_("Exit"), OP_EXIT },
1456   { N_("PrevPg"), OP_PREV_PAGE },
1457   { N_("NextPg"), OP_NEXT_PAGE },
1458   { NULL,       0 }
1459 };
1460 static struct mapping_t PagerHelpExtra[] = {
1461   { N_("View Attachm."), OP_VIEW_ATTACHMENTS },
1462   { N_("Del"), OP_DELETE },
1463   { N_("Reply"), OP_REPLY },
1464   { N_("Next"), OP_MAIN_NEXT_UNDELETED },
1465   { NULL,       0 }
1466 };
1467
1468 #ifdef USE_NNTP
1469 static struct mapping_t PagerNewsHelpExtra[] = {
1470   { N_("Post"),     OP_POST },
1471   { N_("Followup"), OP_FOLLOWUP },
1472   { N_("Del"),      OP_DELETE },
1473   { N_("Next"),     OP_MAIN_NEXT_UNDELETED },
1474   { NULL,           0 }
1475 };
1476 #endif
1477
1478
1479
1480 /* This pager is actually not so simple as it once was.  It now operates in
1481    two modes: one for viewing messages and the other for viewing help.  These
1482    can be distinguished by whether or not ``hdr'' is NULL.  The ``hdr'' arg
1483    is there so that we can do operations on the current message without the
1484    need to pop back out to the main-menu.  */
1485 int 
1486 mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
1487 {
1488   static char searchbuf[STRING];
1489   char buffer[LONG_STRING];
1490   char helpstr[SHORT_STRING*2];
1491   char tmphelp[SHORT_STRING*2];
1492   int maxLine, lastLine = 0;
1493   struct line_t *lineInfo;
1494   struct q_class_t *QuoteList = NULL;
1495   int i, j, ch = 0, rc = -1, hideQuoted = 0, q_level = 0, force_redraw = 0;
1496   int lines = 0, curline = 0, topline = 0, oldtopline = 0, err, first = 1;
1497   int r = -1;
1498   int redraw = REDRAW_FULL;
1499   FILE *fp = NULL;
1500   long last_pos = 0, last_offset = 0;
1501   int old_smart_wrap, old_markers;
1502   struct stat sb;
1503   regex_t SearchRE;
1504   int SearchCompiled = 0, SearchFlag = 0, SearchBack = 0;
1505   int has_types = (IsHeader(extra) || (flags & M_SHOWCOLOR)) ? M_TYPES : 0; /* main message or rfc822 attachment */
1506
1507   int bodyoffset = 1;                   /* offset of first line of real text */
1508   int statusoffset = 0;                 /* offset for the status bar */
1509   int helpoffset = LINES - 2;           /* offset for the help bar. */
1510   int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */
1511
1512   MUTTMENU *index = NULL;               /* the Pager Index (PI) */
1513   int indexoffset = 0;                  /* offset for the PI */
1514   int indexlen = PagerIndexLines;       /* indexlen not always == PIL */
1515   int indicator = indexlen / 3;         /* the indicator line of the PI */
1516   int old_PagerIndexLines;              /* some people want to resize it
1517                                          * while inside the pager... */
1518
1519 #ifdef USE_NNTP
1520   char *followup_to;
1521 #endif
1522
1523   if (!(flags & M_SHOWCOLOR))
1524     flags |= M_SHOWFLAT;
1525
1526   if ((fp = fopen (fname, "r")) == NULL)
1527   {
1528     mutt_perror (fname);
1529     return (-1);
1530   }
1531
1532   if (stat (fname, &sb) != 0)
1533   {
1534     mutt_perror (fname);
1535     fclose (fp);
1536     return (-1);
1537   }
1538   unlink (fname);
1539
1540   /* Initialize variables */
1541
1542   if (IsHeader (extra) && !extra->hdr->read)
1543   {
1544     Context->msgnotreadyet = extra->hdr->msgno;
1545     mutt_set_flag (Context, extra->hdr, M_READ, 1);
1546   }
1547
1548   lineInfo = safe_malloc (sizeof (struct line_t) * (maxLine = LINES));
1549   for (i = 0 ; i < maxLine ; i++)
1550   {
1551     memset (&lineInfo[i], 0, sizeof (struct line_t));
1552     lineInfo[i].type = -1;
1553     lineInfo[i].search_cnt = -1;
1554     lineInfo[i].syntax = safe_malloc (sizeof (struct syntax_t));
1555     (lineInfo[i].syntax)[0].first = (lineInfo[i].syntax)[0].last = -1;
1556   }
1557
1558   mutt_compile_help (helpstr, sizeof (helpstr), MENU_PAGER, PagerHelp);
1559   if (IsHeader (extra))
1560   {
1561     strfcpy (tmphelp, helpstr, sizeof (tmphelp));
1562     mutt_compile_help (buffer, sizeof (buffer), MENU_PAGER,
1563 #ifdef USE_NNTP
1564         (Context && (Context->magic == M_NNTP)) ? PagerNewsHelpExtra :
1565 #endif
1566         PagerHelpExtra);
1567     snprintf (helpstr, sizeof (helpstr), "%s %s", tmphelp, buffer);
1568   }
1569   if (!InHelp)
1570   {
1571     strfcpy (tmphelp, helpstr, sizeof (tmphelp));
1572     mutt_make_help (buffer, sizeof (buffer), _("Help"), MENU_PAGER, OP_HELP);
1573     snprintf (helpstr, sizeof (helpstr), "%s %s", tmphelp, buffer);
1574   }
1575
1576   while (ch != -1)
1577   {
1578     mutt_curs_set (0);
1579
1580 #ifdef USE_IMAP
1581     imap_keepalive ();
1582 #endif
1583     
1584     if (redraw & REDRAW_FULL)
1585     {
1586       SETCOLOR (MT_COLOR_NORMAL);
1587       /* clear() doesn't optimize screen redraws */
1588       move (0, 0);
1589       clrtobot ();
1590
1591       if (IsHeader (extra) && Context->vcount + 1 < PagerIndexLines)
1592         indexlen = Context->vcount + 1;
1593       else
1594         indexlen = PagerIndexLines;
1595
1596       indicator = indexlen / 3;
1597
1598       if (option (OPTSTATUSONTOP))
1599       {
1600         indexoffset = 0;
1601         statusoffset = IsHeader (extra) ? indexlen : 0;
1602         bodyoffset = statusoffset + 1;
1603         helpoffset = LINES - 2;
1604         bodylen = helpoffset - bodyoffset;
1605         if (!option (OPTHELP))
1606           bodylen++;
1607       }
1608       else
1609       {
1610         helpoffset = 0;
1611         indexoffset = 1;
1612         statusoffset = LINES - 2;
1613         if (!option (OPTHELP))
1614           indexoffset = 0;
1615         bodyoffset = indexoffset + (IsHeader (extra) ? indexlen : 0);
1616         bodylen = statusoffset - bodyoffset;
1617       }
1618
1619       if (option (OPTHELP))
1620       {
1621         SETCOLOR (MT_COLOR_STATUS);
1622         move (helpoffset, 0);
1623         mutt_paddstr (COLS, helpstr);
1624         SETCOLOR (MT_COLOR_NORMAL);
1625       }
1626
1627 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
1628       if (Resize != NULL)
1629       {
1630         if ((SearchCompiled = Resize->SearchCompiled))
1631         {
1632           REGCOMP
1633             (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf));
1634           SearchFlag = M_SEARCH;
1635           SearchBack = Resize->SearchBack;
1636         }
1637         lines = Resize->line;
1638         redraw |= REDRAW_SIGWINCH;
1639
1640         FREE (&Resize);
1641       }
1642 #endif
1643
1644       if (IsHeader (extra) && PagerIndexLines)
1645       {
1646         if (index == NULL)
1647         {
1648           /* only allocate the space if/when we need the index.
1649              Initialise the menu as per the main index */
1650           index = mutt_new_menu();
1651           index->menu = MENU_MAIN;
1652           index->make_entry = index_make_entry;
1653           index->color = index_color;
1654           index->max = Context->vcount;
1655           index->current = extra->hdr->virtual;
1656         }
1657
1658         SETCOLOR (MT_COLOR_NORMAL);
1659         index->offset  = indexoffset + (option (OPTSTATUSONTOP) ? 1 : 0);
1660
1661         index->pagelen = indexlen - 1;
1662
1663         /* some fudge to work out where abouts the indicator should go */
1664         if (index->current - indicator < 0)
1665           index->top = 0;
1666         else if (index->max - index->current < index->pagelen - indicator)
1667           index->top = index->max - index->pagelen;
1668         else
1669           index->top = index->current - indicator;
1670
1671         menu_redraw_index(index);
1672       }
1673
1674       redraw |= REDRAW_BODY | REDRAW_INDEX | REDRAW_STATUS;
1675       mutt_show_error ();
1676     }
1677
1678     if (redraw & REDRAW_SIGWINCH)
1679     {
1680       i = -1;
1681       j = -1;
1682       while (display_line (fp, &last_pos, &lineInfo, ++i, &lastLine, &maxLine,
1683              has_types | SearchFlag, &QuoteList, &q_level, &force_redraw,
1684              &SearchRE) == 0) {
1685         if (!lineInfo[i].continuation && ++j == lines)
1686         {
1687           topline = i;
1688           if (!SearchFlag)
1689             break;
1690         }
1691         redraw |= REDRAW_SIDEBAR;
1692       } /* while */
1693     }
1694
1695     if ((redraw & REDRAW_BODY) || topline != oldtopline)
1696     {
1697       do {
1698         move (bodyoffset, SidebarWidth);
1699         curline = oldtopline = topline;
1700         lines = 0;
1701         force_redraw = 0;
1702
1703         while (lines < bodylen && lineInfo[curline].offset <= sb.st_size - 1)
1704         {
1705           if (display_line (fp, &last_pos, &lineInfo, curline, &lastLine, 
1706                             &maxLine,
1707                             (flags & M_DISPLAYFLAGS) | hideQuoted | SearchFlag, 
1708                             &QuoteList, &q_level, &force_redraw, &SearchRE) > 0)
1709             lines++;
1710           curline++;
1711                 move(lines + bodyoffset, SidebarWidth);
1712           redraw |= REDRAW_SIDEBAR;
1713         }
1714         last_offset = lineInfo[curline].offset;
1715       } while (force_redraw);
1716
1717       SETCOLOR (MT_COLOR_TILDE);
1718       BKGDSET (MT_COLOR_TILDE);
1719       while (lines < bodylen)
1720       {
1721         clrtoeol ();
1722         if (option (OPTTILDE))
1723           addch ('~');
1724         addch ('\n');
1725         lines++;
1726         move(lines + bodyoffset, SidebarWidth);
1727       }
1728       /* We are going to update the pager status bar, so it isn't
1729        * necessary to reset to normal color now. */
1730
1731       redraw |= REDRAW_STATUS; /* need to update the % seen */
1732     }
1733
1734     if (redraw & REDRAW_STATUS)
1735     {
1736       /* print out the pager status bar */
1737       SETCOLOR (MT_COLOR_STATUS);
1738       BKGDSET (MT_COLOR_STATUS);
1739       CLEARLINE_WIN(statusoffset);
1740       if (IsHeader (extra))
1741       {
1742         size_t l1 = (COLS - 9) * MB_LEN_MAX;
1743         size_t l2 = sizeof (buffer);
1744         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1745                            Context, extra->hdr, M_FORMAT_MAKEPRINT);
1746       }
1747       else if (IsMsgAttach (extra))
1748       {
1749         size_t l1 = (COLS - 9) * MB_LEN_MAX;
1750         size_t l2 = sizeof (buffer);
1751         _mutt_make_string (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt),
1752                            Context, extra->bdy->hdr, M_FORMAT_MAKEPRINT);
1753       }
1754       mutt_paddstr (COLS-10-SidebarWidth, IsHeader (extra) || IsMsgAttach (extra) ?
1755                     buffer : banner);
1756       addstr (" -- (");
1757       if (last_pos < sb.st_size - 1)
1758         printw ("%d%%)", (int) (100 * last_offset / sb.st_size));
1759       else
1760         addstr (topline == 0 ? "all)" : "end)");
1761       BKGDSET (MT_COLOR_NORMAL);
1762       SETCOLOR (MT_COLOR_NORMAL);
1763     }
1764
1765     if (redraw & REDRAW_SIDEBAR)
1766       draw_sidebar(MENU_PAGER);
1767
1768     if ((redraw & REDRAW_INDEX) && index)
1769     {
1770       /* redraw the pager_index indicator, because the
1771        * flags for this message might have changed. */
1772       menu_redraw_current (index);
1773           draw_sidebar(MENU_PAGER);
1774       /* print out the index status bar */
1775       menu_status_line (buffer, sizeof (buffer), index, NONULL(Status));
1776       move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)),
1777                   SidebarWidth);
1778       SETCOLOR (MT_COLOR_STATUS);
1779       mutt_paddstr (COLS-SidebarWidth, buffer);
1780       SETCOLOR (MT_COLOR_NORMAL);
1781     }
1782         /* if we're not using the index, update every time */
1783         if ( index == 0 )
1784                 draw_sidebar(MENU_PAGER);
1785
1786     redraw = 0;
1787
1788     move (statusoffset, COLS-1);
1789     mutt_refresh ();
1790     ch = km_dokey (MENU_PAGER);
1791     if (ch != -1)
1792       mutt_clear_error ();
1793     mutt_curs_set (1);
1794
1795     if (SigInt)
1796     {
1797       mutt_query_exit ();
1798       continue;
1799     }
1800 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
1801     else if (SigWinch)
1802     {
1803       mutt_resize_screen ();
1804
1805       /* Store current position. */
1806       lines = -1;
1807       for (i = 0; i <= topline; i++)
1808         if (!lineInfo[i].continuation)
1809           lines++;
1810
1811       if (flags & M_PAGER_RETWINCH)
1812       {
1813         Resize = safe_malloc (sizeof (struct resize));
1814
1815         Resize->line = lines;
1816         Resize->SearchCompiled = SearchCompiled;
1817         Resize->SearchBack = SearchBack;
1818
1819         ch = -1;
1820         rc = OP_REFORMAT_WINCH;
1821       }
1822       else
1823       {
1824         for (i = 0; i < maxLine; i++)
1825         {
1826           lineInfo[i].offset = 0;
1827           lineInfo[i].type = -1;
1828           lineInfo[i].continuation = 0;
1829           lineInfo[i].chunks = 0;
1830           lineInfo[i].search_cnt = -1;
1831           lineInfo[i].quote = NULL;
1832
1833           safe_realloc (&(lineInfo[i].syntax),
1834                         sizeof (struct syntax_t));
1835           if (SearchCompiled && lineInfo[i].search)
1836               FREE (&(lineInfo[i].search));
1837         }
1838
1839         lastLine = 0;
1840         topline = 0;
1841
1842         redraw = REDRAW_FULL | REDRAW_SIGWINCH;
1843         ch = 0;
1844       }
1845
1846       SigWinch = 0;
1847       clearok(stdscr,TRUE);/*force complete redraw*/
1848       continue;
1849     }
1850 #endif
1851     else if (ch == -1)
1852     {
1853       ch = 0;
1854       continue;
1855     }
1856
1857     rc = ch;
1858
1859     switch (ch)
1860     {
1861       case OP_EXIT:
1862         rc = -1;
1863         ch = -1;
1864         break;
1865
1866       case OP_NEXT_PAGE:
1867         if (lineInfo[curline].offset < sb.st_size-1)
1868         {
1869           topline = upNLines (PagerContext, lineInfo, curline, hideQuoted);
1870         }
1871         else if (option (OPTPAGERSTOP))
1872         {
1873           /* emulate "less -q" and don't go on to the next message. */
1874           mutt_error _("Bottom of message is shown.");
1875         }
1876         else
1877         {
1878           /* end of the current message, so display the next message. */
1879           rc = OP_MAIN_NEXT_UNDELETED;
1880           ch = -1;
1881         }
1882         break;
1883
1884       case OP_PREV_PAGE:
1885         if (topline != 0)
1886         {
1887           topline = upNLines (bodylen-PagerContext, lineInfo, topline, hideQuoted);
1888         }
1889         else
1890           mutt_error _("Top of message is shown.");
1891         break;
1892
1893       case OP_NEXT_LINE:
1894         if (lineInfo[curline].offset < sb.st_size-1)
1895         {
1896           topline++;
1897           if (hideQuoted)
1898           {
1899             while (lineInfo[topline].type == MT_COLOR_QUOTED &&
1900                    topline < lastLine)
1901               topline++;
1902           }
1903         }
1904         else
1905           mutt_error _("Bottom of message is shown.");
1906         break;
1907
1908       case OP_PREV_LINE:
1909         if (topline)
1910           topline = upNLines (1, lineInfo, topline, hideQuoted);
1911         else
1912           mutt_error _("Top of message is shown.");
1913         break;
1914
1915       case OP_PAGER_TOP:
1916         if (topline)
1917           topline = 0;
1918         else
1919           mutt_error _("Top of message is shown.");
1920         break;
1921
1922       case OP_HALF_UP:
1923         if (topline)
1924           topline = upNLines (bodylen/2, lineInfo, topline, hideQuoted);
1925         else
1926           mutt_error _("Top of message is shown.");
1927         break;
1928
1929       case OP_HALF_DOWN:
1930         if (lineInfo[curline].offset < sb.st_size-1)
1931         {
1932           topline = upNLines (bodylen/2, lineInfo, curline, hideQuoted);
1933         }
1934         else if (option (OPTPAGERSTOP))
1935         {
1936           /* emulate "less -q" and don't go on to the next message. */
1937           mutt_error _("Bottom of message is shown.");
1938         }
1939         else
1940         {
1941           /* end of the current message, so display the next message. */
1942           rc = OP_MAIN_NEXT_UNDELETED;
1943           ch = -1;
1944         }
1945         break;
1946
1947       case OP_SEARCH_NEXT:
1948       case OP_SEARCH_OPPOSITE:
1949         if (SearchCompiled)
1950         {
1951 search_next:
1952           if ((!SearchBack && ch==OP_SEARCH_NEXT) ||
1953               (SearchBack &&ch==OP_SEARCH_OPPOSITE))
1954           {
1955             /* searching forward */
1956             for (i = topline + 1; i < lastLine; i++)
1957             {
1958               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
1959                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1960                 break;
1961             }
1962
1963             if (i < lastLine)
1964               topline = i;
1965             else
1966               mutt_error _("Not found.");
1967           }
1968           else
1969           {
1970             /* searching backward */
1971             for (i = topline - 1; i >= 0; i--)
1972             {
1973               if ((!hideQuoted || (has_types && 
1974                     lineInfo[i].type != MT_COLOR_QUOTED)) && 
1975                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1976                 break;
1977             }
1978
1979             if (i >= 0)
1980               topline = i;
1981             else
1982               mutt_error _("Not found.");
1983           }
1984
1985           if (lineInfo[topline].search_cnt > 0)
1986             SearchFlag = M_SEARCH;
1987
1988           break;
1989         }
1990         /* no previous search pattern, so fall through to search */
1991
1992       case OP_SEARCH:
1993       case OP_SEARCH_REVERSE:
1994         strfcpy (buffer, searchbuf, sizeof (buffer));
1995         if (mutt_get_field ((SearchBack ? _("Reverse search: ") :
1996                           _("Search: ")), buffer, sizeof (buffer),
1997                           M_CLEAR) != 0)
1998           break;
1999
2000         if (!strcmp (buffer, searchbuf))
2001         {
2002           if (SearchCompiled)
2003           {
2004             /* do an implicit search-next */
2005             if (ch == OP_SEARCH)
2006               ch = OP_SEARCH_NEXT;
2007             else
2008               ch = OP_SEARCH_OPPOSITE;
2009
2010             goto search_next;
2011           }
2012         }
2013       
2014         if (!buffer[0])
2015           break;
2016       
2017         strfcpy (searchbuf, buffer, sizeof (searchbuf));
2018
2019         /* leave SearchBack alone if ch == OP_SEARCH_NEXT */
2020         if (ch == OP_SEARCH)
2021           SearchBack = 0;
2022         else if (ch == OP_SEARCH_REVERSE)
2023           SearchBack = 1;
2024
2025         if (SearchCompiled)
2026         {
2027           regfree (&SearchRE);
2028           for (i = 0; i < lastLine; i++)
2029           {
2030             if (lineInfo[i].search)
2031               FREE (&(lineInfo[i].search));
2032             lineInfo[i].search_cnt = -1;
2033           }
2034         }
2035
2036         if ((err = REGCOMP (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf))) != 0)
2037         {
2038           regerror (err, &SearchRE, buffer, sizeof (buffer));
2039           mutt_error ("%s", buffer);
2040           regfree (&SearchRE);
2041           for (i = 0; i < maxLine ; i++)
2042           {
2043             /* cleanup */
2044             if (lineInfo[i].search)
2045               FREE (&(lineInfo[i].search));
2046             lineInfo[i].search_cnt = -1;
2047           }
2048           SearchFlag = 0;
2049           SearchCompiled = 0;
2050         }
2051         else
2052         {
2053           SearchCompiled = 1;
2054           /* update the search pointers */
2055           i = 0;
2056           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2057                                 &maxLine, M_SEARCH | (flags & M_PAGER_NSKIP),
2058                                 &QuoteList, &q_level,
2059                                 &force_redraw, &SearchRE) == 0) {
2060             i++;
2061             redraw |= REDRAW_SIDEBAR;
2062           }
2063
2064           if (!SearchBack)
2065           {
2066             /* searching forward */
2067             for (i = topline; i < lastLine; i++)
2068             {
2069               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2070                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2071                 break;
2072             }
2073
2074             if (i < lastLine) topline = i;
2075           }
2076           else
2077           {
2078             /* searching backward */
2079             for (i = topline; i >= 0; i--)
2080             {
2081               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2082                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2083                 break;
2084             }
2085
2086             if (i >= 0) topline = i;
2087           }
2088
2089           if (lineInfo[topline].search_cnt == 0)
2090           {
2091             SearchFlag = 0;
2092             mutt_error _("Not found.");
2093           }
2094           else
2095             SearchFlag = M_SEARCH;
2096         }
2097         redraw = REDRAW_BODY;
2098         break;
2099
2100       case OP_SEARCH_TOGGLE:
2101         if (SearchCompiled)
2102         {
2103           SearchFlag ^= M_SEARCH;
2104           redraw = REDRAW_BODY;
2105         }
2106         break;
2107
2108       case OP_HELP:
2109         /* don't let the user enter the help-menu from the help screen! */
2110         if (! InHelp)
2111         {
2112           InHelp = 1;
2113           mutt_help (MENU_PAGER);
2114           redraw = REDRAW_FULL;
2115           InHelp = 0;
2116         }
2117         else
2118           mutt_error _("Help is currently being shown.");
2119         break;
2120
2121       case OP_PAGER_HIDE_QUOTED:
2122         if (has_types)
2123         {
2124           hideQuoted ^= M_HIDE;
2125           if (hideQuoted && lineInfo[topline].type == MT_COLOR_QUOTED)
2126             topline = upNLines (1, lineInfo, topline, hideQuoted);
2127           else
2128             redraw = REDRAW_BODY;
2129         }
2130         break;
2131
2132       case OP_PAGER_SKIP_QUOTED:
2133         if (has_types)
2134         {
2135           int dretval = 0;
2136           int new_topline = topline;
2137
2138           while ((new_topline < lastLine ||
2139                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2140                          new_topline, &lastLine, &maxLine, M_TYPES,
2141                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2142                  && lineInfo[new_topline].type != MT_COLOR_QUOTED) {
2143             redraw |= REDRAW_SIDEBAR;
2144             new_topline++;
2145           }
2146
2147           if (dretval < 0)
2148           {
2149             mutt_error _("No more quoted text.");
2150             break;
2151           }
2152
2153           while ((new_topline < lastLine ||
2154                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2155                          new_topline, &lastLine, &maxLine, M_TYPES,
2156                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2157                  && lineInfo[new_topline].type == MT_COLOR_QUOTED) {
2158             new_topline++;
2159             redraw |= REDRAW_SIDEBAR;
2160           }
2161
2162           if (dretval < 0)
2163           {
2164             mutt_error _("No more unquoted text after quoted text.");
2165             break;        
2166           }
2167           topline = new_topline;
2168         }
2169         break;
2170
2171       case OP_PAGER_BOTTOM: /* move to the end of the file */
2172         if (lineInfo[curline].offset < sb.st_size - 1)
2173         {
2174           i = curline;
2175           /* make sure the types are defined to the end of file */
2176           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2177                                 &maxLine, has_types, 
2178                                 &QuoteList, &q_level, &force_redraw,
2179                                 &SearchRE) == 0) {
2180             i++;
2181             redraw |= REDRAW_SIDEBAR;
2182           }
2183           topline = upNLines (bodylen, lineInfo, lastLine, hideQuoted);
2184         }
2185         else
2186           mutt_error _("Bottom of message is shown.");
2187         break;
2188
2189       case OP_REDRAW:
2190         clearok (stdscr, TRUE);
2191         redraw = REDRAW_FULL;
2192         break;
2193
2194       case OP_NULL:
2195         km_error_key (MENU_PAGER);
2196         break;
2197
2198         /* --------------------------------------------------------------------
2199          * The following are operations on the current message rather than
2200          * adjusting the view of the message.
2201          */
2202
2203       case OP_BOUNCE_MESSAGE:
2204         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2205         CHECK_ATTACH;
2206         if (IsMsgAttach (extra))
2207           mutt_attach_bounce (extra->fp, extra->hdr,
2208                               extra->idx, extra->idxlen,
2209                               extra->bdy);
2210         else
2211           ci_bounce_message (extra->hdr, &redraw);
2212         break;
2213
2214       case OP_RESEND:
2215         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2216         CHECK_ATTACH;
2217         if (IsMsgAttach (extra))
2218           mutt_attach_resend (extra->fp, extra->hdr,
2219                               extra->idx, extra->idxlen,
2220                               extra->bdy);
2221         else
2222           mutt_resend_message (NULL, extra->ctx, extra->hdr);
2223         redraw = REDRAW_FULL;
2224         break;
2225
2226       case OP_CHECK_TRADITIONAL:
2227         CHECK_MODE (IsHeader (extra));
2228         if (!(WithCrypto & APPLICATION_PGP))
2229           break;
2230         if (!(extra->hdr->security & PGP_TRADITIONAL_CHECKED)) 
2231         {
2232           ch = -1;
2233           rc = OP_CHECK_TRADITIONAL;
2234         }
2235         break;
2236       
2237       case OP_CREATE_ALIAS:
2238         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2239         if (IsMsgAttach (extra))
2240           mutt_create_alias (extra->bdy->hdr->env, NULL);
2241         else
2242           mutt_create_alias (extra->hdr->env, NULL);
2243         MAYBE_REDRAW (redraw);
2244         break;
2245
2246       case OP_PURGE_MESSAGE:
2247       case OP_DELETE:
2248         CHECK_MODE(IsHeader (extra));
2249         CHECK_READONLY;
2250
2251 #ifdef USE_IMAP
2252 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2253 #endif
2254
2255         mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
2256         mutt_set_flag (Context, extra->hdr, M_PURGED,
2257                        ch != OP_PURGE_MESSAGE ? 0 : 1);
2258         if (option (OPTDELETEUNTAG))
2259           mutt_set_flag (Context, extra->hdr, M_TAG, 0);
2260         redraw = REDRAW_STATUS | REDRAW_INDEX;
2261         if (option (OPTRESOLVE))
2262         {
2263           ch = -1;
2264           rc = OP_MAIN_NEXT_UNDELETED;
2265         }
2266         break;
2267
2268       case OP_DELETE_THREAD:
2269       case OP_DELETE_SUBTHREAD:
2270         CHECK_MODE(IsHeader (extra));
2271         CHECK_READONLY;
2272
2273 #ifdef USE_IMAP
2274 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2275 #endif
2276
2277         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 1,
2278                                   ch == OP_DELETE_THREAD ? 0 : 1);
2279
2280         if (r != -1)
2281         {
2282           if (option (OPTDELETEUNTAG))
2283             mutt_thread_set_flag (extra->hdr, M_TAG, 0,
2284                                   ch == OP_DELETE_THREAD ? 0 : 1);
2285           if (option (OPTRESOLVE))
2286           {
2287             rc = OP_MAIN_NEXT_UNDELETED;
2288             ch = -1;
2289           }
2290
2291           if (!option (OPTRESOLVE) && PagerIndexLines)
2292             redraw = REDRAW_FULL;
2293           else
2294             redraw = REDRAW_STATUS | REDRAW_INDEX;
2295         }
2296         break;
2297
2298       case OP_DISPLAY_ADDRESS:
2299         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2300         if (IsMsgAttach (extra))
2301           mutt_display_address (extra->bdy->hdr->env);
2302         else
2303           mutt_display_address (extra->hdr->env);
2304         break;
2305
2306       case OP_ENTER_COMMAND:
2307         old_smart_wrap = option (OPTWRAP);
2308         old_markers = option (OPTMARKERS);
2309         old_PagerIndexLines = PagerIndexLines;
2310
2311         CurrentMenu = MENU_PAGER;
2312         mutt_enter_command ();
2313
2314         if (option (OPTNEEDRESORT))
2315         {
2316           unset_option (OPTNEEDRESORT);
2317           CHECK_MODE(IsHeader (extra));
2318           set_option (OPTNEEDRESORT);
2319         }
2320
2321         if (old_PagerIndexLines != PagerIndexLines)
2322         {
2323           if (index)
2324             mutt_menuDestroy (&index);
2325           index = NULL;
2326         }
2327         
2328         if (option (OPTWRAP) != old_smart_wrap || 
2329             option (OPTMARKERS) != old_markers)
2330         {
2331           if (flags & M_PAGER_RETWINCH)
2332           {
2333             ch = -1;
2334             rc = OP_REFORMAT_WINCH;
2335             continue;
2336           }
2337
2338           /* count the real lines above */
2339           j = 0;
2340           for (i = 0; i <= topline; i++)
2341           {
2342             if (!lineInfo[i].continuation)
2343               j++;
2344           }
2345
2346           /* we need to restart the whole thing */
2347           for (i = 0; i < maxLine; i++)
2348           {
2349             lineInfo[i].offset = 0;
2350             lineInfo[i].type = -1;
2351             lineInfo[i].continuation = 0;
2352             lineInfo[i].chunks = 0;
2353             lineInfo[i].search_cnt = -1;
2354             lineInfo[i].quote = NULL;
2355
2356             safe_realloc (&(lineInfo[i].syntax), sizeof (struct syntax_t));
2357             if (SearchCompiled && lineInfo[i].search)
2358                 FREE (&(lineInfo[i].search));
2359           }
2360
2361           if (SearchCompiled)
2362           {
2363             regfree (&SearchRE);
2364             SearchCompiled = 0;
2365           }
2366           SearchFlag = 0;
2367
2368           /* try to keep the old position */
2369           topline = 0;
2370           lastLine = 0;
2371           while (j > 0 && display_line (fp, &last_pos, &lineInfo, topline, 
2372                                         &lastLine, &maxLine,
2373                                         (has_types ? M_TYPES : 0),
2374                                         &QuoteList, &q_level, &force_redraw,
2375                                         &SearchRE) == 0)
2376           {
2377             redraw |= REDRAW_SIDEBAR;
2378             if (! lineInfo[topline].continuation)
2379               j--;
2380             if (j > 0)
2381               topline++;
2382           }
2383
2384           ch = 0;
2385         }
2386
2387         if (option (OPTFORCEREDRAWPAGER))
2388           redraw = REDRAW_FULL;
2389         unset_option (OPTFORCEREDRAWINDEX);
2390         unset_option (OPTFORCEREDRAWPAGER);
2391         break;
2392
2393       case OP_FLAG_MESSAGE:
2394         CHECK_MODE(IsHeader (extra));
2395         CHECK_READONLY;
2396
2397 #ifdef USE_POP
2398         if (Context->magic == M_POP)
2399         {
2400           mutt_flushinp ();
2401           mutt_error _("Can't change 'important' flag on POP server.");
2402           break;
2403         }
2404 #endif
2405
2406 #ifdef USE_IMAP
2407 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
2408 #endif
2409
2410 #ifdef USE_NNTP
2411         if (Context->magic == M_NNTP)
2412         {
2413           mutt_flushinp ();
2414           mutt_error _("Can't change 'important' flag on NNTP server.");
2415           break;
2416         }
2417 #endif
2418
2419         mutt_set_flag (Context, extra->hdr, M_FLAG, !extra->hdr->flagged);
2420         redraw = REDRAW_STATUS | REDRAW_INDEX;
2421         if (option (OPTRESOLVE))
2422         {
2423           ch = -1;
2424           rc = OP_MAIN_NEXT_UNDELETED;
2425         }
2426         break;
2427
2428       case OP_PIPE:
2429         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2430         if (IsAttach (extra))
2431           mutt_pipe_attachment_list (extra->fp, 0, extra->bdy, 0);
2432         else
2433           mutt_pipe_message (extra->hdr);
2434         MAYBE_REDRAW (redraw);
2435         break;
2436
2437       case OP_PRINT:
2438         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2439         if (IsAttach (extra))
2440           mutt_print_attachment_list (extra->fp, 0, extra->bdy);
2441         else
2442           mutt_print_message (extra->hdr);
2443         break;
2444
2445       case OP_MAIL:
2446         CHECK_MODE(IsHeader (extra) && !IsAttach (extra));
2447         CHECK_ATTACH;      
2448         ci_send_message (0, NULL, NULL, extra->ctx, NULL);
2449         redraw = REDRAW_FULL;
2450         break;
2451
2452 #ifdef USE_NNTP
2453       case OP_POST:
2454         CHECK_MODE(IsHeader (extra) && !IsAttach (extra));
2455         CHECK_ATTACH;
2456         if (extra->ctx && extra->ctx->magic == M_NNTP &&
2457             !((NNTP_DATA *)extra->ctx->data)->allowed &&
2458             query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2459           break;
2460         ci_send_message (SENDNEWS, NULL, NULL, extra->ctx, NULL);
2461         redraw = REDRAW_FULL;
2462         break;
2463
2464       case OP_FORWARD_TO_GROUP:
2465         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2466         CHECK_ATTACH;
2467         if (extra->ctx && extra->ctx->magic == M_NNTP &&
2468             !((NNTP_DATA *)extra->ctx->data)->allowed &&
2469             query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2470           break;
2471         if (IsMsgAttach (extra))
2472           mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2473                                extra->idxlen, extra->bdy, SENDNEWS);
2474         else
2475           ci_send_message (SENDNEWS|SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2476         redraw = REDRAW_FULL;
2477         break;
2478
2479       case OP_FOLLOWUP:
2480         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2481         CHECK_ATTACH;
2482
2483         if (IsMsgAttach (extra))
2484           followup_to = extra->bdy->hdr->env->followup_to;
2485         else
2486           followup_to = extra->hdr->env->followup_to;
2487
2488         if (!followup_to || mutt_strcasecmp (followup_to, "poster") ||
2489             query_quadoption (OPT_FOLLOWUPTOPOSTER,_("Reply by mail as poster prefers?")) != M_YES)
2490         {
2491           if (extra->ctx && extra->ctx->magic == M_NNTP &&
2492               !((NNTP_DATA *)extra->ctx->data)->allowed &&
2493               query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2494             break;
2495           if (IsMsgAttach (extra))
2496             mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2497                                extra->idxlen, extra->bdy, SENDNEWS|SENDREPLY);
2498           else
2499             ci_send_message (SENDNEWS|SENDREPLY, NULL, NULL,
2500                              extra->ctx, extra->hdr);
2501           redraw = REDRAW_FULL;
2502           break;
2503         }
2504 #endif
2505
2506       case OP_REPLY:
2507         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2508         CHECK_ATTACH;      
2509         if (IsMsgAttach (extra)) 
2510           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2511                              extra->idxlen, extra->bdy,
2512                              SENDREPLY);
2513         else
2514           ci_send_message (SENDREPLY, NULL, NULL, extra->ctx, extra->hdr);
2515         redraw = REDRAW_FULL;
2516         break;
2517
2518       case OP_RECALL_MESSAGE:
2519         CHECK_MODE(IsHeader (extra) && !IsAttach(extra));
2520         CHECK_ATTACH;
2521         ci_send_message (SENDPOSTPONED, NULL, NULL, extra->ctx, extra->hdr);
2522         redraw = REDRAW_FULL;
2523         break;
2524
2525       case OP_GROUP_REPLY:
2526         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2527         CHECK_ATTACH;
2528         if (IsMsgAttach (extra))
2529           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2530                              extra->idxlen, extra->bdy, SENDREPLY|SENDGROUPREPLY);
2531         else
2532           ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, extra->ctx, extra->hdr);
2533         redraw = REDRAW_FULL;
2534         break;
2535
2536       case OP_LIST_REPLY:
2537         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2538         CHECK_ATTACH;        
2539         if (IsMsgAttach (extra))
2540           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2541                              extra->idxlen, extra->bdy, SENDREPLY|SENDLISTREPLY);
2542         else
2543           ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, extra->ctx, extra->hdr);
2544         redraw = REDRAW_FULL;
2545         break;
2546
2547       case OP_FORWARD_MESSAGE:
2548         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2549         CHECK_ATTACH;
2550         if (IsMsgAttach (extra))
2551           mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2552                                extra->idxlen, extra->bdy, 0);
2553         else
2554           ci_send_message (SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2555         redraw = REDRAW_FULL;
2556         break;
2557
2558       case OP_DECRYPT_SAVE:
2559         if (!WithCrypto)
2560         {
2561           ch = -1;
2562           break;
2563         }
2564         /* fall through */
2565       case OP_SAVE:
2566         if (IsAttach (extra))
2567         {
2568           mutt_save_attachment_list (extra->fp, 0, extra->bdy, extra->hdr, NULL);
2569           break;
2570         }
2571         /* fall through */
2572       case OP_COPY_MESSAGE:
2573       case OP_DECODE_SAVE:
2574       case OP_DECODE_COPY:
2575       case OP_DECRYPT_COPY:
2576         if (!WithCrypto && ch == OP_DECRYPT_COPY)
2577         {
2578           ch = -1;
2579           break;
2580         }
2581         CHECK_MODE(IsHeader (extra));
2582         if (mutt_save_message (extra->hdr,
2583                                (ch == OP_DECRYPT_SAVE) ||
2584                                (ch == OP_SAVE) || (ch == OP_DECODE_SAVE),
2585                                (ch == OP_DECODE_SAVE) || (ch == OP_DECODE_COPY),
2586                                (ch == OP_DECRYPT_SAVE) || (ch == OP_DECRYPT_COPY) ||
2587                                0,
2588                                &redraw) == 0 && (ch == OP_SAVE || ch == OP_DECODE_SAVE
2589                                                  || ch == OP_DECRYPT_SAVE
2590                                                  ))
2591         {
2592           if (option (OPTRESOLVE))
2593           {
2594             ch = -1;
2595             rc = OP_MAIN_NEXT_UNDELETED;
2596           }
2597           else
2598             redraw |= REDRAW_STATUS | REDRAW_INDEX;
2599         }
2600         MAYBE_REDRAW (redraw);
2601         break;
2602
2603       case OP_SHELL_ESCAPE:
2604         mutt_shell_escape ();
2605         MAYBE_REDRAW (redraw);
2606         break;
2607
2608       case OP_TAG:
2609         CHECK_MODE(IsHeader (extra));
2610         mutt_set_flag (Context, extra->hdr, M_TAG, !extra->hdr->tagged);
2611
2612         Context->last_tag = extra->hdr->tagged ? extra->hdr :
2613           ((Context->last_tag == extra->hdr && !extra->hdr->tagged)
2614            ? NULL : Context->last_tag);
2615
2616         redraw = REDRAW_STATUS | REDRAW_INDEX;
2617         if (option (OPTRESOLVE))
2618         {
2619           ch = -1;
2620           rc = OP_NEXT_ENTRY;
2621         }
2622         break;
2623
2624       case OP_TOGGLE_NEW:
2625         CHECK_MODE(IsHeader (extra));
2626         CHECK_READONLY;
2627
2628 #ifdef USE_IMAP
2629 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
2630 #endif
2631
2632         if (extra->hdr->read || extra->hdr->old)
2633           mutt_set_flag (Context, extra->hdr, M_NEW, 1);
2634         else if (!first)
2635           mutt_set_flag (Context, extra->hdr, M_READ, 1);
2636         first = 0;
2637         Context->msgnotreadyet = -1;
2638         redraw = REDRAW_STATUS | REDRAW_INDEX;
2639         if (option (OPTRESOLVE))
2640         {
2641           ch = -1;
2642           rc = OP_MAIN_NEXT_UNDELETED;
2643         }
2644         break;
2645
2646       case OP_UNDELETE:
2647         CHECK_MODE(IsHeader (extra));
2648         CHECK_READONLY;
2649
2650 #ifdef USE_IMAP
2651 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2652 #endif
2653
2654         mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
2655         mutt_set_flag (Context, extra->hdr, M_PURGED, 0);
2656         redraw = REDRAW_STATUS | REDRAW_INDEX;
2657         if (option (OPTRESOLVE))
2658         {
2659           ch = -1;
2660           rc = OP_NEXT_ENTRY;
2661         }
2662         break;
2663
2664       case OP_UNDELETE_THREAD:
2665       case OP_UNDELETE_SUBTHREAD:
2666         CHECK_MODE(IsHeader (extra));
2667         CHECK_READONLY;
2668
2669 #ifdef USE_IMAP
2670 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2671 #endif
2672
2673         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
2674                                   ch == OP_UNDELETE_THREAD ? 0 : 1)
2675           + mutt_thread_set_flag (extra->hdr, M_PURGED, 0,
2676                                   ch == OP_UNDELETE_THREAD ? 0 : 1);
2677
2678         if (r > -1)
2679         {
2680           if (option (OPTRESOLVE))
2681           {
2682             rc = (ch == OP_DELETE_THREAD) ?
2683                                   OP_MAIN_NEXT_THREAD : OP_MAIN_NEXT_SUBTHREAD;
2684             ch = -1;
2685           }
2686
2687           if (!option (OPTRESOLVE) && PagerIndexLines)
2688             redraw = REDRAW_FULL;
2689           else
2690             redraw = REDRAW_STATUS | REDRAW_INDEX;
2691         }
2692         break;
2693
2694       case OP_VERSION:
2695         mutt_version ();
2696         break;
2697
2698       case OP_BUFFY_LIST:
2699         mutt_buffy_list ();
2700         break;
2701
2702       case OP_VIEW_ATTACHMENTS:
2703         if (flags & M_PAGER_ATTACHMENT)
2704         {
2705           ch = -1;
2706           rc = OP_ATTACH_COLLAPSE;
2707           break;
2708         }
2709         CHECK_MODE(IsHeader (extra));
2710         mutt_view_attachments (extra->hdr);
2711         if (extra->hdr->attach_del)
2712           Context->changed = 1;
2713         redraw = REDRAW_FULL;
2714         break;
2715
2716
2717       case OP_MAIL_KEY:
2718         if (!(WithCrypto & APPLICATION_PGP))
2719         {
2720           ch = -1;
2721           break;
2722         }
2723         CHECK_MODE(IsHeader(extra));
2724         CHECK_ATTACH;
2725         ci_send_message (SENDKEY, NULL, NULL, extra->ctx, extra->hdr);
2726         redraw = REDRAW_FULL;
2727         break;
2728
2729
2730       case OP_FORGET_PASSPHRASE:
2731         crypt_forget_passphrase ();
2732         break;
2733
2734       case OP_EXTRACT_KEYS:
2735         if (!WithCrypto)
2736         {
2737           ch = -1;
2738           break;
2739         }
2740         CHECK_MODE(IsHeader(extra));
2741         crypt_extract_keys_from_messages(extra->hdr);
2742         redraw = REDRAW_FULL;
2743         break;
2744
2745           case OP_SIDEBAR_SCROLL_UP:
2746           case OP_SIDEBAR_SCROLL_DOWN:
2747           case OP_SIDEBAR_NEXT:
2748           case OP_SIDEBAR_PREV:
2749             scroll_sidebar(ch, MENU_PAGER);
2750                 break;
2751       default:
2752         ch = -1;
2753         break;
2754     }
2755   }
2756
2757   fclose (fp);
2758   if (IsHeader (extra))
2759     Context->msgnotreadyet = -1;
2760     
2761   cleanup_quote (&QuoteList);
2762   
2763   for (i = 0; i < maxLine ; i++)
2764   {
2765     FREE (&(lineInfo[i].syntax));
2766     if (SearchCompiled && lineInfo[i].search)
2767       FREE (&(lineInfo[i].search));
2768   }
2769   if (SearchCompiled)
2770   {
2771     regfree (&SearchRE);
2772     SearchCompiled = 0;
2773   }
2774   FREE (&lineInfo);
2775   if (index)
2776     mutt_menuDestroy(&index);
2777   return (rc != -1 ? rc : 0);
2778 }