git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@83 e385b8ad-14ed-0310-8656-cc95a2468c6d
[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)),
1780                   SidebarWidth);
1781       SETCOLOR (MT_COLOR_STATUS);
1782       mutt_paddstr (COLS-SidebarWidth, buffer);
1783       SETCOLOR (MT_COLOR_NORMAL);
1784     }
1785         /* if we're not using the index, update every time */
1786         if ( index == 0 )
1787                 draw_sidebar(MENU_PAGER);
1788
1789     redraw = 0;
1790
1791     move (statusoffset, COLS-1);
1792     mutt_refresh ();
1793     ch = km_dokey (MENU_PAGER);
1794     if (ch != -1)
1795       mutt_clear_error ();
1796     mutt_curs_set (1);
1797
1798     if (SigInt)
1799     {
1800       mutt_query_exit ();
1801       continue;
1802     }
1803 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
1804     else if (SigWinch)
1805     {
1806       mutt_resize_screen ();
1807
1808       /* Store current position. */
1809       lines = -1;
1810       for (i = 0; i <= topline; i++)
1811         if (!lineInfo[i].continuation)
1812           lines++;
1813
1814       if (flags & M_PAGER_RETWINCH)
1815       {
1816         Resize = safe_malloc (sizeof (struct resize));
1817
1818         Resize->line = lines;
1819         Resize->SearchCompiled = SearchCompiled;
1820         Resize->SearchBack = SearchBack;
1821
1822         ch = -1;
1823         rc = OP_REFORMAT_WINCH;
1824       }
1825       else
1826       {
1827         for (i = 0; i < maxLine; i++)
1828         {
1829           lineInfo[i].offset = 0;
1830           lineInfo[i].type = -1;
1831           lineInfo[i].continuation = 0;
1832           lineInfo[i].chunks = 0;
1833           lineInfo[i].search_cnt = -1;
1834           lineInfo[i].quote = NULL;
1835
1836           safe_realloc (&(lineInfo[i].syntax),
1837                         sizeof (struct syntax_t));
1838           if (SearchCompiled && lineInfo[i].search)
1839               FREE (&(lineInfo[i].search));
1840         }
1841
1842         lastLine = 0;
1843         topline = 0;
1844
1845         redraw = REDRAW_FULL | REDRAW_SIGWINCH;
1846         ch = 0;
1847       }
1848
1849       SigWinch = 0;
1850       clearok(stdscr,TRUE);/*force complete redraw*/
1851       continue;
1852     }
1853 #endif
1854     else if (ch == -1)
1855     {
1856       ch = 0;
1857       continue;
1858     }
1859
1860     rc = ch;
1861
1862     switch (ch)
1863     {
1864       case OP_EXIT:
1865         rc = -1;
1866         ch = -1;
1867         break;
1868
1869       case OP_NEXT_PAGE:
1870         if (lineInfo[curline].offset < sb.st_size-1)
1871         {
1872           topline = upNLines (PagerContext, lineInfo, curline, hideQuoted);
1873         }
1874         else if (option (OPTPAGERSTOP))
1875         {
1876           /* emulate "less -q" and don't go on to the next message. */
1877           mutt_error _("Bottom of message is shown.");
1878         }
1879         else
1880         {
1881           /* end of the current message, so display the next message. */
1882           rc = OP_MAIN_NEXT_UNDELETED;
1883           ch = -1;
1884         }
1885         break;
1886
1887       case OP_PREV_PAGE:
1888         if (topline != 0)
1889         {
1890           topline = upNLines (bodylen-PagerContext, lineInfo, topline, hideQuoted);
1891         }
1892         else
1893           mutt_error _("Top of message is shown.");
1894         break;
1895
1896       case OP_NEXT_LINE:
1897         if (lineInfo[curline].offset < sb.st_size-1)
1898         {
1899           topline++;
1900           if (hideQuoted)
1901           {
1902             while (lineInfo[topline].type == MT_COLOR_QUOTED &&
1903                    topline < lastLine)
1904               topline++;
1905           }
1906         }
1907         else
1908           mutt_error _("Bottom of message is shown.");
1909         break;
1910
1911       case OP_PREV_LINE:
1912         if (topline)
1913           topline = upNLines (1, lineInfo, topline, hideQuoted);
1914         else
1915           mutt_error _("Top of message is shown.");
1916         break;
1917
1918       case OP_PAGER_TOP:
1919         if (topline)
1920           topline = 0;
1921         else
1922           mutt_error _("Top of message is shown.");
1923         break;
1924
1925       case OP_HALF_UP:
1926         if (topline)
1927           topline = upNLines (bodylen/2, lineInfo, topline, hideQuoted);
1928         else
1929           mutt_error _("Top of message is shown.");
1930         break;
1931
1932       case OP_HALF_DOWN:
1933         if (lineInfo[curline].offset < sb.st_size-1)
1934         {
1935           topline = upNLines (bodylen/2, lineInfo, curline, hideQuoted);
1936         }
1937         else if (option (OPTPAGERSTOP))
1938         {
1939           /* emulate "less -q" and don't go on to the next message. */
1940           mutt_error _("Bottom of message is shown.");
1941         }
1942         else
1943         {
1944           /* end of the current message, so display the next message. */
1945           rc = OP_MAIN_NEXT_UNDELETED;
1946           ch = -1;
1947         }
1948         break;
1949
1950       case OP_SEARCH_NEXT:
1951       case OP_SEARCH_OPPOSITE:
1952         if (SearchCompiled)
1953         {
1954 search_next:
1955           if ((!SearchBack && ch==OP_SEARCH_NEXT) ||
1956               (SearchBack &&ch==OP_SEARCH_OPPOSITE))
1957           {
1958             /* searching forward */
1959             for (i = topline + 1; i < lastLine; i++)
1960             {
1961               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
1962                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1963                 break;
1964             }
1965
1966             if (i < lastLine)
1967               topline = i;
1968             else
1969               mutt_error _("Not found.");
1970           }
1971           else
1972           {
1973             /* searching backward */
1974             for (i = topline - 1; i >= 0; i--)
1975             {
1976               if ((!hideQuoted || (has_types && 
1977                     lineInfo[i].type != MT_COLOR_QUOTED)) && 
1978                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
1979                 break;
1980             }
1981
1982             if (i >= 0)
1983               topline = i;
1984             else
1985               mutt_error _("Not found.");
1986           }
1987
1988           if (lineInfo[topline].search_cnt > 0)
1989             SearchFlag = M_SEARCH;
1990
1991           break;
1992         }
1993         /* no previous search pattern, so fall through to search */
1994
1995       case OP_SEARCH:
1996       case OP_SEARCH_REVERSE:
1997         strfcpy (buffer, searchbuf, sizeof (buffer));
1998         if (mutt_get_field ((SearchBack ? _("Reverse search: ") :
1999                           _("Search: ")), buffer, sizeof (buffer),
2000                           M_CLEAR) != 0)
2001           break;
2002
2003         if (!strcmp (buffer, searchbuf))
2004         {
2005           if (SearchCompiled)
2006           {
2007             /* do an implicit search-next */
2008             if (ch == OP_SEARCH)
2009               ch = OP_SEARCH_NEXT;
2010             else
2011               ch = OP_SEARCH_OPPOSITE;
2012
2013             goto search_next;
2014           }
2015         }
2016       
2017         if (!buffer[0])
2018           break;
2019       
2020         strfcpy (searchbuf, buffer, sizeof (searchbuf));
2021
2022         /* leave SearchBack alone if ch == OP_SEARCH_NEXT */
2023         if (ch == OP_SEARCH)
2024           SearchBack = 0;
2025         else if (ch == OP_SEARCH_REVERSE)
2026           SearchBack = 1;
2027
2028         if (SearchCompiled)
2029         {
2030           regfree (&SearchRE);
2031           for (i = 0; i < lastLine; i++)
2032           {
2033             if (lineInfo[i].search)
2034               FREE (&(lineInfo[i].search));
2035             lineInfo[i].search_cnt = -1;
2036           }
2037         }
2038
2039         if ((err = REGCOMP (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf))) != 0)
2040         {
2041           regerror (err, &SearchRE, buffer, sizeof (buffer));
2042           mutt_error ("%s", buffer);
2043           regfree (&SearchRE);
2044           for (i = 0; i < maxLine ; i++)
2045           {
2046             /* cleanup */
2047             if (lineInfo[i].search)
2048               FREE (&(lineInfo[i].search));
2049             lineInfo[i].search_cnt = -1;
2050           }
2051           SearchFlag = 0;
2052           SearchCompiled = 0;
2053         }
2054         else
2055         {
2056           SearchCompiled = 1;
2057           /* update the search pointers */
2058           i = 0;
2059           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2060                                 &maxLine, M_SEARCH | (flags & M_PAGER_NSKIP),
2061                                 &QuoteList, &q_level,
2062                                 &force_redraw, &SearchRE) == 0) {
2063             i++;
2064             redraw |= REDRAW_SIDEBAR;
2065           }
2066
2067           if (!SearchBack)
2068           {
2069             /* searching forward */
2070             for (i = topline; i < lastLine; i++)
2071             {
2072               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2073                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2074                 break;
2075             }
2076
2077             if (i < lastLine) topline = i;
2078           }
2079           else
2080           {
2081             /* searching backward */
2082             for (i = topline; i >= 0; i--)
2083             {
2084               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2085                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2086                 break;
2087             }
2088
2089             if (i >= 0) topline = i;
2090           }
2091
2092           if (lineInfo[topline].search_cnt == 0)
2093           {
2094             SearchFlag = 0;
2095             mutt_error _("Not found.");
2096           }
2097           else
2098             SearchFlag = M_SEARCH;
2099         }
2100         redraw = REDRAW_BODY;
2101         break;
2102
2103       case OP_SEARCH_TOGGLE:
2104         if (SearchCompiled)
2105         {
2106           SearchFlag ^= M_SEARCH;
2107           redraw = REDRAW_BODY;
2108         }
2109         break;
2110
2111       case OP_HELP:
2112         /* don't let the user enter the help-menu from the help screen! */
2113         if (! InHelp)
2114         {
2115           InHelp = 1;
2116           mutt_help (MENU_PAGER);
2117           redraw = REDRAW_FULL;
2118           InHelp = 0;
2119         }
2120         else
2121           mutt_error _("Help is currently being shown.");
2122         break;
2123
2124       case OP_PAGER_HIDE_QUOTED:
2125         if (has_types)
2126         {
2127           hideQuoted ^= M_HIDE;
2128           if (hideQuoted && lineInfo[topline].type == MT_COLOR_QUOTED)
2129             topline = upNLines (1, lineInfo, topline, hideQuoted);
2130           else
2131             redraw = REDRAW_BODY;
2132         }
2133         break;
2134
2135       case OP_PAGER_SKIP_QUOTED:
2136         if (has_types)
2137         {
2138           int dretval = 0;
2139           int new_topline = topline;
2140
2141           while ((new_topline < lastLine ||
2142                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2143                          new_topline, &lastLine, &maxLine, M_TYPES,
2144                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2145                  && lineInfo[new_topline].type != MT_COLOR_QUOTED) {
2146             redraw |= REDRAW_SIDEBAR;
2147             new_topline++;
2148           }
2149
2150           if (dretval < 0)
2151           {
2152             mutt_error _("No more quoted text.");
2153             break;
2154           }
2155
2156           while ((new_topline < lastLine ||
2157                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2158                          new_topline, &lastLine, &maxLine, M_TYPES,
2159                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2160                  && lineInfo[new_topline].type == MT_COLOR_QUOTED) {
2161             new_topline++;
2162             redraw |= REDRAW_SIDEBAR;
2163           }
2164
2165           if (dretval < 0)
2166           {
2167             mutt_error _("No more unquoted text after quoted text.");
2168             break;        
2169           }
2170           topline = new_topline;
2171         }
2172         break;
2173
2174       case OP_PAGER_BOTTOM: /* move to the end of the file */
2175         if (lineInfo[curline].offset < sb.st_size - 1)
2176         {
2177           i = curline;
2178           /* make sure the types are defined to the end of file */
2179           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2180                                 &maxLine, has_types, 
2181                                 &QuoteList, &q_level, &force_redraw,
2182                                 &SearchRE) == 0) {
2183             i++;
2184             redraw |= REDRAW_SIDEBAR;
2185           }
2186           topline = upNLines (bodylen, lineInfo, lastLine, hideQuoted);
2187         }
2188         else
2189           mutt_error _("Bottom of message is shown.");
2190         break;
2191
2192       case OP_REDRAW:
2193         clearok (stdscr, TRUE);
2194         redraw = REDRAW_FULL;
2195         break;
2196
2197       case OP_NULL:
2198         km_error_key (MENU_PAGER);
2199         break;
2200
2201         /* --------------------------------------------------------------------
2202          * The following are operations on the current message rather than
2203          * adjusting the view of the message.
2204          */
2205
2206       case OP_BOUNCE_MESSAGE:
2207         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2208         CHECK_ATTACH;
2209         if (IsMsgAttach (extra))
2210           mutt_attach_bounce (extra->fp, extra->hdr,
2211                               extra->idx, extra->idxlen,
2212                               extra->bdy);
2213         else
2214           ci_bounce_message (extra->hdr, &redraw);
2215         break;
2216
2217       case OP_RESEND:
2218         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2219         CHECK_ATTACH;
2220         if (IsMsgAttach (extra))
2221           mutt_attach_resend (extra->fp, extra->hdr,
2222                               extra->idx, extra->idxlen,
2223                               extra->bdy);
2224         else
2225           mutt_resend_message (NULL, extra->ctx, extra->hdr);
2226         redraw = REDRAW_FULL;
2227         break;
2228
2229       case OP_CHECK_TRADITIONAL:
2230         CHECK_MODE (IsHeader (extra));
2231         if (!(WithCrypto & APPLICATION_PGP))
2232           break;
2233         if (!(extra->hdr->security & PGP_TRADITIONAL_CHECKED)) 
2234         {
2235           ch = -1;
2236           rc = OP_CHECK_TRADITIONAL;
2237         }
2238         break;
2239       
2240       case OP_CREATE_ALIAS:
2241         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2242         if (IsMsgAttach (extra))
2243           mutt_create_alias (extra->bdy->hdr->env, NULL);
2244         else
2245           mutt_create_alias (extra->hdr->env, NULL);
2246         MAYBE_REDRAW (redraw);
2247         break;
2248
2249       case OP_PURGE_MESSAGE:
2250       case OP_DELETE:
2251         CHECK_MODE(IsHeader (extra));
2252         CHECK_READONLY;
2253
2254 #ifdef USE_IMAP
2255 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2256 #endif
2257
2258         mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
2259         mutt_set_flag (Context, extra->hdr, M_PURGED,
2260                        ch != OP_PURGE_MESSAGE ? 0 : 1);
2261         if (option (OPTDELETEUNTAG))
2262           mutt_set_flag (Context, extra->hdr, M_TAG, 0);
2263         redraw = REDRAW_STATUS | REDRAW_INDEX;
2264         if (option (OPTRESOLVE))
2265         {
2266           ch = -1;
2267           rc = OP_MAIN_NEXT_UNDELETED;
2268         }
2269         break;
2270
2271       case OP_DELETE_THREAD:
2272       case OP_DELETE_SUBTHREAD:
2273         CHECK_MODE(IsHeader (extra));
2274         CHECK_READONLY;
2275
2276 #ifdef USE_IMAP
2277 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2278 #endif
2279
2280         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 1,
2281                                   ch == OP_DELETE_THREAD ? 0 : 1);
2282
2283         if (r != -1)
2284         {
2285           if (option (OPTDELETEUNTAG))
2286             mutt_thread_set_flag (extra->hdr, M_TAG, 0,
2287                                   ch == OP_DELETE_THREAD ? 0 : 1);
2288           if (option (OPTRESOLVE))
2289           {
2290             rc = OP_MAIN_NEXT_UNDELETED;
2291             ch = -1;
2292           }
2293
2294           if (!option (OPTRESOLVE) && PagerIndexLines)
2295             redraw = REDRAW_FULL;
2296           else
2297             redraw = REDRAW_STATUS | REDRAW_INDEX;
2298         }
2299         break;
2300
2301       case OP_DISPLAY_ADDRESS:
2302         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2303         if (IsMsgAttach (extra))
2304           mutt_display_address (extra->bdy->hdr->env);
2305         else
2306           mutt_display_address (extra->hdr->env);
2307         break;
2308
2309       case OP_ENTER_COMMAND:
2310         old_smart_wrap = option (OPTWRAP);
2311         old_markers = option (OPTMARKERS);
2312         old_PagerIndexLines = PagerIndexLines;
2313
2314         CurrentMenu = MENU_PAGER;
2315         mutt_enter_command ();
2316
2317         if (option (OPTNEEDRESORT))
2318         {
2319           unset_option (OPTNEEDRESORT);
2320           CHECK_MODE(IsHeader (extra));
2321           set_option (OPTNEEDRESORT);
2322         }
2323
2324         if (old_PagerIndexLines != PagerIndexLines)
2325         {
2326           if (index)
2327             mutt_menuDestroy (&index);
2328           index = NULL;
2329         }
2330         
2331         if (option (OPTWRAP) != old_smart_wrap || 
2332             option (OPTMARKERS) != old_markers)
2333         {
2334           if (flags & M_PAGER_RETWINCH)
2335           {
2336             ch = -1;
2337             rc = OP_REFORMAT_WINCH;
2338             continue;
2339           }
2340
2341           /* count the real lines above */
2342           j = 0;
2343           for (i = 0; i <= topline; i++)
2344           {
2345             if (!lineInfo[i].continuation)
2346               j++;
2347           }
2348
2349           /* we need to restart the whole thing */
2350           for (i = 0; i < maxLine; i++)
2351           {
2352             lineInfo[i].offset = 0;
2353             lineInfo[i].type = -1;
2354             lineInfo[i].continuation = 0;
2355             lineInfo[i].chunks = 0;
2356             lineInfo[i].search_cnt = -1;
2357             lineInfo[i].quote = NULL;
2358
2359             safe_realloc (&(lineInfo[i].syntax), sizeof (struct syntax_t));
2360             if (SearchCompiled && lineInfo[i].search)
2361                 FREE (&(lineInfo[i].search));
2362           }
2363
2364           if (SearchCompiled)
2365           {
2366             regfree (&SearchRE);
2367             SearchCompiled = 0;
2368           }
2369           SearchFlag = 0;
2370
2371           /* try to keep the old position */
2372           topline = 0;
2373           lastLine = 0;
2374           while (j > 0 && display_line (fp, &last_pos, &lineInfo, topline, 
2375                                         &lastLine, &maxLine,
2376                                         (has_types ? M_TYPES : 0),
2377                                         &QuoteList, &q_level, &force_redraw,
2378                                         &SearchRE) == 0)
2379           {
2380             redraw |= REDRAW_SIDEBAR;
2381             if (! lineInfo[topline].continuation)
2382               j--;
2383             if (j > 0)
2384               topline++;
2385           }
2386
2387           ch = 0;
2388         }
2389
2390         if (option (OPTFORCEREDRAWPAGER))
2391           redraw = REDRAW_FULL;
2392         unset_option (OPTFORCEREDRAWINDEX);
2393         unset_option (OPTFORCEREDRAWPAGER);
2394         break;
2395
2396       case OP_FLAG_MESSAGE:
2397         CHECK_MODE(IsHeader (extra));
2398         CHECK_READONLY;
2399
2400 #ifdef USE_POP
2401         if (Context->magic == M_POP)
2402         {
2403           mutt_flushinp ();
2404           mutt_error _("Can't change 'important' flag on POP server.");
2405           break;
2406         }
2407 #endif
2408
2409 #ifdef USE_IMAP
2410 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
2411 #endif
2412
2413 #ifdef USE_NNTP
2414         if (Context->magic == M_NNTP)
2415         {
2416           mutt_flushinp ();
2417           mutt_error _("Can't change 'important' flag on NNTP server.");
2418           break;
2419         }
2420 #endif
2421
2422         mutt_set_flag (Context, extra->hdr, M_FLAG, !extra->hdr->flagged);
2423         redraw = REDRAW_STATUS | REDRAW_INDEX;
2424         if (option (OPTRESOLVE))
2425         {
2426           ch = -1;
2427           rc = OP_MAIN_NEXT_UNDELETED;
2428         }
2429         break;
2430
2431       case OP_PIPE:
2432         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2433         if (IsAttach (extra))
2434           mutt_pipe_attachment_list (extra->fp, 0, extra->bdy, 0);
2435         else
2436           mutt_pipe_message (extra->hdr);
2437         MAYBE_REDRAW (redraw);
2438         break;
2439
2440       case OP_PRINT:
2441         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2442         if (IsAttach (extra))
2443           mutt_print_attachment_list (extra->fp, 0, extra->bdy);
2444         else
2445           mutt_print_message (extra->hdr);
2446         break;
2447
2448       case OP_MAIL:
2449         CHECK_MODE(IsHeader (extra) && !IsAttach (extra));
2450         CHECK_ATTACH;      
2451         ci_send_message (0, NULL, NULL, extra->ctx, NULL);
2452         redraw = REDRAW_FULL;
2453         break;
2454
2455 #ifdef USE_NNTP
2456       case OP_POST:
2457         CHECK_MODE(IsHeader (extra) && !IsAttach (extra));
2458         CHECK_ATTACH;
2459         if (extra->ctx && extra->ctx->magic == M_NNTP &&
2460             !((NNTP_DATA *)extra->ctx->data)->allowed &&
2461             query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2462           break;
2463         ci_send_message (SENDNEWS, NULL, NULL, extra->ctx, NULL);
2464         redraw = REDRAW_FULL;
2465         break;
2466
2467       case OP_FORWARD_TO_GROUP:
2468         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2469         CHECK_ATTACH;
2470         if (extra->ctx && extra->ctx->magic == M_NNTP &&
2471             !((NNTP_DATA *)extra->ctx->data)->allowed &&
2472             query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2473           break;
2474         if (IsMsgAttach (extra))
2475           mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2476                                extra->idxlen, extra->bdy, SENDNEWS);
2477         else
2478           ci_send_message (SENDNEWS|SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2479         redraw = REDRAW_FULL;
2480         break;
2481
2482       case OP_FOLLOWUP:
2483         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2484         CHECK_ATTACH;
2485
2486         if (IsMsgAttach (extra))
2487           followup_to = extra->bdy->hdr->env->followup_to;
2488         else
2489           followup_to = extra->hdr->env->followup_to;
2490
2491         if (!followup_to || mutt_strcasecmp (followup_to, "poster") ||
2492             query_quadoption (OPT_FOLLOWUPTOPOSTER,_("Reply by mail as poster prefers?")) != M_YES)
2493         {
2494           if (extra->ctx && extra->ctx->magic == M_NNTP &&
2495               !((NNTP_DATA *)extra->ctx->data)->allowed &&
2496               query_quadoption (OPT_TOMODERATED,_("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2497             break;
2498           if (IsMsgAttach (extra))
2499             mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2500                                extra->idxlen, extra->bdy, SENDNEWS|SENDREPLY);
2501           else
2502             ci_send_message (SENDNEWS|SENDREPLY, NULL, NULL,
2503                              extra->ctx, extra->hdr);
2504           redraw = REDRAW_FULL;
2505           break;
2506         }
2507 #endif
2508
2509       case OP_REPLY:
2510         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2511         CHECK_ATTACH;      
2512         if (IsMsgAttach (extra)) 
2513           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2514                              extra->idxlen, extra->bdy,
2515                              SENDREPLY);
2516         else
2517           ci_send_message (SENDREPLY, NULL, NULL, extra->ctx, extra->hdr);
2518         redraw = REDRAW_FULL;
2519         break;
2520
2521       case OP_RECALL_MESSAGE:
2522         CHECK_MODE(IsHeader (extra) && !IsAttach(extra));
2523         CHECK_ATTACH;
2524         ci_send_message (SENDPOSTPONED, NULL, NULL, extra->ctx, extra->hdr);
2525         redraw = REDRAW_FULL;
2526         break;
2527
2528       case OP_GROUP_REPLY:
2529         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2530         CHECK_ATTACH;
2531         if (IsMsgAttach (extra))
2532           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2533                              extra->idxlen, extra->bdy, SENDREPLY|SENDGROUPREPLY);
2534         else
2535           ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, extra->ctx, extra->hdr);
2536         redraw = REDRAW_FULL;
2537         break;
2538
2539       case OP_LIST_REPLY:
2540         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2541         CHECK_ATTACH;        
2542         if (IsMsgAttach (extra))
2543           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2544                              extra->idxlen, extra->bdy, SENDREPLY|SENDLISTREPLY);
2545         else
2546           ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, extra->ctx, extra->hdr);
2547         redraw = REDRAW_FULL;
2548         break;
2549
2550       case OP_FORWARD_MESSAGE:
2551         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2552         CHECK_ATTACH;
2553         if (IsMsgAttach (extra))
2554           mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2555                                extra->idxlen, extra->bdy, 0);
2556         else
2557           ci_send_message (SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2558         redraw = REDRAW_FULL;
2559         break;
2560
2561       case OP_DECRYPT_SAVE:
2562         if (!WithCrypto)
2563         {
2564           ch = -1;
2565           break;
2566         }
2567         /* fall through */
2568       case OP_SAVE:
2569         if (IsAttach (extra))
2570         {
2571           mutt_save_attachment_list (extra->fp, 0, extra->bdy, extra->hdr, NULL);
2572           break;
2573         }
2574         /* fall through */
2575       case OP_COPY_MESSAGE:
2576       case OP_DECODE_SAVE:
2577       case OP_DECODE_COPY:
2578       case OP_DECRYPT_COPY:
2579         if (!WithCrypto && ch == OP_DECRYPT_COPY)
2580         {
2581           ch = -1;
2582           break;
2583         }
2584         CHECK_MODE(IsHeader (extra));
2585         if (mutt_save_message (extra->hdr,
2586                                (ch == OP_DECRYPT_SAVE) ||
2587                                (ch == OP_SAVE) || (ch == OP_DECODE_SAVE),
2588                                (ch == OP_DECODE_SAVE) || (ch == OP_DECODE_COPY),
2589                                (ch == OP_DECRYPT_SAVE) || (ch == OP_DECRYPT_COPY) ||
2590                                0,
2591                                &redraw) == 0 && (ch == OP_SAVE || ch == OP_DECODE_SAVE
2592                                                  || ch == OP_DECRYPT_SAVE
2593                                                  ))
2594         {
2595           if (option (OPTRESOLVE))
2596           {
2597             ch = -1;
2598             rc = OP_MAIN_NEXT_UNDELETED;
2599           }
2600           else
2601             redraw |= REDRAW_STATUS | REDRAW_INDEX;
2602         }
2603         MAYBE_REDRAW (redraw);
2604         break;
2605
2606       case OP_SHELL_ESCAPE:
2607         mutt_shell_escape ();
2608         MAYBE_REDRAW (redraw);
2609         break;
2610
2611       case OP_TAG:
2612         CHECK_MODE(IsHeader (extra));
2613         mutt_set_flag (Context, extra->hdr, M_TAG, !extra->hdr->tagged);
2614
2615         Context->last_tag = extra->hdr->tagged ? extra->hdr :
2616           ((Context->last_tag == extra->hdr && !extra->hdr->tagged)
2617            ? NULL : Context->last_tag);
2618
2619         redraw = REDRAW_STATUS | REDRAW_INDEX;
2620         if (option (OPTRESOLVE))
2621         {
2622           ch = -1;
2623           rc = OP_NEXT_ENTRY;
2624         }
2625         break;
2626
2627       case OP_TOGGLE_NEW:
2628         CHECK_MODE(IsHeader (extra));
2629         CHECK_READONLY;
2630
2631 #ifdef USE_IMAP
2632 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
2633 #endif
2634
2635         if (extra->hdr->read || extra->hdr->old)
2636           mutt_set_flag (Context, extra->hdr, M_NEW, 1);
2637         else if (!first)
2638           mutt_set_flag (Context, extra->hdr, M_READ, 1);
2639         first = 0;
2640         Context->msgnotreadyet = -1;
2641         redraw = REDRAW_STATUS | REDRAW_INDEX;
2642         if (option (OPTRESOLVE))
2643         {
2644           ch = -1;
2645           rc = OP_MAIN_NEXT_UNDELETED;
2646         }
2647         break;
2648
2649       case OP_UNDELETE:
2650         CHECK_MODE(IsHeader (extra));
2651         CHECK_READONLY;
2652
2653 #ifdef USE_IMAP
2654 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2655 #endif
2656
2657         mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
2658         mutt_set_flag (Context, extra->hdr, M_PURGED, 0);
2659         redraw = REDRAW_STATUS | REDRAW_INDEX;
2660         if (option (OPTRESOLVE))
2661         {
2662           ch = -1;
2663           rc = OP_NEXT_ENTRY;
2664         }
2665         break;
2666
2667       case OP_UNDELETE_THREAD:
2668       case OP_UNDELETE_SUBTHREAD:
2669         CHECK_MODE(IsHeader (extra));
2670         CHECK_READONLY;
2671
2672 #ifdef USE_IMAP
2673 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2674 #endif
2675
2676         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
2677                                   ch == OP_UNDELETE_THREAD ? 0 : 1)
2678           + mutt_thread_set_flag (extra->hdr, M_PURGED, 0,
2679                                   ch == OP_UNDELETE_THREAD ? 0 : 1);
2680
2681         if (r > -1)
2682         {
2683           if (option (OPTRESOLVE))
2684           {
2685             rc = (ch == OP_DELETE_THREAD) ?
2686                                   OP_MAIN_NEXT_THREAD : OP_MAIN_NEXT_SUBTHREAD;
2687             ch = -1;
2688           }
2689
2690           if (!option (OPTRESOLVE) && PagerIndexLines)
2691             redraw = REDRAW_FULL;
2692           else
2693             redraw = REDRAW_STATUS | REDRAW_INDEX;
2694         }
2695         break;
2696
2697       case OP_VERSION:
2698         mutt_version ();
2699         break;
2700
2701       case OP_BUFFY_LIST:
2702         mutt_buffy_list ();
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_PREV:
2752             scroll_sidebar(ch, MENU_PAGER);
2753                 break;
2754       default:
2755         ch = -1;
2756         break;
2757     }
2758   }
2759
2760   fclose (fp);
2761   if (IsHeader (extra))
2762     Context->msgnotreadyet = -1;
2763     
2764   cleanup_quote (&QuoteList);
2765   
2766   for (i = 0; i < maxLine ; i++)
2767   {
2768     FREE (&(lineInfo[i].syntax));
2769     if (SearchCompiled && lineInfo[i].search)
2770       FREE (&(lineInfo[i].search));
2771   }
2772   if (SearchCompiled)
2773   {
2774     regfree (&SearchRE);
2775     SearchCompiled = 0;
2776   }
2777   FREE (&lineInfo);
2778   if (index)
2779     mutt_menuDestroy(&index);
2780   return (rc != -1 ? rc : 0);
2781 }