Andreas Krennmair:
[apps/madmutt.git] / curs_main.c
1 /*
2  * Copyright (C) 1996-2000 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 #include "mutt.h"
20 #include "mutt_curses.h"
21 #include "mx.h"
22 #include "mutt_menu.h"
23 #include "mailbox.h"
24 #include "mapping.h"
25 #include "sort.h"
26 #include "buffy.h"
27 #include "mx.h"
28 #include "sidebar.h"
29
30 #ifdef USE_POP
31 #include "pop.h"
32 #endif
33
34 #ifdef USE_IMAP
35 #include "imap_private.h"
36 #endif
37
38 #include "mutt_crypt.h"
39
40 #ifdef USE_NNTP
41 #include "nntp.h"
42 #endif
43
44
45 #include <ctype.h>
46 #include <stdlib.h>
47 #include <unistd.h>
48 #include <sys/wait.h>
49 #include <string.h>
50 #include <sys/stat.h>
51 #include <errno.h>
52
53 static const char *No_mailbox_is_open = N_("No mailbox is open.");
54 static const char *There_are_no_messages = N_("There are no messages.");
55 static const char *Mailbox_is_read_only = N_("Mailbox is read-only.");
56 static const char *Function_not_permitted_in_attach_message_mode = N_("Function not permitted in attach-message mode.");
57 static const char *No_visible = N_("No visible messages.");
58
59 #define CHECK_MSGCOUNT if (!Context) \
60         { \
61                   mutt_flushinp (); \
62                 mutt_error _(No_mailbox_is_open); \
63                 break; \
64         } \
65         else if (!Context->msgcount) \
66         { \
67                   mutt_flushinp (); \
68                 mutt_error _(There_are_no_messages); \
69                 break; \
70         }
71
72 #define CHECK_VISIBLE if (Context && menu->current >= Context->vcount) \
73           {\
74                   mutt_flushinp (); \
75                   mutt_error _(No_visible); \
76                   break; \
77         }
78     
79
80 #define CHECK_READONLY if (Context->readonly) \
81                         { \
82                                   mutt_flushinp (); \
83                                 mutt_error _(Mailbox_is_read_only); \
84                                 break; \
85                         }
86
87 #ifdef USE_IMAP 
88 /* the error message returned here could be better. */
89 #define CHECK_IMAP_ACL(aclbit) if (Context->magic == M_IMAP) \
90                 if (mutt_bit_isset (((IMAP_DATA *)Context->data)->capabilities, ACL) \
91                 && !mutt_bit_isset(((IMAP_DATA *)Context->data)->rights,aclbit)){ \
92                         mutt_flushinp(); \
93                         mutt_error ("Operation not permitted by the IMAP ACL for this mailbox"); \
94                         break; \
95                 }
96 #endif
97
98 #define CHECK_ATTACH if(option(OPTATTACHMSG)) \
99                      {\
100                         mutt_flushinp (); \
101                         mutt_error _(Function_not_permitted_in_attach_message_mode); \
102                         break; \
103                      }
104
105 #define CURHDR Context->hdrs[Context->v2r[menu->current]]
106 #define OLDHDR Context->hdrs[Context->v2r[menu->oldcurrent]]
107 #define UNREAD(h) mutt_thread_contains_unread (Context, h)
108
109 extern const char *ReleaseDate;
110 extern size_t UngetCount;
111
112 static void set_xterm_title_bar(char *title)
113 {
114   fputs("\033]2;", stdout);
115   fputs(title, stdout);
116   fputs("\007", stdout);
117   fflush(stdout);
118 }
119
120 static void set_xterm_icon_name(char *name)
121 {
122   fputs("\033]1;", stdout);
123   fputs(name, stdout);
124   fputs("\007", stdout);
125   fflush(stdout);
126 }
127
128 void index_make_entry (char *s, size_t l, MUTTMENU *menu, int num)
129 {
130   format_flag flag = M_FORMAT_MAKEPRINT | M_FORMAT_ARROWCURSOR | M_FORMAT_INDEX;
131   int edgemsgno, reverse = Sort & SORT_REVERSE;
132   HEADER *h = Context->hdrs[Context->v2r[num]];
133   THREAD *tmp;
134
135   if ((Sort & SORT_MASK) == SORT_THREADS && h->tree)
136   {
137     flag |= M_FORMAT_TREE; /* display the thread tree */
138     if (h->display_subject)
139       flag |= M_FORMAT_FORCESUBJ;
140     else
141     {
142       if (reverse)
143       {
144         if (menu->top + menu->pagelen > menu->max)
145           edgemsgno = Context->v2r[menu->max - 1];
146         else
147           edgemsgno = Context->v2r[menu->top + menu->pagelen - 1];
148       }
149       else
150         edgemsgno = Context->v2r[menu->top];
151
152       for (tmp = h->thread->parent; tmp; tmp = tmp->parent)
153       {
154         if (!tmp->message)
155           continue;
156
157         /* if no ancestor is visible on current screen, provisionally force
158          * subject... */
159         if (reverse ? tmp->message->msgno > edgemsgno : tmp->message->msgno < edgemsgno)
160         {
161           flag |= M_FORMAT_FORCESUBJ;
162           break;
163         }
164         else if (tmp->message->virtual >= 0)
165           break;
166       }
167       if (flag & M_FORMAT_FORCESUBJ)
168       {
169         for (tmp = h->thread->prev; tmp; tmp = tmp->prev)
170         {
171           if (!tmp->message)
172             continue;
173
174           /* ...but if a previous sibling is available, don't force it */
175           if (reverse ? tmp->message->msgno > edgemsgno : tmp->message->msgno < edgemsgno)
176             break;
177           else if (tmp->message->virtual >= 0)
178           {
179             flag &= ~M_FORMAT_FORCESUBJ;
180             break;
181           }
182         }
183       }
184     }
185   }
186
187   _mutt_make_string (s, l, NONULL (HdrFmt), Context, h, flag);
188 }
189
190 int index_color (int index_no)
191 {
192   HEADER *h = Context->hdrs[Context->v2r[index_no]];
193
194   if (h->pair)
195     return h->pair;
196
197   mutt_set_header_color (Context, h);
198   return h->pair;
199 }
200
201 static int ci_next_undeleted (int msgno)
202 {
203   int i;
204
205   for (i=msgno+1; i < Context->vcount; i++)
206     if (! Context->hdrs[Context->v2r[i]]->deleted)
207       return (i);
208   return (-1);
209 }
210
211 static int ci_previous_undeleted (int msgno)
212 {
213   int i;
214
215   for (i=msgno-1; i>=0; i--)
216     if (! Context->hdrs[Context->v2r[i]]->deleted)
217       return (i);
218   return (-1);
219 }
220
221 /* Return the index of the first new message, or failing that, the first
222  * unread message.
223  */
224 static int ci_first_message (void)
225 {
226   int old = -1, i;
227
228   if (Context && Context->msgcount)
229   {
230     for (i=0; i < Context->vcount; i++)
231     {
232       if (! Context->hdrs[Context->v2r[i]]->read &&
233           ! Context->hdrs[Context->v2r[i]]->deleted)
234       {
235         if (! Context->hdrs[Context->v2r[i]]->old)
236           return (i);
237         else if (old == -1)
238           old = i;
239       }
240     }
241     if (old != -1)
242       return (old);
243
244     /* If Sort is reverse and not threaded, the latest message is first.
245      * If Sort is threaded, the latest message is first iff exactly one
246      * of Sort and SortAux are reverse.
247      */
248     if (((Sort & SORT_REVERSE) && (Sort & SORT_MASK) != SORT_THREADS) ||
249         ((Sort & SORT_MASK) == SORT_THREADS &&
250          ((Sort ^ SortAux) & SORT_REVERSE)))
251       return 0;
252     else
253       return (Context->vcount ? Context->vcount - 1 : 0);
254   }
255   return 0;
256 }
257
258 /* This should be in mx.c, but it only gets used here. */
259 static int mx_toggle_write (CONTEXT *ctx)
260 {
261   if (!ctx)
262     return -1;
263
264   if (ctx->readonly)
265   {
266     mutt_error _("Cannot toggle write on a readonly mailbox!");
267     return -1;
268   }
269
270   if (ctx->dontwrite)
271   {
272     ctx->dontwrite = 0;
273     mutt_message _("Changes to folder will be written on folder exit.");
274   }
275   else
276   {
277     ctx->dontwrite = 1;
278     mutt_message _("Changes to folder will not be written.");
279   }
280
281   return 0;
282 }
283
284 static void update_index (MUTTMENU *menu, CONTEXT *ctx, int check,
285                           int oldcount, int index_hint)
286 {
287   /* store pointers to the newly added messages */
288   HEADER  **save_new = NULL;
289   int j;
290   
291   /* take note of the current message */
292   if (oldcount)
293   {
294     if (menu->current < Context->vcount)
295       menu->oldcurrent = index_hint;
296     else
297       oldcount = 0; /* invalid message number! */
298   }
299   
300   /* We are in a limited view. Check if the new message(s) satisfy
301    * the limit criteria. If they do, set their virtual msgno so that
302    * they will be visible in the limited view */
303   if (Context->pattern)
304   {
305 #define THIS_BODY Context->hdrs[j]->content
306     if (oldcount || check == M_REOPENED)
307     {
308       for (j = (check == M_REOPENED) ? 0 : oldcount; j < Context->msgcount; j++)
309       {
310         if (mutt_pattern_exec (Context->limit_pattern,
311                                M_MATCH_FULL_ADDRESS, 
312                                Context, Context->hdrs[j]))
313         {
314           Context->hdrs[j]->virtual = Context->vcount;
315           Context->v2r[Context->vcount] = j;
316           Context->hdrs[j]->limited = 1;
317           Context->vcount++;
318           Context->vsize += THIS_BODY->length + THIS_BODY->offset - THIS_BODY->hdr_offset;
319         }
320       }
321     }
322 #undef THIS_BODY
323   }
324     
325   /* save the list of new messages */
326   if (oldcount && check != M_REOPENED
327       && ((Sort & SORT_MASK) == SORT_THREADS))
328   {
329     save_new = (HEADER **) safe_malloc (sizeof (HEADER *) * (Context->msgcount - oldcount));
330     for (j = oldcount; j < Context->msgcount; j++)
331       save_new[j-oldcount] = Context->hdrs[j];
332   }
333   
334   /* if the mailbox was reopened, need to rethread from scratch */
335   mutt_sort_headers (Context, (check == M_REOPENED));
336
337   /* uncollapse threads with new mail */
338   if ((Sort & SORT_MASK) == SORT_THREADS)
339   {
340     if (check == M_REOPENED)
341     {
342       THREAD *h, *j;
343       
344       Context->collapsed = 0;
345       
346       for (h = Context->tree; h; h = h->next)
347       {
348         for (j = h; !j->message; j = j->child)
349           ;
350         mutt_uncollapse_thread (Context, j->message);
351       }
352       mutt_set_virtual (Context);
353     }
354     else if (oldcount)
355     {
356       for (j = 0; j < Context->msgcount - oldcount; j++)
357       {
358         int k;
359         
360         for (k = 0; k < Context->msgcount; k++)
361         {
362           HEADER *h = Context->hdrs[k];
363           if (h == save_new[j] && (!Context->pattern || h->limited))
364             mutt_uncollapse_thread (Context, h);
365         }
366       }
367       FREE (&save_new);
368       mutt_set_virtual (Context);
369     }
370   }
371   
372   menu->current = -1;
373   if (oldcount)
374   {
375     /* restore the current message to the message it was pointing to */
376     for (j = 0; j < Context->vcount; j++)
377     {
378       if (Context->hdrs[Context->v2r[j]]->index == menu->oldcurrent)
379       {
380         menu->current = j;
381         break;
382       }
383     }
384   }
385   
386   if (menu->current < 0)
387     menu->current = ci_first_message ();
388
389 }
390
391 static void resort_index (MUTTMENU *menu)
392 {
393   int i;
394   HEADER *current = CURHDR;
395
396   menu->current = -1;
397   mutt_sort_headers (Context, 0);
398   /* Restore the current message */
399
400   for (i = 0; i < Context->vcount; i++)
401   {
402     if (Context->hdrs[Context->v2r[i]] == current)
403     {
404       menu->current = i;
405       break;
406     }
407   }
408   
409   if ((Sort & SORT_MASK) == SORT_THREADS && menu->current < 0)
410     menu->current = mutt_parent_message (Context, current);
411   
412   if (menu->current < 0)
413     menu->current = ci_first_message ();
414   
415   menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
416 }
417
418 struct mapping_t IndexHelp[] = {
419   { N_("Quit"),  OP_QUIT },
420   { N_("Del"),   OP_DELETE },
421   { N_("Undel"), OP_UNDELETE },
422   { N_("Save"),  OP_SAVE },
423   { N_("Mail"),  OP_MAIL },
424   { N_("Reply"), OP_REPLY },
425   { N_("Group"), OP_GROUP_REPLY },
426   { N_("Help"),  OP_HELP },
427   { NULL }
428 };
429
430 #ifdef USE_NNTP
431 struct mapping_t IndexNewsHelp[] = {
432   { N_("Quit"),     OP_QUIT },
433   { N_("Del"),      OP_DELETE },
434   { N_("Undel"),    OP_UNDELETE },
435   { N_("Save"),     OP_SAVE },
436   { N_("Post"),     OP_POST },
437   { N_("Followup"), OP_FOLLOWUP },
438   { N_("Catchup"),  OP_CATCHUP },
439   { N_("Help"),     OP_HELP },
440   { NULL }
441 };
442 #endif
443
444 /* This function handles the message index window as well as commands returned
445  * from the pager (MENU_PAGER).
446  */
447 int mutt_index_menu (void)
448 {
449   char buf[LONG_STRING], helpstr[SHORT_STRING];
450   int flags;
451   int op = OP_NULL;
452   int done = 0;                /* controls when to exit the "event" loop */
453   int i = 0, j;
454   int tag = 0;                 /* has the tag-prefix command been pressed? */
455   int newcount = -1;
456   int oldcount = -1;
457   int rc = -1;
458   MUTTMENU *menu;
459   char *cp;                    /* temporary variable. */
460   int index_hint;   /* used to restore cursor position */
461   int do_buffy_notify = 1;
462   int close = 0; /* did we OP_QUIT or OP_EXIT out of this menu? */
463   int attach_msg = option(OPTATTACHMSG);
464   
465   menu = mutt_new_menu ();
466   menu->menu = MENU_MAIN;
467   menu->offset = 1;
468   menu->pagelen = LINES - 3;
469   menu->make_entry = index_make_entry;
470   menu->color = index_color;
471   menu->current = ci_first_message ();
472   menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_MAIN,
473 #ifdef USE_NNTP
474         (Context && (Context->magic == M_NNTP)) ? IndexNewsHelp :
475 #endif
476         IndexHelp);
477   
478   if (!attach_msg) 
479     mutt_buffy_check(1); /* force the buffy check after we enter the folder */
480
481   FOREVER
482   {
483     tag = 0; /* clear the tag-prefix */
484
485     menu->max = Context ? Context->vcount : 0;
486     oldcount = Context ? Context->msgcount : 0;
487
488     /* check if we need to resort the index because just about
489      * any 'op' below could do mutt_enter_command(), either here or
490      * from any new menu launched, and change $sort/$sort_aux
491      */
492     if (option (OPTNEEDRESORT) && Context && Context->msgcount)
493       resort_index (menu);
494     
495     if (option (OPTREDRAWTREE) && Context && Context->msgcount && (Sort & SORT_MASK) == SORT_THREADS)
496     {
497       mutt_draw_tree (Context);
498       menu->redraw |= REDRAW_STATUS;
499       unset_option (OPTREDRAWTREE);
500     }
501
502     if (Context && !attach_msg)
503     {
504       int check;
505       /* check for new mail in the mailbox.  If nonzero, then something has
506        * changed about the file (either we got new mail or the file was
507        * modified underneath us.)
508        */
509
510 #ifdef USE_IMAP
511       imap_allow_reopen (Context);
512 #endif
513     
514       index_hint = (Context->vcount && menu->current >= 0 && menu->current < Context->vcount) ? CURHDR->index : 0;
515
516       if ((check = mx_check_mailbox (Context, &index_hint, 0)) < 0)
517       {
518         if (!Context->path)
519         {
520           /* fatal error occurred */
521           FREE (&Context);
522           menu->redraw = REDRAW_FULL;
523         }
524
525         set_option (OPTSEARCHINVALID);
526       }
527       else if (check == M_NEW_MAIL || check == M_REOPENED || check == M_FLAGS)
528       {
529         update_index (menu, Context, check, oldcount, index_hint);
530         
531         /* notify the user of new mail */
532         if (check == M_REOPENED)
533           mutt_error _("Mailbox was externally modified.  Flags may be wrong.");
534         else if (check == M_NEW_MAIL)
535         {
536           mutt_message _("New mail in this mailbox.");
537           if (option (OPTBEEPNEW))
538             beep ();
539         } else if (check == M_FLAGS)
540           mutt_message _("Mailbox was externally modified.");
541
542         /* avoid the message being overwritten by buffy */
543         do_buffy_notify = 0;
544         
545         menu->redraw = REDRAW_FULL;
546         menu->max = Context->vcount;
547         
548         set_option (OPTSEARCHINVALID);
549       }
550     }
551
552 #ifdef USE_IMAP
553     imap_keepalive ();
554     imap_disallow_reopen (Context);
555 #endif
556
557     if (!attach_msg)
558     {
559      /* check for new mail in the incoming folders */
560      oldcount = newcount;
561      if ((newcount = mutt_buffy_check (0)) != oldcount)
562        menu->redraw |= REDRAW_STATUS;
563      if (do_buffy_notify)
564      {
565        if (mutt_buffy_notify () && option (OPTBEEPNEW))
566          beep ();
567      }
568      else
569        do_buffy_notify = 1;
570     }
571
572     if (op != -1)
573       mutt_curs_set (0);
574
575     if (menu->redraw & REDRAW_FULL)
576     {
577       menu_redraw_full (menu);
578       draw_sidebar(menu->menu);
579       mutt_show_error ();
580     }
581
582     if (menu->menu == MENU_MAIN)
583     {
584       if (Context && Context->hdrs && !(menu->current >= Context->vcount))
585       {
586         menu_check_recenter (menu);
587
588         if (menu->redraw & REDRAW_INDEX)
589         {
590           menu_redraw_index (menu);
591           menu->redraw |= REDRAW_STATUS;
592         }
593         else if (menu->redraw & (REDRAW_MOTION_RESYNCH | REDRAW_MOTION))
594           menu_redraw_motion (menu);
595         else if (menu->redraw & REDRAW_CURRENT)
596           menu_redraw_current (menu);
597       }
598
599       if (menu->redraw & REDRAW_STATUS) 
600       {
601         DrawFullLine = 1;
602         menu_status_line (buf, sizeof (buf), menu, NONULL (Status));
603         DrawFullLine = 0;
604         CLEARLINE (option (OPTSTATUSONTOP) ? 0 : LINES-2);
605         SETCOLOR (MT_COLOR_STATUS);
606         mutt_paddstr (COLS, buf);
607         SETCOLOR (MT_COLOR_NORMAL);
608         menu->redraw &= ~REDRAW_STATUS;
609         if (option(OPTXTERMSETTITLES))
610         {
611           menu_status_line (buf, sizeof (buf), menu, NONULL (XtermTitle));
612           set_xterm_title_bar(buf);
613           menu_status_line (buf, sizeof (buf), menu, NONULL (XtermIcon));
614           set_xterm_icon_name(buf);
615         }
616       }
617
618       menu->redraw = 0;
619       if (menu->current < menu->max)
620         menu->oldcurrent = menu->current;
621       else
622         menu->oldcurrent = -1;
623
624       if (option (OPTARROWCURSOR))
625         move (menu->current - menu->top + menu->offset, 2);
626       else
627         move (menu->current - menu->top + menu->offset, COLS - 1);
628       mutt_refresh ();
629
630       op = km_dokey (MENU_MAIN);
631
632       dprint(4, (debugfile, "mutt_index_menu[%d]: Got op %d\n", __LINE__, op));
633
634 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
635       if (SigWinch)
636       {
637         mutt_flushinp ();
638         mutt_resize_screen ();
639         menu->redraw = REDRAW_FULL;
640         menu->menu = MENU_MAIN;
641         SigWinch = 0;
642         menu->top = 0; /* so we scroll the right amount */
643         /*
644          * force a real complete redraw.  clrtobot() doesn't seem to be able
645          * to handle every case without this.
646          */
647         clearok(stdscr,TRUE);
648         continue;
649       }
650 #endif
651
652       if (op == -1)
653         continue; /* either user abort or timeout */
654       
655       mutt_curs_set (1);
656       
657       /* special handling for the tag-prefix function */
658       if (op == OP_TAG_PREFIX)
659       {
660         if (!Context)
661         {
662           mutt_error _("No mailbox is open.");
663           continue;
664         }
665
666         if (!Context->tagged)
667         {
668           mutt_error _("No tagged messages.");
669           continue;
670         }
671         tag = 1;
672
673         /* give visual indication that the next command is a tag- command */
674         mvaddstr (LINES - 1, 0, "tag-");
675         clrtoeol ();
676
677         /* get the real command */
678         if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX)
679         {
680           /* abort tag sequence */
681           CLEARLINE (LINES-1);
682           continue;
683         }
684       }
685       else if (option (OPTAUTOTAG) && Context && Context->tagged)
686         tag = 1;
687
688       if (op == OP_TAG_PREFIX_COND)
689       {
690         if (!Context)
691         {
692           mutt_error _("No mailbox is open.");
693           continue;
694         }
695
696         if (!Context->tagged)
697         {
698           event_t tmp;
699           while(UngetCount>0)
700           {
701             tmp=mutt_getch();
702             if(tmp.op==OP_END_COND)break;
703           }
704           mutt_message  _("Nothing to do.");
705           continue;
706         }
707         tag = 1;
708
709         /* give visual indication that the next command is a tag- command */
710         mvaddstr (LINES - 1, 0, "tag-");
711         clrtoeol ();
712
713         /* get the real command */
714         if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX)
715         {
716           /* abort tag sequence */
717           CLEARLINE (LINES-1);
718           continue;
719         }
720       }
721
722       mutt_clear_error ();
723     }
724     else
725     {
726       if (menu->current < menu->max)
727         menu->oldcurrent = menu->current;
728       else
729         menu->oldcurrent = -1;
730       
731       mutt_curs_set (1);        /* fallback from the pager */
732     }
733
734 #ifdef USE_NNTP
735     unset_option (OPTNEWS);        /* for any case */
736 #endif
737
738     switch (op)
739     {
740
741       /* ----------------------------------------------------------------------
742        * movement commands
743        */
744
745       case OP_BOTTOM_PAGE:
746         menu_bottom_page (menu);
747         break;
748       case OP_FIRST_ENTRY:
749         menu_first_entry (menu);
750         break;
751       case OP_MIDDLE_PAGE:
752         menu_middle_page (menu);
753         break;
754       case OP_HALF_UP:
755         menu_half_up (menu);
756         break;
757       case OP_HALF_DOWN:
758         menu_half_down (menu);
759         break;
760       case OP_NEXT_LINE:
761         menu_next_line (menu);
762         break;
763       case OP_PREV_LINE:
764         menu_prev_line (menu);
765         break;
766       case OP_NEXT_PAGE:
767         menu_next_page (menu);
768         break;
769       case OP_PREV_PAGE:
770         menu_prev_page (menu);
771         break;
772       case OP_LAST_ENTRY:
773         menu_last_entry (menu);
774         break;
775       case OP_TOP_PAGE:
776         menu_top_page (menu);
777         break;
778       case OP_CURRENT_TOP:
779         menu_current_top (menu);
780         break;
781       case OP_CURRENT_MIDDLE:
782         menu_current_middle (menu);
783         break;
784       case OP_CURRENT_BOTTOM:
785         menu_current_bottom (menu);
786         break;
787
788 #ifdef USE_NNTP
789       case OP_GET_MESSAGE:
790       case OP_GET_PARENT:
791         CHECK_MSGCOUNT;
792         if (Context->magic == M_NNTP)
793         {
794           HEADER *h;
795
796           if (op == OP_GET_MESSAGE)
797           {
798             buf[0] = 0;
799             if (mutt_get_field (_("Enter Message-Id: "), buf, sizeof (buf), 0) != 0
800                   || !buf[0])
801               break;
802           }
803           else
804           {
805             LIST *ref = CURHDR->env->references;
806             if (!ref)
807             {
808               mutt_error _("Article has no parent reference!");
809               break;
810             }
811             strfcpy (buf, ref->data, sizeof (buf));
812           }
813           if (!Context->id_hash)
814             Context->id_hash = mutt_make_id_hash (Context);
815           if ((h = hash_find (Context->id_hash, buf)))
816           {
817             if (h->virtual != -1)
818             {
819               menu->current = h->virtual;
820               menu->redraw = REDRAW_MOTION_RESYNCH;
821             }
822             else if (h->collapsed)
823             {
824               mutt_uncollapse_thread (Context, h);
825               mutt_set_virtual (Context);
826               menu->current = h->virtual;
827               menu->redraw = REDRAW_MOTION_RESYNCH;
828             }
829             else
830               mutt_error _("Message not visible in limited view.");
831           }
832           else
833           {
834             if (nntp_check_msgid (Context, buf) == 0)
835             {
836               h = Context->hdrs[Context->msgcount-1];
837               mutt_sort_headers (Context, 0);
838               menu->current = h->virtual;
839               menu->redraw = REDRAW_FULL;
840             }
841             else
842               mutt_error (_("Article %s not found on server"), buf); 
843           }
844         }
845         break;
846
847       case OP_GET_CHILDREN:
848       case OP_RECONSTRUCT_THREAD:
849         CHECK_MSGCOUNT;
850         if (Context->magic == M_NNTP)
851         {
852           HEADER *h;
853           int old = CURHDR->index, i;
854
855           if (!CURHDR->env->message_id)
856           {
857             mutt_error _("No Message-Id. Unable to perform operation");
858             break;
859           }
860
861           if (!Context->id_hash)
862             Context->id_hash = mutt_make_id_hash (Context);
863           strfcpy (buf, CURHDR->env->message_id, sizeof (buf));
864
865           if (op == OP_RECONSTRUCT_THREAD)
866           {
867             LIST *ref = CURHDR->env->references;
868             while (ref)
869             {
870               nntp_check_msgid (Context, ref->data);
871               /* the last msgid in References is the root message */
872               if (!ref->next)
873                 strfcpy (buf, ref->data, sizeof (buf));
874               ref = ref->next;
875             }
876           }
877           mutt_message _("Check for children of message...");
878           if (nntp_check_children (Context, buf) == 0)
879           {
880             mutt_sort_headers (Context, (op == OP_RECONSTRUCT_THREAD));
881             h = hash_find (Context->id_hash, buf);
882             /* if the root message was retrieved, move to it */
883             if (h)
884               menu->current = h->virtual;
885             else /* try to restore old position */
886               for (i = 0; i < Context->msgcount; i++)
887                 if (Context->hdrs[i]->index == old)
888                 {
889                   menu->current = Context->hdrs[i]->virtual;
890                   /* As an added courtesy, recenter the menu
891                    * with the current entry at the middle of the screen */
892                   menu_check_recenter (menu);
893                   menu_current_middle (menu);
894                 }
895           }
896           menu->redraw = REDRAW_FULL;
897           mutt_clear_error ();
898         }
899         break;
900 #endif
901
902       case OP_JUMP:
903
904         CHECK_MSGCOUNT;
905         CHECK_VISIBLE;
906         if (isdigit (LastKey)) mutt_ungetch (LastKey, 0);
907         buf[0] = 0;
908         if (mutt_get_field (_("Jump to message: "), buf, sizeof (buf), 0) != 0
909             || !buf[0])
910           break;
911
912         if (! isdigit ((unsigned char) buf[0]))
913         {
914           mutt_error _("Argument must be a message number.");
915           break;
916         }
917
918         i = atoi (buf);
919         if (i > 0 && i <= Context->msgcount)
920         {
921           for (j = i-1; j < Context->msgcount; j++)
922           {
923             if (Context->hdrs[j]->virtual != -1)
924               break;
925           }
926           if (j >= Context->msgcount)
927           {
928             for (j = i-2; j >= 0; j--)
929             {
930               if (Context->hdrs[j]->virtual != -1)
931                 break;
932             }
933           }
934
935           if (j >= 0)
936           {
937             menu->current = Context->hdrs[j]->virtual;
938             if (menu->menu == MENU_PAGER)
939             {
940               op = OP_DISPLAY_MESSAGE;
941               continue;
942             }
943             else
944             menu->redraw = REDRAW_MOTION;
945           }
946           else
947             mutt_error _("That message is not visible.");
948         }
949         else
950           mutt_error _("Invalid message number.");
951
952         break;
953
954         /* --------------------------------------------------------------------
955          * `index' specific commands
956          */
957
958       case OP_MAIN_DELETE_PATTERN:
959
960         CHECK_MSGCOUNT;
961         CHECK_VISIBLE;
962         CHECK_READONLY;
963
964 #ifdef USE_IMAP
965 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
966 #endif
967
968         CHECK_ATTACH;
969         mutt_pattern_func (M_DELETE, _("Delete messages matching: "));
970         menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
971         break;
972
973 #ifdef USE_POP
974       case OP_MAIN_FETCH_MAIL:
975
976         CHECK_ATTACH;
977         pop_fetch_mail ();
978         menu->redraw = REDRAW_FULL;
979         break;
980 #endif /* USE_POP */
981
982       case OP_HELP:
983
984         mutt_help (MENU_MAIN);
985         menu->redraw = REDRAW_FULL;
986         break;
987
988       case OP_MAIN_SHOW_LIMIT:
989         CHECK_MSGCOUNT;
990         if (!Context->pattern)
991            mutt_message _("No limit pattern is in effect.");
992         else
993         {
994            char buf[STRING];
995            /* i18n: ask for a limit to apply */
996            snprintf (buf, sizeof(buf), _("Limit: %s"),Context->pattern);
997            mutt_message ("%s", buf);
998         }
999         break;
1000
1001       case OP_MAIN_LIMIT:
1002       case OP_TOGGLE_READ:
1003
1004         CHECK_MSGCOUNT;
1005         menu->oldcurrent = (Context->vcount && menu->current >= 0 && menu->current < Context->vcount) ?
1006                 CURHDR->index : -1;
1007         if (op == OP_TOGGLE_READ)
1008         {
1009           char buf[LONG_STRING];
1010
1011           if (!Context->pattern || strncmp (Context->pattern, "!~R!~D~s", 8) != 0)
1012           {
1013             snprintf (buf, sizeof (buf), "!~R!~D~s%s",
1014                       Context->pattern ? Context->pattern : ".*");
1015             set_option (OPTHIDEREAD);
1016           }
1017           else
1018           {
1019             strfcpy (buf, Context->pattern + 8, sizeof(buf));
1020             if (!*buf || strncmp (buf, ".*", 2) == 0)
1021               snprintf (buf, sizeof(buf), "~A");
1022             unset_option (OPTHIDEREAD);
1023           }
1024           FREE (&Context->pattern);
1025           Context->pattern = safe_strdup (buf);
1026         }
1027         if ((op == OP_TOGGLE_READ && mutt_pattern_func (M_LIMIT, NULL) == 0) ||
1028             mutt_pattern_func (M_LIMIT, _("Limit to messages matching: ")) == 0)
1029         {
1030           if (menu->oldcurrent >= 0)
1031           {
1032             /* try to find what used to be the current message */
1033             menu->current = -1;
1034             for (i = 0; i < Context->vcount; i++)
1035               if (Context->hdrs[Context->v2r[i]]->index == menu->oldcurrent)
1036               {
1037                 menu->current = i;
1038                 break;
1039               }
1040             if (menu->current < 0) menu->current = 0;
1041           }
1042           else
1043             menu->current = 0;
1044           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1045           if ((Sort & SORT_MASK) == SORT_THREADS)
1046             mutt_draw_tree (Context);
1047           menu->redraw = REDRAW_FULL;
1048         }
1049         break;          
1050
1051       case OP_QUIT:
1052
1053         close = op;
1054         if (attach_msg)
1055         {
1056          done = 1;
1057          break;
1058         }
1059
1060         if (query_quadoption (OPT_QUIT, _("Quit Mutt?")) == M_YES)
1061         {
1062           int check;
1063           
1064           oldcount = Context ? Context->msgcount : 0;
1065
1066           if (!Context || (check = mx_close_mailbox (Context, &index_hint)) == 0)
1067             done = 1;
1068           else
1069           {
1070             if (check == M_NEW_MAIL || check == M_REOPENED)
1071               update_index (menu, Context, check, oldcount, index_hint);
1072
1073             menu->redraw = REDRAW_FULL; /* new mail arrived? */
1074             set_option (OPTSEARCHINVALID);
1075           }
1076         }
1077         break;
1078
1079       case OP_REDRAW:
1080
1081         clearok (stdscr, TRUE);
1082         menu->redraw = REDRAW_FULL;
1083         break;
1084
1085       case OP_SEARCH:
1086       case OP_SEARCH_REVERSE:
1087       case OP_SEARCH_NEXT:
1088       case OP_SEARCH_OPPOSITE:
1089
1090         CHECK_MSGCOUNT;
1091         CHECK_VISIBLE;
1092         if ((menu->current = mutt_search_command (menu->current, op)) == -1)
1093           menu->current = menu->oldcurrent;
1094         else
1095           menu->redraw = REDRAW_MOTION;
1096         break;
1097
1098       case OP_SORT:
1099       case OP_SORT_REVERSE:
1100
1101         if (mutt_select_sort ((op == OP_SORT_REVERSE)) == 0)
1102         {
1103           if (Context && Context->msgcount)
1104           {
1105             resort_index (menu);
1106             set_option (OPTSEARCHINVALID);
1107           }
1108         }
1109         break;
1110
1111       case OP_TAG:
1112
1113         CHECK_MSGCOUNT;
1114         CHECK_VISIBLE;
1115         if (tag && !option (OPTAUTOTAG))
1116         {
1117           for (j = 0; j < Context->vcount; j++)
1118             mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_TAG, 0);
1119           menu->redraw = REDRAW_STATUS | REDRAW_INDEX;
1120         }
1121         else
1122         {
1123           mutt_set_flag (Context, CURHDR, M_TAG, !CURHDR->tagged);
1124           Context->last_tag = CURHDR->tagged ? CURHDR :
1125             ((Context->last_tag == CURHDR && !CURHDR->tagged)
1126             ? NULL : Context->last_tag);
1127           menu->redraw = REDRAW_STATUS;
1128           if (option (OPTRESOLVE) && menu->current < Context->vcount - 1)
1129           {
1130             menu->current++;
1131             menu->redraw |= REDRAW_MOTION_RESYNCH;
1132           }
1133           else
1134             menu->redraw |= REDRAW_CURRENT;
1135         }
1136         break;
1137
1138       case OP_MAIN_TAG_PATTERN:
1139
1140         CHECK_MSGCOUNT;
1141         CHECK_VISIBLE;
1142         mutt_pattern_func (M_TAG, _("Tag messages matching: "));
1143         menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1144         break;
1145
1146       case OP_MAIN_UNDELETE_PATTERN:
1147
1148         CHECK_MSGCOUNT;
1149         CHECK_VISIBLE;
1150         CHECK_READONLY;
1151
1152 #ifdef USE_IMAP
1153 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
1154 #endif
1155
1156         if (mutt_pattern_func (M_UNDELETE, _("Undelete messages matching: ")) == 0)
1157           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1158         break;
1159
1160       case OP_MAIN_UNTAG_PATTERN:
1161
1162         CHECK_MSGCOUNT;
1163         CHECK_VISIBLE;
1164         if (mutt_pattern_func (M_UNTAG, _("Untag messages matching: ")) == 0)
1165           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1166         break;
1167
1168         /* --------------------------------------------------------------------
1169          * The following operations can be performed inside of the pager.
1170          */
1171
1172 #ifdef USE_IMAP
1173       case OP_MAIN_IMAP_FETCH:
1174         if (Context->magic == M_IMAP)
1175           imap_check_mailbox (Context, &index_hint, 1);
1176         break;
1177 #endif
1178       
1179       case OP_MAIN_SYNC_FOLDER:
1180
1181         CHECK_MSGCOUNT;
1182         CHECK_VISIBLE;
1183         CHECK_READONLY;
1184         {
1185           int oldvcount = Context->vcount;
1186           int oldcount  = Context->msgcount;
1187           int dcount = 0;
1188           int check;
1189
1190           /* calculate the number of messages _above_ the cursor,
1191            * so we can keep the cursor on the current message
1192            */ 
1193           for (j = 0; j <= menu->current; j++)
1194           {
1195             if (Context->hdrs[Context->v2r[j]]->deleted)
1196               dcount++;
1197           }
1198
1199           if ((check = mx_sync_mailbox (Context, &index_hint)) == 0)
1200           {
1201             if (Context->vcount != oldvcount)
1202               menu->current -= dcount;
1203             set_option (OPTSEARCHINVALID);
1204           }
1205           else if (check == M_NEW_MAIL || check == M_REOPENED)
1206             update_index (menu, Context, check, oldcount, index_hint);
1207
1208           /* 
1209            * do a sanity check even if mx_sync_mailbox failed.
1210            */
1211
1212           if (menu->current < 0 || menu->current >= Context->vcount)
1213             menu->current = ci_first_message ();
1214         }
1215
1216         /* check for a fatal error, or all messages deleted */
1217         if (!Context->path)
1218           FREE (&Context);
1219
1220         /* if we were in the pager, redisplay the message */
1221         if (menu->menu == MENU_PAGER)
1222         {
1223           op = OP_DISPLAY_MESSAGE;
1224           continue;
1225         }
1226         else
1227           menu->redraw = REDRAW_FULL;
1228         break;
1229
1230       case OP_SIDEBAR_OPEN:
1231       case OP_MAIN_CHANGE_FOLDER:
1232       case OP_MAIN_CHANGE_FOLDER_READONLY:
1233 #ifdef USE_NNTP
1234       case OP_MAIN_CHANGE_GROUP:
1235       case OP_MAIN_CHANGE_GROUP_READONLY:
1236 #endif
1237         if (attach_msg || option (OPTREADONLY) ||
1238 #ifdef USE_NNTP
1239             op == OP_MAIN_CHANGE_GROUP_READONLY ||
1240 #endif
1241             op == OP_MAIN_CHANGE_FOLDER_READONLY)
1242           flags = M_READONLY;
1243         else
1244           flags = 0;
1245
1246         if (flags)
1247           cp = _("Open mailbox in read-only mode");
1248         else
1249           cp = _("Open mailbox");
1250
1251         buf[0] = '\0';
1252 #ifdef USE_NNTP
1253         unset_option (OPTNEWS);
1254         if (op == OP_MAIN_CHANGE_GROUP ||
1255             op == OP_MAIN_CHANGE_GROUP_READONLY)
1256         {
1257           set_option (OPTNEWS);
1258           if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer)))
1259             break;
1260           if (flags)
1261             cp = _("Open newsgroup in read-only mode");
1262           else
1263             cp = _("Open newsgroup");
1264           nntp_buffy (buf);
1265         }
1266         else
1267 #endif
1268         mutt_buffy (buf, sizeof (buf));
1269
1270         if ( op == OP_SIDEBAR_OPEN ) {
1271           if(!CurBuffy)
1272             break;
1273           strncpy( buf, CurBuffy->path, sizeof(buf) );
1274         } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
1275           break;
1276         if (!buf[0])
1277         {
1278           CLEARLINE (LINES-1);
1279           break;
1280         }
1281
1282 #ifdef USE_NNTP
1283         if (option (OPTNEWS))
1284         {
1285           unset_option (OPTNEWS);
1286           nntp_expand_path (buf, sizeof (buf), &CurrentNewsSrv->conn->account);
1287         }
1288         else
1289 #endif
1290         mutt_expand_path (buf, sizeof (buf));
1291         set_curbuffy(buf);
1292         if (mx_get_magic (buf) <= 0)
1293         {
1294           mutt_error (_("%s is not a mailbox."), buf);
1295           break;
1296         }
1297
1298         if (Context)
1299         {
1300           int check;
1301
1302 #ifdef USE_COMPRESSED
1303           if (Context->compressinfo && Context->realpath)
1304             mutt_str_replace (&LastFolder, Context->realpath);
1305           else
1306 #endif
1307
1308           mutt_str_replace (&LastFolder, Context->path);
1309           oldcount = Context ? Context->msgcount : 0;
1310
1311           if ((check = mx_close_mailbox (Context, &index_hint)) != 0)
1312           {
1313             if (check == M_NEW_MAIL || check == M_REOPENED)
1314               update_index (menu, Context, check, oldcount, index_hint);
1315                 
1316             set_option (OPTSEARCHINVALID);
1317             menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1318             break;
1319           }
1320           FREE (&Context);
1321         }
1322
1323         mutt_sleep (0);
1324       
1325         /* Set CurrentMenu to MENU_MAIN before executing any folder
1326          * hooks so that all the index menu functions are available to
1327          * the exec command.
1328          */
1329
1330         CurrentMenu = MENU_MAIN;
1331         mutt_folder_hook (buf);
1332
1333         if ((Context = mx_open_mailbox (buf, flags, NULL)) != NULL)
1334         {
1335           menu->current = ci_first_message ();
1336         }
1337         else
1338           menu->current = 0;
1339
1340 #ifdef USE_NNTP
1341         /* mutt_buffy_check() must be done with mail-reader mode! */
1342         menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_MAIN,
1343           (Context && (Context->magic == M_NNTP)) ? IndexNewsHelp : IndexHelp);
1344 #endif
1345         mutt_clear_error ();
1346         mutt_buffy_check(1); /* force the buffy check after we have changed
1347                               the folder */
1348         menu->redraw = REDRAW_FULL;
1349         set_option (OPTSEARCHINVALID);
1350         break;
1351
1352       case OP_DISPLAY_MESSAGE:
1353       case OP_DISPLAY_HEADERS: /* don't weed the headers */
1354
1355         CHECK_MSGCOUNT;
1356         CHECK_VISIBLE;
1357         /*
1358          * toggle the weeding of headers so that a user can press the key
1359          * again while reading the message.
1360          */
1361         if (op == OP_DISPLAY_HEADERS)
1362           toggle_option (OPTWEED);
1363
1364         unset_option (OPTNEEDRESORT);
1365
1366         if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed)
1367         {
1368           mutt_uncollapse_thread (Context, CURHDR);
1369           mutt_set_virtual (Context);
1370           if (option (OPTUNCOLLAPSEJUMP))
1371             menu->current = mutt_thread_next_unread (Context, CURHDR);
1372         }
1373  
1374         if ((op = mutt_display_message (CURHDR)) == -1)
1375         {
1376           unset_option (OPTNEEDRESORT);
1377           break;
1378         }
1379
1380         menu->menu = MENU_PAGER;
1381          menu->oldcurrent = menu->current;
1382         continue;
1383
1384       case OP_EXIT:
1385
1386         close = op;
1387         if (menu->menu == MENU_MAIN && attach_msg)
1388         {
1389          done = 1;
1390          break;
1391         }
1392
1393         if ((menu->menu == MENU_MAIN)
1394             && (query_quadoption (OPT_QUIT, 
1395                                   _("Exit Mutt without saving?")) == M_YES))
1396         {
1397           if (Context)
1398           {
1399             mx_fastclose_mailbox (Context);
1400             FREE (&Context);
1401           }
1402           done = 1;
1403         }
1404         break;
1405
1406       case OP_EDIT_TYPE:
1407
1408         CHECK_MSGCOUNT;
1409         CHECK_VISIBLE;
1410         CHECK_ATTACH;
1411         mutt_edit_content_type (CURHDR, CURHDR->content, NULL);
1412         /* if we were in the pager, redisplay the message */
1413         if (menu->menu == MENU_PAGER)
1414         {
1415           op = OP_DISPLAY_MESSAGE;
1416           continue;
1417         }
1418         else
1419           menu->redraw = REDRAW_CURRENT;
1420         break;
1421
1422       case OP_MAIN_NEXT_UNDELETED:
1423
1424         CHECK_MSGCOUNT;
1425         CHECK_VISIBLE;
1426         if (menu->current >= Context->vcount - 1)
1427         {
1428           if (menu->menu == MENU_MAIN)
1429             mutt_error _("You are on the last message.");
1430           break;
1431         }
1432         if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1433         {
1434           menu->current = menu->oldcurrent;
1435           if (menu->menu == MENU_MAIN)
1436             mutt_error _("No undeleted messages.");
1437         }
1438         else if (menu->menu == MENU_PAGER)
1439         {
1440           op = OP_DISPLAY_MESSAGE;
1441           continue;
1442         }
1443         else
1444           menu->redraw = REDRAW_MOTION;
1445         break;
1446
1447       case OP_NEXT_ENTRY:
1448
1449         CHECK_MSGCOUNT;
1450         CHECK_VISIBLE;
1451         if (menu->current >= Context->vcount - 1)
1452         {
1453           if (menu->menu == MENU_MAIN)
1454             mutt_error _("You are on the last message.");
1455           break;
1456         }
1457         menu->current++;
1458         if (menu->menu == MENU_PAGER)
1459         {
1460           op = OP_DISPLAY_MESSAGE;
1461           continue;
1462         }
1463         else
1464           menu->redraw = REDRAW_MOTION;
1465         break;
1466
1467       case OP_MAIN_PREV_UNDELETED:
1468
1469         CHECK_MSGCOUNT;
1470         CHECK_VISIBLE;
1471         if (menu->current < 1)
1472         {
1473           mutt_error _("You are on the first message.");
1474           break;
1475         }
1476         if ((menu->current = ci_previous_undeleted (menu->current)) == -1)
1477         {
1478           menu->current = menu->oldcurrent;
1479           if (menu->menu == MENU_MAIN)
1480             mutt_error _("No undeleted messages.");
1481         }
1482         else if (menu->menu == MENU_PAGER)
1483         {
1484           op = OP_DISPLAY_MESSAGE;
1485           continue;
1486         }
1487         else
1488           menu->redraw = REDRAW_MOTION;
1489         break;
1490
1491       case OP_PREV_ENTRY:
1492
1493         CHECK_MSGCOUNT;
1494         CHECK_VISIBLE;
1495         if (menu->current < 1)
1496         {
1497           if (menu->menu == MENU_MAIN) mutt_error _("You are on the first message.");
1498           break;
1499         }
1500         menu->current--;
1501         if (menu->menu == MENU_PAGER)
1502         {
1503           op = OP_DISPLAY_MESSAGE;
1504           continue;
1505         }
1506         else
1507           menu->redraw = REDRAW_MOTION;
1508         break;
1509
1510       case OP_DECRYPT_COPY:
1511       case OP_DECRYPT_SAVE:
1512         if (!WithCrypto)
1513           break;   
1514         /* fall thru */
1515       case OP_COPY_MESSAGE:
1516       case OP_SAVE:
1517       case OP_DECODE_COPY:
1518       case OP_DECODE_SAVE:
1519         CHECK_MSGCOUNT;
1520         CHECK_VISIBLE;
1521         if (mutt_save_message (tag ? NULL : CURHDR,
1522                                (op == OP_DECRYPT_SAVE) ||
1523                                (op == OP_SAVE) || (op == OP_DECODE_SAVE),
1524                                (op == OP_DECODE_SAVE) || (op == OP_DECODE_COPY),
1525                                (op == OP_DECRYPT_SAVE) || (op == OP_DECRYPT_COPY) ||
1526                                0,
1527                                &menu->redraw) == 0 &&
1528              (op == OP_SAVE || op == OP_DECODE_SAVE || op == OP_DECRYPT_SAVE)
1529             )
1530         {
1531           if (tag)
1532             menu->redraw |= REDRAW_INDEX;
1533           else if (option (OPTRESOLVE))
1534           {
1535             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1536             {
1537               menu->current = menu->oldcurrent;
1538               menu->redraw |= REDRAW_CURRENT;
1539             }
1540             else
1541               menu->redraw |= REDRAW_MOTION_RESYNCH;
1542           }
1543           else
1544             menu->redraw |= REDRAW_CURRENT;
1545         }
1546         break;
1547
1548       case OP_MAIN_NEXT_NEW:
1549       case OP_MAIN_NEXT_UNREAD:
1550       case OP_MAIN_PREV_NEW:
1551       case OP_MAIN_PREV_UNREAD:
1552       case OP_MAIN_NEXT_NEW_THEN_UNREAD:
1553       case OP_MAIN_PREV_NEW_THEN_UNREAD:
1554
1555       {
1556         int first_unread = -1;
1557         int first_new    = -1;
1558         
1559         CHECK_MSGCOUNT;
1560         CHECK_VISIBLE;
1561
1562         i = menu->current;
1563         menu->current = -1;
1564         for (j = 0; j != Context->vcount; j++)
1565         {
1566 #define CURHDRi Context->hdrs[Context->v2r[i]] 
1567           if (op == OP_MAIN_NEXT_NEW || op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_NEXT_NEW_THEN_UNREAD)
1568           {
1569             i++;
1570             if (i > Context->vcount - 1)
1571             {
1572               mutt_message _("Search wrapped to top.");
1573               i = 0;
1574             }
1575           }
1576           else
1577           {
1578             i--;
1579             if (i < 0)
1580             {
1581               mutt_message _("Search wrapped to bottom.");
1582               i = Context->vcount - 1;
1583             }
1584           }
1585
1586           if (CURHDRi->collapsed && (Sort & SORT_MASK) == SORT_THREADS)
1587           {
1588             if (UNREAD (CURHDRi) && first_unread == -1)
1589               first_unread = i;
1590             if (UNREAD (CURHDRi) == 1 && first_new == -1)
1591               first_new = i;
1592           }
1593           else if ((!CURHDRi->deleted && !CURHDRi->read))
1594           {
1595             if (first_unread == -1)
1596               first_unread = i;
1597             if ((!CURHDRi->old) && first_new == -1)
1598               first_new = i;
1599           }
1600           
1601           if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD) &&
1602               first_unread != -1)
1603             break;
1604           if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1605                op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1606               && first_new != -1)
1607             break;
1608         }
1609 #undef CURHDRi
1610         if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1611              op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD) 
1612             && first_new != -1)
1613           menu->current = first_new;
1614         else if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD ||
1615                   op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1616                  && first_unread != -1)
1617           menu->current = first_unread;
1618
1619         if (menu->current == -1)
1620         {
1621           menu->current = menu->oldcurrent;
1622           mutt_error ("%s%s.", (op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW) ? _("No new messages") : _("No unread messages"),
1623                       Context->pattern ? _(" in this limited view") : "");
1624         }
1625         else if (menu->menu == MENU_PAGER)
1626         {
1627           op = OP_DISPLAY_MESSAGE;
1628           continue;
1629         }
1630         else
1631           menu->redraw = REDRAW_MOTION;
1632         break;
1633       }
1634       case OP_FLAG_MESSAGE:
1635
1636         CHECK_MSGCOUNT;
1637         CHECK_VISIBLE;
1638         CHECK_READONLY;
1639
1640 #ifdef USE_POP
1641         if (Context->magic == M_POP)
1642         {
1643           mutt_flushinp ();
1644           mutt_error _("Can't change 'important' flag on POP server.");
1645           break;
1646         }
1647 #endif
1648
1649 #ifdef USE_IMAP
1650 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
1651 #endif
1652
1653 #ifdef USE_NNTP
1654         if (Context->magic == M_NNTP)
1655         {
1656           mutt_flushinp ();
1657           mutt_error _("Can't change 'important' flag on NNTP server.");
1658           break;
1659         }
1660 #endif
1661
1662         if (tag)
1663         {
1664           for (j = 0; j < Context->vcount; j++)
1665           {
1666             if (Context->hdrs[Context->v2r[j]]->tagged)
1667               mutt_set_flag (Context, Context->hdrs[Context->v2r[j]],
1668                              M_FLAG, !Context->hdrs[Context->v2r[j]]->flagged);
1669           }
1670
1671           menu->redraw |= REDRAW_INDEX;
1672         }
1673         else
1674         {
1675           mutt_set_flag (Context, CURHDR, M_FLAG, !CURHDR->flagged);
1676           if (option (OPTRESOLVE))
1677           {
1678             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1679             {
1680               menu->current = menu->oldcurrent;
1681               menu->redraw = REDRAW_CURRENT;
1682             }
1683             else
1684               menu->redraw = REDRAW_MOTION_RESYNCH;
1685           }
1686           else
1687             menu->redraw = REDRAW_CURRENT;
1688         }
1689         menu->redraw |= REDRAW_STATUS;
1690         break;
1691
1692       case OP_TOGGLE_NEW:
1693
1694         CHECK_MSGCOUNT;
1695         CHECK_VISIBLE;
1696         CHECK_READONLY;
1697
1698 #ifdef USE_IMAP
1699 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
1700 #endif
1701
1702         if (tag)
1703         {
1704           for (j = 0; j < Context->vcount; j++)
1705           {
1706             if (Context->hdrs[Context->v2r[j]]->tagged)
1707             {
1708               if (Context->hdrs[Context->v2r[j]]->read ||
1709                   Context->hdrs[Context->v2r[j]]->old)
1710                 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_NEW, 1);
1711               else
1712                 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_READ, 1);
1713             }
1714           }
1715           menu->redraw = REDRAW_STATUS | REDRAW_INDEX;
1716         }
1717         else
1718         {
1719           if (CURHDR->read || CURHDR->old)
1720             mutt_set_flag (Context, CURHDR, M_NEW, 1);
1721           else
1722             mutt_set_flag (Context, CURHDR, M_READ, 1);
1723
1724           if (option (OPTRESOLVE))
1725           {
1726             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1727             {
1728               menu->current = menu->oldcurrent;
1729               menu->redraw = REDRAW_CURRENT;
1730             }
1731             else
1732               menu->redraw = REDRAW_MOTION_RESYNCH;
1733           }
1734           else
1735             menu->redraw = REDRAW_CURRENT;
1736           menu->redraw |= REDRAW_STATUS;
1737         }
1738         break;
1739
1740       case OP_TOGGLE_WRITE:
1741
1742         CHECK_MSGCOUNT;
1743         if (mx_toggle_write (Context) == 0)
1744           menu->redraw |= REDRAW_STATUS;
1745         break;
1746
1747       case OP_MAIN_NEXT_THREAD:
1748       case OP_MAIN_NEXT_SUBTHREAD:
1749       case OP_MAIN_PREV_THREAD:
1750       case OP_MAIN_PREV_SUBTHREAD:
1751
1752         CHECK_MSGCOUNT;
1753         CHECK_VISIBLE;
1754         switch (op)
1755         {
1756           case OP_MAIN_NEXT_THREAD:
1757             menu->current = mutt_next_thread (CURHDR);
1758             break;
1759
1760           case OP_MAIN_NEXT_SUBTHREAD:
1761             menu->current = mutt_next_subthread (CURHDR);
1762             break;
1763             
1764           case OP_MAIN_PREV_THREAD:
1765             menu->current = mutt_previous_thread (CURHDR);
1766             break;
1767
1768           case OP_MAIN_PREV_SUBTHREAD:
1769             menu->current = mutt_previous_subthread (CURHDR);
1770             break;
1771         }
1772
1773         if (menu->current < 0)
1774         {
1775           menu->current = menu->oldcurrent;
1776           if (op == OP_MAIN_NEXT_THREAD || op == OP_MAIN_NEXT_SUBTHREAD)
1777             mutt_error _("No more threads.");
1778           else
1779             mutt_error _("You are on the first thread.");
1780         }
1781         else if (menu->menu == MENU_PAGER)
1782         {
1783           op = OP_DISPLAY_MESSAGE;
1784           continue;
1785         }
1786         else
1787           menu->redraw = REDRAW_MOTION;
1788         break;
1789
1790       case OP_MAIN_PARENT_MESSAGE:
1791
1792         CHECK_MSGCOUNT;
1793         CHECK_VISIBLE;
1794
1795         if ((menu->current = mutt_parent_message (Context, CURHDR)) < 0)
1796         {
1797           menu->current = menu->oldcurrent;
1798         }
1799         else if (menu->menu == MENU_PAGER)
1800         {
1801           op = OP_DISPLAY_MESSAGE;
1802           continue;
1803         }
1804         else
1805           menu->redraw = REDRAW_MOTION;
1806         break;
1807
1808       case OP_MAIN_SET_FLAG:
1809       case OP_MAIN_CLEAR_FLAG:
1810
1811         CHECK_MSGCOUNT;
1812         CHECK_VISIBLE;
1813         CHECK_READONLY;
1814         
1815 /* #ifdef USE_IMAP
1816 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
1817 #endif */
1818
1819         if (mutt_change_flag (tag ? NULL : CURHDR, (op == OP_MAIN_SET_FLAG)) == 0)
1820         {
1821           menu->redraw = REDRAW_STATUS;
1822           if (tag)
1823             menu->redraw |= REDRAW_INDEX;
1824           else if (option (OPTRESOLVE))
1825           {
1826             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1827             {
1828               menu->current = menu->oldcurrent;
1829               menu->redraw |= REDRAW_CURRENT;
1830             }
1831             else
1832               menu->redraw |= REDRAW_MOTION_RESYNCH;
1833           }
1834           else
1835             menu->redraw |= REDRAW_CURRENT;
1836         }
1837         break;
1838
1839       case OP_MAIN_COLLAPSE_THREAD:
1840         CHECK_MSGCOUNT;
1841         CHECK_VISIBLE;
1842
1843         if ((Sort & SORT_MASK) != SORT_THREADS)
1844         {
1845           mutt_error _("Threading is not enabled.");
1846           break;
1847         }
1848       
1849         if (CURHDR->collapsed)
1850         {
1851           menu->current = mutt_uncollapse_thread (Context, CURHDR);
1852           mutt_set_virtual (Context);
1853           if (option (OPTUNCOLLAPSEJUMP))
1854             menu->current = mutt_thread_next_unread (Context, CURHDR);
1855         }
1856         else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR))
1857         {
1858           menu->current = mutt_collapse_thread (Context, CURHDR);
1859           mutt_set_virtual (Context);
1860         }
1861         else
1862         {
1863           mutt_error _("Thread contains unread messages.");
1864           break;
1865         }
1866
1867         menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1868
1869        break;
1870
1871       case OP_MAIN_COLLAPSE_ALL:
1872         CHECK_MSGCOUNT;
1873         CHECK_VISIBLE;
1874
1875         if ((Sort & SORT_MASK) != SORT_THREADS)
1876         {
1877           mutt_error _("Threading is not enabled.");
1878           break;
1879         }
1880
1881         {
1882           HEADER *h, *base;
1883           THREAD *thread, *top;
1884           int final;
1885           
1886           if (CURHDR->collapsed)
1887             final = mutt_uncollapse_thread (Context, CURHDR);
1888           else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR))
1889             final = mutt_collapse_thread (Context, CURHDR);
1890           else
1891             final = CURHDR->virtual;
1892           
1893           base = Context->hdrs[Context->v2r[final]];
1894           
1895           top = Context->tree;
1896           Context->collapsed = !Context->collapsed;
1897           while ((thread = top) != NULL)
1898           {
1899             while (!thread->message)
1900               thread = thread->child;
1901             h = thread->message;
1902
1903             if (h->collapsed != Context->collapsed)
1904             {
1905               if (h->collapsed)
1906                 mutt_uncollapse_thread (Context, h);
1907               else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (h))
1908                 mutt_collapse_thread (Context, h);
1909             }
1910             top = top->next;
1911           }
1912           
1913           mutt_set_virtual (Context);
1914           for (j = 0; j < Context->vcount; j++)
1915           {
1916             if (Context->hdrs[Context->v2r[j]]->index == base->index)
1917             {
1918               menu->current = j;
1919               break;
1920             }
1921           }
1922           
1923           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1924         }
1925         break;
1926       
1927       /* --------------------------------------------------------------------
1928        * These functions are invoked directly from the internal-pager
1929        */
1930
1931       case OP_BOUNCE_MESSAGE:
1932
1933         CHECK_ATTACH;
1934         CHECK_MSGCOUNT;
1935         CHECK_VISIBLE;
1936         ci_bounce_message (tag ? NULL : CURHDR, &menu->redraw);
1937         break;
1938
1939       case OP_CREATE_ALIAS:
1940
1941         mutt_create_alias (Context && Context->vcount ? CURHDR->env : NULL, NULL);
1942         MAYBE_REDRAW (menu->redraw);
1943         menu->redraw |= REDRAW_CURRENT;
1944         break;
1945
1946       case OP_QUERY:
1947         CHECK_ATTACH;
1948         mutt_query_menu (NULL, 0);
1949         MAYBE_REDRAW (menu->redraw);
1950         break;
1951
1952       case OP_PURGE_MESSAGE:
1953       case OP_DELETE:
1954
1955         CHECK_MSGCOUNT;
1956         CHECK_VISIBLE;
1957         CHECK_READONLY;
1958         
1959 #ifdef USE_IMAP
1960 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
1961 #endif
1962
1963         if (tag)
1964         {
1965           mutt_tag_set_flag (M_DELETE, 1);
1966           mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1);
1967           if (option (OPTDELETEUNTAG))
1968             mutt_tag_set_flag (M_TAG, 0);
1969           menu->redraw = REDRAW_INDEX;
1970         }
1971         else
1972         {
1973           mutt_set_flag (Context, CURHDR, M_DELETE, 1);
1974           mutt_set_flag (Context, CURHDR, M_PURGED,
1975                          (op != OP_PURGE_MESSAGE) ? 0 : 1);
1976           if (option (OPTDELETEUNTAG))
1977             mutt_set_flag (Context, CURHDR, M_TAG, 0);
1978           if (option (OPTRESOLVE))
1979           {
1980             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1981             {
1982               menu->current = menu->oldcurrent;
1983               menu->redraw = REDRAW_CURRENT;
1984             }
1985             else if (menu->menu == MENU_PAGER)
1986             {
1987               op = OP_DISPLAY_MESSAGE;
1988               continue;
1989             }
1990             else
1991               menu->redraw |= REDRAW_MOTION_RESYNCH;
1992           }
1993           else
1994             menu->redraw = REDRAW_CURRENT;
1995         }
1996         menu->redraw |= REDRAW_STATUS;
1997         break;
1998
1999       case OP_DELETE_THREAD:
2000       case OP_DELETE_SUBTHREAD:
2001
2002         CHECK_MSGCOUNT;
2003         CHECK_VISIBLE;
2004         CHECK_READONLY;
2005
2006 #ifdef USE_IMAP
2007 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2008 #endif
2009
2010         rc = mutt_thread_set_flag (CURHDR, M_DELETE, 1,
2011                                    op == OP_DELETE_THREAD ? 0 : 1);
2012
2013         if (rc != -1)
2014         {
2015           if (option (OPTDELETEUNTAG))
2016             mutt_thread_set_flag (CURHDR, M_TAG, 0, 
2017                                   op == OP_DELETE_THREAD ? 0 : 1);
2018           if (option (OPTRESOLVE))
2019             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
2020               menu->current = menu->oldcurrent;
2021           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2022         }
2023         break;
2024
2025 #ifdef USE_NNTP
2026       case OP_CATCHUP:
2027         if (Context && Context->magic == M_NNTP)
2028         {
2029           if (mutt_newsgroup_catchup (CurrentNewsSrv,
2030                 ((NNTP_DATA *)Context->data)->group))
2031             menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2032         }
2033         break;
2034 #endif
2035
2036       case OP_DISPLAY_ADDRESS:
2037
2038         CHECK_MSGCOUNT;
2039         CHECK_VISIBLE;
2040         mutt_display_address (CURHDR->env);
2041         break;
2042
2043       case OP_ENTER_COMMAND:
2044
2045         CurrentMenu = MENU_MAIN;
2046         mutt_enter_command ();
2047         mutt_check_rescore (Context);
2048         if (option (OPTFORCEREDRAWINDEX))
2049           menu->redraw = REDRAW_FULL;
2050         unset_option (OPTFORCEREDRAWINDEX);
2051         unset_option (OPTFORCEREDRAWPAGER);
2052         break;
2053
2054       case OP_EDIT_MESSAGE:
2055
2056         CHECK_MSGCOUNT;
2057         CHECK_VISIBLE;
2058         CHECK_READONLY;
2059         CHECK_ATTACH;
2060
2061 #ifdef USE_POP
2062         if (Context->magic == M_POP)
2063         {
2064           mutt_flushinp ();
2065           mutt_error _("Can't edit message on POP server.");
2066           break;
2067         }
2068 #endif
2069
2070 #ifdef USE_IMAP
2071 CHECK_IMAP_ACL(IMAP_ACL_INSERT);
2072 #endif
2073
2074 #ifdef USE_NNTP
2075         if (Context->magic == M_NNTP)
2076         {
2077           mutt_flushinp ();
2078           mutt_error _("Can't edit message on newsserver.");
2079           break;
2080         }
2081 #endif
2082
2083         mutt_edit_message (Context, tag ? NULL : CURHDR);
2084         menu->redraw = REDRAW_FULL;
2085
2086         break;
2087
2088       case OP_FORWARD_MESSAGE:
2089
2090         CHECK_MSGCOUNT;
2091         CHECK_VISIBLE;
2092         CHECK_ATTACH;
2093         ci_send_message (SENDFORWARD, NULL, NULL, Context, tag ? NULL : CURHDR);
2094         menu->redraw = REDRAW_FULL;
2095         break;
2096
2097
2098       case OP_FORGET_PASSPHRASE:
2099         crypt_forget_passphrase ();
2100         break;
2101
2102       case OP_GROUP_REPLY:
2103
2104         CHECK_MSGCOUNT;
2105         CHECK_VISIBLE;
2106         CHECK_ATTACH;
2107         ci_send_message (SENDREPLY|SENDGROUPREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2108         menu->redraw = REDRAW_FULL;
2109         break;
2110
2111       case OP_LIST_REPLY:
2112
2113         CHECK_ATTACH;
2114         CHECK_MSGCOUNT;
2115         CHECK_VISIBLE;
2116         ci_send_message (SENDREPLY|SENDLISTREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2117         menu->redraw = REDRAW_FULL;
2118         break;
2119
2120       case OP_MAIL:
2121
2122         CHECK_ATTACH;
2123         ci_send_message (0, NULL, NULL, Context, NULL);
2124         menu->redraw = REDRAW_FULL;
2125         break;
2126
2127       case OP_MAIL_KEY:
2128         if (!(WithCrypto & APPLICATION_PGP))
2129           break;
2130         CHECK_ATTACH;
2131         ci_send_message (SENDKEY, NULL, NULL, NULL, NULL);
2132         menu->redraw = REDRAW_FULL;
2133         break;
2134
2135       
2136       case OP_EXTRACT_KEYS:
2137         if (!WithCrypto)
2138           break;
2139         CHECK_MSGCOUNT;
2140         CHECK_VISIBLE;
2141         crypt_extract_keys_from_messages(tag ? NULL : CURHDR);
2142         menu->redraw = REDRAW_FULL;
2143         break;
2144
2145
2146       case OP_CHECK_TRADITIONAL:
2147         if (!(WithCrypto & APPLICATION_PGP))
2148           break;
2149         CHECK_MSGCOUNT; 
2150         CHECK_VISIBLE;
2151         mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2152         if (menu->menu == MENU_PAGER)
2153         {
2154           op = OP_DISPLAY_MESSAGE;
2155           continue;
2156         }
2157         break;
2158       
2159       case OP_PIPE:
2160
2161         CHECK_MSGCOUNT;
2162         CHECK_VISIBLE;
2163         mutt_pipe_message (tag ? NULL : CURHDR);
2164         MAYBE_REDRAW (menu->redraw);
2165         break;
2166
2167       case OP_PRINT:
2168
2169         CHECK_MSGCOUNT;
2170         CHECK_VISIBLE;
2171         mutt_print_message (tag ? NULL : CURHDR);
2172         break;
2173
2174       case OP_MAIN_READ_THREAD:
2175       case OP_MAIN_READ_SUBTHREAD:
2176
2177         CHECK_MSGCOUNT;
2178         CHECK_VISIBLE;
2179         CHECK_READONLY;
2180
2181 #ifdef USE_IMAP
2182 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
2183 #endif
2184
2185         rc = mutt_thread_set_flag (CURHDR, M_READ, 1,
2186                                    op == OP_MAIN_READ_THREAD ? 0 : 1);
2187
2188         if (rc != -1)
2189         {
2190           if (option (OPTRESOLVE))
2191           {
2192             if ((menu->current = (op == OP_MAIN_READ_THREAD ? 
2193                                   mutt_next_thread (CURHDR) : mutt_next_subthread (CURHDR))) == -1)
2194               menu->current = menu->oldcurrent;
2195           }
2196           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2197         }
2198         break;
2199
2200       case OP_RECALL_MESSAGE:
2201
2202         CHECK_ATTACH;
2203         ci_send_message (SENDPOSTPONED, NULL, NULL, Context, NULL);
2204         menu->redraw = REDRAW_FULL;
2205         break;
2206
2207       case OP_RESEND:
2208       
2209         CHECK_ATTACH;
2210         CHECK_MSGCOUNT;
2211         CHECK_VISIBLE;
2212       
2213         if (tag)
2214         {
2215           for (j = 0; j < Context->vcount; j++)
2216           {
2217             if (Context->hdrs[Context->v2r[j]]->tagged)
2218               mutt_resend_message (NULL, Context, Context->hdrs[Context->v2r[j]]);
2219           }
2220         }
2221         else
2222           mutt_resend_message (NULL, Context, CURHDR);
2223       
2224         menu->redraw = REDRAW_FULL;
2225         break;
2226
2227 #ifdef USE_NNTP
2228       case OP_POST:
2229       case OP_FOLLOWUP:
2230       case OP_FORWARD_TO_GROUP:
2231
2232         CHECK_ATTACH;
2233         if (op != OP_FOLLOWUP || !CURHDR->env->followup_to ||
2234             mutt_strcasecmp (CURHDR->env->followup_to, "poster") ||
2235             query_quadoption (OPT_FOLLOWUPTOPOSTER,_("Reply by mail as poster prefers?")) != M_YES)
2236         {
2237           if (Context && Context->magic == M_NNTP &&
2238               !((NNTP_DATA *)Context->data)->allowed &&
2239               query_quadoption (OPT_TOMODERATED, _("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2240             break;
2241           if (op == OP_POST)
2242             ci_send_message (SENDNEWS, NULL, NULL, Context, NULL);
2243           else
2244           {
2245             CHECK_MSGCOUNT;
2246             if (op == OP_FOLLOWUP)
2247               ci_send_message (SENDNEWS|SENDREPLY, NULL, NULL, Context,
2248                                tag ? NULL : CURHDR);
2249             else
2250               ci_send_message (SENDNEWS|SENDFORWARD, NULL, NULL, Context,
2251                                tag ? NULL : CURHDR);
2252           }
2253           menu->redraw = REDRAW_FULL;
2254           break;
2255         }
2256 #endif
2257       
2258       case OP_REPLY:
2259
2260         CHECK_ATTACH;
2261         CHECK_MSGCOUNT;
2262         CHECK_VISIBLE;
2263         ci_send_message (SENDREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2264         menu->redraw = REDRAW_FULL;
2265         break;
2266
2267       case OP_SHELL_ESCAPE:
2268
2269         mutt_shell_escape ();
2270         MAYBE_REDRAW (menu->redraw);
2271         break;
2272
2273       case OP_TAG_THREAD:
2274       case OP_TAG_SUBTHREAD:
2275
2276         CHECK_MSGCOUNT;
2277         CHECK_VISIBLE;
2278         rc = mutt_thread_set_flag (CURHDR, M_TAG, !CURHDR->tagged,
2279                                    op == OP_TAG_THREAD ? 0 : 1);
2280         
2281         if (rc != -1)
2282         {
2283           if (option (OPTRESOLVE))
2284           {
2285             menu->current = mutt_next_thread (CURHDR);
2286
2287             if (menu->current == -1)
2288               menu->current = menu->oldcurrent;
2289           }
2290           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2291         }
2292         break;
2293
2294       case OP_UNDELETE:
2295
2296         CHECK_MSGCOUNT;
2297         CHECK_VISIBLE;
2298         CHECK_READONLY;
2299
2300 #ifdef USE_IMAP
2301 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2302 #endif
2303         
2304         if (tag)
2305         {
2306           mutt_tag_set_flag (M_DELETE, 0);
2307           mutt_tag_set_flag (M_PURGED, 0);
2308           menu->redraw = REDRAW_INDEX;
2309         }
2310         else
2311         {
2312           mutt_set_flag (Context, CURHDR, M_DELETE, 0);
2313           mutt_set_flag (Context, CURHDR, M_PURGED, 0);
2314           if (option (OPTRESOLVE) && menu->current < Context->vcount - 1)
2315           {
2316             menu->current++;
2317             menu->redraw = REDRAW_MOTION_RESYNCH;
2318           }
2319           else
2320             menu->redraw = REDRAW_CURRENT;
2321         }
2322         menu->redraw |= REDRAW_STATUS;
2323         break;
2324
2325       case OP_UNDELETE_THREAD:
2326       case OP_UNDELETE_SUBTHREAD:
2327
2328         CHECK_MSGCOUNT;
2329         CHECK_VISIBLE;
2330         CHECK_READONLY;
2331
2332 #ifdef USE_IMAP
2333 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2334 #endif
2335
2336         rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0,
2337                                    op == OP_UNDELETE_THREAD ? 0 : 1)
2338           + mutt_thread_set_flag (CURHDR, M_PURGED, 0,
2339                                   op == OP_UNDELETE_THREAD ? 0 : 1);
2340
2341         if (rc > -1)
2342         {
2343           if (option (OPTRESOLVE))
2344           {
2345             if (op == OP_UNDELETE_THREAD)
2346               menu->current = mutt_next_thread (CURHDR);
2347             else
2348               menu->current = mutt_next_subthread (CURHDR);
2349
2350             if (menu->current == -1)
2351               menu->current = menu->oldcurrent;
2352           }
2353           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2354         }
2355         break;
2356
2357       case OP_VERSION:
2358         mutt_version ();
2359         break;
2360
2361       case OP_BUFFY_LIST:
2362         mutt_buffy_list ();
2363         break;
2364
2365       case OP_VIEW_ATTACHMENTS:
2366         CHECK_MSGCOUNT;
2367         CHECK_VISIBLE;
2368         mutt_view_attachments (CURHDR);
2369         if (CURHDR->attach_del)
2370           Context->changed = 1;
2371         menu->redraw = REDRAW_FULL;
2372         break;
2373
2374       case OP_END_COND:
2375         break;
2376
2377       case OP_WHAT_KEY:
2378         mutt_what_key();
2379         break;
2380
2381       case OP_SIDEBAR_SCROLL_UP:
2382       case OP_SIDEBAR_SCROLL_DOWN:
2383       case OP_SIDEBAR_NEXT:
2384       case OP_SIDEBAR_PREV:
2385         scroll_sidebar(op, menu->menu);
2386             break;
2387       default:
2388         if (menu->menu == MENU_MAIN)
2389           km_error_key (MENU_MAIN);
2390     }
2391
2392     if (menu->menu == MENU_PAGER)
2393     {
2394       menu->menu = MENU_MAIN;
2395       menu->redraw = REDRAW_FULL;
2396 #if 0
2397       set_option (OPTWEED); /* turn header weeding back on. */
2398 #endif
2399     }
2400
2401     if (done) break;
2402   }
2403
2404 #ifdef USE_IMAP
2405   /* Close all open IMAP connections */
2406   if (!attach_msg)
2407     imap_logout_all ();
2408 #endif
2409 #ifdef USE_NNTP
2410   /* Close all open NNTP connections */
2411   if (!attach_msg)
2412     nntp_logout_all ();
2413 #endif
2414
2415   mutt_menuDestroy (&menu);
2416   return (close);
2417 }
2418
2419 void mutt_set_header_color (CONTEXT *ctx, HEADER *curhdr)
2420 {
2421   COLOR_LINE *color;
2422
2423   if (!curhdr)
2424     return;
2425   
2426   for (color = ColorIndexList; color; color = color->next)
2427    if (mutt_pattern_exec (color->color_pattern, M_MATCH_FULL_ADDRESS, ctx, curhdr))
2428    {
2429       curhdr->pair = color->pair;
2430       return;
2431    }
2432   curhdr->pair = ColorDefs[MT_COLOR_NORMAL];
2433 }