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           menu->redraw = REDRAW_STATUS;
1125           if (option (OPTRESOLVE) && menu->current < Context->vcount - 1)
1126           {
1127             menu->current++;
1128             menu->redraw |= REDRAW_MOTION_RESYNCH;
1129           }
1130           else
1131             menu->redraw |= REDRAW_CURRENT;
1132         }
1133         break;
1134
1135       case OP_MAIN_TAG_PATTERN:
1136
1137         CHECK_MSGCOUNT;
1138         CHECK_VISIBLE;
1139         mutt_pattern_func (M_TAG, _("Tag messages matching: "));
1140         menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1141         break;
1142
1143       case OP_MAIN_UNDELETE_PATTERN:
1144
1145         CHECK_MSGCOUNT;
1146         CHECK_VISIBLE;
1147         CHECK_READONLY;
1148
1149 #ifdef USE_IMAP
1150 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
1151 #endif
1152
1153         if (mutt_pattern_func (M_UNDELETE, _("Undelete messages matching: ")) == 0)
1154           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1155         break;
1156
1157       case OP_MAIN_UNTAG_PATTERN:
1158
1159         CHECK_MSGCOUNT;
1160         CHECK_VISIBLE;
1161         if (mutt_pattern_func (M_UNTAG, _("Untag messages matching: ")) == 0)
1162           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1163         break;
1164
1165         /* --------------------------------------------------------------------
1166          * The following operations can be performed inside of the pager.
1167          */
1168
1169 #ifdef USE_IMAP
1170       case OP_MAIN_IMAP_FETCH:
1171         if (Context->magic == M_IMAP)
1172           imap_check_mailbox (Context, &index_hint, 1);
1173         break;
1174 #endif
1175       
1176       case OP_MAIN_SYNC_FOLDER:
1177
1178         CHECK_MSGCOUNT;
1179         CHECK_VISIBLE;
1180         CHECK_READONLY;
1181         {
1182           int oldvcount = Context->vcount;
1183           int oldcount  = Context->msgcount;
1184           int dcount = 0;
1185           int check;
1186
1187           /* calculate the number of messages _above_ the cursor,
1188            * so we can keep the cursor on the current message
1189            */ 
1190           for (j = 0; j <= menu->current; j++)
1191           {
1192             if (Context->hdrs[Context->v2r[j]]->deleted)
1193               dcount++;
1194           }
1195
1196           if ((check = mx_sync_mailbox (Context, &index_hint)) == 0)
1197           {
1198             if (Context->vcount != oldvcount)
1199               menu->current -= dcount;
1200             set_option (OPTSEARCHINVALID);
1201           }
1202           else if (check == M_NEW_MAIL || check == M_REOPENED)
1203             update_index (menu, Context, check, oldcount, index_hint);
1204
1205           /* 
1206            * do a sanity check even if mx_sync_mailbox failed.
1207            */
1208
1209           if (menu->current < 0 || menu->current >= Context->vcount)
1210             menu->current = ci_first_message ();
1211         }
1212
1213         /* check for a fatal error, or all messages deleted */
1214         if (!Context->path)
1215           FREE (&Context);
1216
1217         /* if we were in the pager, redisplay the message */
1218         if (menu->menu == MENU_PAGER)
1219         {
1220           op = OP_DISPLAY_MESSAGE;
1221           continue;
1222         }
1223         else
1224           menu->redraw = REDRAW_FULL;
1225         break;
1226
1227       case OP_SIDEBAR_OPEN:
1228       case OP_MAIN_CHANGE_FOLDER:
1229       case OP_MAIN_CHANGE_FOLDER_READONLY:
1230 #ifdef USE_NNTP
1231       case OP_MAIN_CHANGE_GROUP:
1232       case OP_MAIN_CHANGE_GROUP_READONLY:
1233 #endif
1234         if (attach_msg || option (OPTREADONLY) ||
1235 #ifdef USE_NNTP
1236             op == OP_MAIN_CHANGE_GROUP_READONLY ||
1237 #endif
1238             op == OP_MAIN_CHANGE_FOLDER_READONLY)
1239           flags = M_READONLY;
1240         else
1241           flags = 0;
1242
1243         if (flags)
1244           cp = _("Open mailbox in read-only mode");
1245         else
1246           cp = _("Open mailbox");
1247
1248         buf[0] = '\0';
1249 #ifdef USE_NNTP
1250         unset_option (OPTNEWS);
1251         if (op == OP_MAIN_CHANGE_GROUP ||
1252             op == OP_MAIN_CHANGE_GROUP_READONLY)
1253         {
1254           set_option (OPTNEWS);
1255           if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer)))
1256             break;
1257           if (flags)
1258             cp = _("Open newsgroup in read-only mode");
1259           else
1260             cp = _("Open newsgroup");
1261           nntp_buffy (buf);
1262         }
1263         else
1264 #endif
1265         mutt_buffy (buf, sizeof (buf));
1266
1267         if ( op == OP_SIDEBAR_OPEN ) {
1268           if(!CurBuffy)
1269             break;
1270           strncpy( buf, CurBuffy->path, sizeof(buf) );
1271         } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
1272           break;
1273         if (!buf[0])
1274         {
1275           CLEARLINE (LINES-1);
1276           break;
1277         }
1278
1279 #ifdef USE_NNTP
1280         if (option (OPTNEWS))
1281         {
1282           unset_option (OPTNEWS);
1283           nntp_expand_path (buf, sizeof (buf), &CurrentNewsSrv->conn->account);
1284         }
1285         else
1286 #endif
1287         mutt_expand_path (buf, sizeof (buf));
1288         set_curbuffy(buf);
1289         if (mx_get_magic (buf) <= 0)
1290         {
1291           mutt_error (_("%s is not a mailbox."), buf);
1292           break;
1293         }
1294
1295         if (Context)
1296         {
1297           int check;
1298
1299           mutt_str_replace (&LastFolder, Context->path);
1300           oldcount = Context ? Context->msgcount : 0;
1301
1302           if ((check = mx_close_mailbox (Context, &index_hint)) != 0)
1303           {
1304             if (check == M_NEW_MAIL || check == M_REOPENED)
1305               update_index (menu, Context, check, oldcount, index_hint);
1306                 
1307             set_option (OPTSEARCHINVALID);
1308             menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1309             break;
1310           }
1311           FREE (&Context);
1312         }
1313
1314         mutt_sleep (0);
1315       
1316         /* Set CurrentMenu to MENU_MAIN before executing any folder
1317          * hooks so that all the index menu functions are available to
1318          * the exec command.
1319          */
1320
1321         CurrentMenu = MENU_MAIN;
1322         mutt_folder_hook (buf);
1323
1324         if ((Context = mx_open_mailbox (buf, flags, NULL)) != NULL)
1325         {
1326           menu->current = ci_first_message ();
1327         }
1328         else
1329           menu->current = 0;
1330
1331 #ifdef USE_NNTP
1332         /* mutt_buffy_check() must be done with mail-reader mode! */
1333         menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_MAIN,
1334           (Context && (Context->magic == M_NNTP)) ? IndexNewsHelp : IndexHelp);
1335 #endif
1336         mutt_clear_error ();
1337         mutt_buffy_check(1); /* force the buffy check after we have changed
1338                               the folder */
1339         menu->redraw = REDRAW_FULL;
1340         set_option (OPTSEARCHINVALID);
1341         break;
1342
1343       case OP_DISPLAY_MESSAGE:
1344       case OP_DISPLAY_HEADERS: /* don't weed the headers */
1345
1346         CHECK_MSGCOUNT;
1347         CHECK_VISIBLE;
1348         /*
1349          * toggle the weeding of headers so that a user can press the key
1350          * again while reading the message.
1351          */
1352         if (op == OP_DISPLAY_HEADERS)
1353           toggle_option (OPTWEED);
1354
1355         unset_option (OPTNEEDRESORT);
1356
1357         if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed)
1358         {
1359           mutt_uncollapse_thread (Context, CURHDR);
1360           mutt_set_virtual (Context);
1361           if (option (OPTUNCOLLAPSEJUMP))
1362             menu->current = mutt_thread_next_unread (Context, CURHDR);
1363         }
1364  
1365         if ((op = mutt_display_message (CURHDR)) == -1)
1366         {
1367           unset_option (OPTNEEDRESORT);
1368           break;
1369         }
1370
1371         menu->menu = MENU_PAGER;
1372          menu->oldcurrent = menu->current;
1373         continue;
1374
1375       case OP_EXIT:
1376
1377         close = op;
1378         if (menu->menu == MENU_MAIN && attach_msg)
1379         {
1380          done = 1;
1381          break;
1382         }
1383
1384         if ((menu->menu == MENU_MAIN)
1385             && (query_quadoption (OPT_QUIT, 
1386                                   _("Exit Mutt without saving?")) == M_YES))
1387         {
1388           if (Context)
1389           {
1390             mx_fastclose_mailbox (Context);
1391             FREE (&Context);
1392           }
1393           done = 1;
1394         }
1395         break;
1396
1397       case OP_EDIT_TYPE:
1398
1399         CHECK_MSGCOUNT;
1400         CHECK_VISIBLE;
1401         CHECK_ATTACH;
1402         mutt_edit_content_type (CURHDR, CURHDR->content, NULL);
1403         /* if we were in the pager, redisplay the message */
1404         if (menu->menu == MENU_PAGER)
1405         {
1406           op = OP_DISPLAY_MESSAGE;
1407           continue;
1408         }
1409         else
1410           menu->redraw = REDRAW_CURRENT;
1411         break;
1412
1413       case OP_MAIN_NEXT_UNDELETED:
1414
1415         CHECK_MSGCOUNT;
1416         CHECK_VISIBLE;
1417         if (menu->current >= Context->vcount - 1)
1418         {
1419           if (menu->menu == MENU_MAIN)
1420             mutt_error _("You are on the last message.");
1421           break;
1422         }
1423         if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1424         {
1425           menu->current = menu->oldcurrent;
1426           if (menu->menu == MENU_MAIN)
1427             mutt_error _("No undeleted messages.");
1428         }
1429         else if (menu->menu == MENU_PAGER)
1430         {
1431           op = OP_DISPLAY_MESSAGE;
1432           continue;
1433         }
1434         else
1435           menu->redraw = REDRAW_MOTION;
1436         break;
1437
1438       case OP_NEXT_ENTRY:
1439
1440         CHECK_MSGCOUNT;
1441         CHECK_VISIBLE;
1442         if (menu->current >= Context->vcount - 1)
1443         {
1444           if (menu->menu == MENU_MAIN)
1445             mutt_error _("You are on the last message.");
1446           break;
1447         }
1448         menu->current++;
1449         if (menu->menu == MENU_PAGER)
1450         {
1451           op = OP_DISPLAY_MESSAGE;
1452           continue;
1453         }
1454         else
1455           menu->redraw = REDRAW_MOTION;
1456         break;
1457
1458       case OP_MAIN_PREV_UNDELETED:
1459
1460         CHECK_MSGCOUNT;
1461         CHECK_VISIBLE;
1462         if (menu->current < 1)
1463         {
1464           mutt_error _("You are on the first message.");
1465           break;
1466         }
1467         if ((menu->current = ci_previous_undeleted (menu->current)) == -1)
1468         {
1469           menu->current = menu->oldcurrent;
1470           if (menu->menu == MENU_MAIN)
1471             mutt_error _("No undeleted messages.");
1472         }
1473         else if (menu->menu == MENU_PAGER)
1474         {
1475           op = OP_DISPLAY_MESSAGE;
1476           continue;
1477         }
1478         else
1479           menu->redraw = REDRAW_MOTION;
1480         break;
1481
1482       case OP_PREV_ENTRY:
1483
1484         CHECK_MSGCOUNT;
1485         CHECK_VISIBLE;
1486         if (menu->current < 1)
1487         {
1488           if (menu->menu == MENU_MAIN) mutt_error _("You are on the first message.");
1489           break;
1490         }
1491         menu->current--;
1492         if (menu->menu == MENU_PAGER)
1493         {
1494           op = OP_DISPLAY_MESSAGE;
1495           continue;
1496         }
1497         else
1498           menu->redraw = REDRAW_MOTION;
1499         break;
1500
1501       case OP_DECRYPT_COPY:
1502       case OP_DECRYPT_SAVE:
1503         if (!WithCrypto)
1504           break;   
1505         /* fall thru */
1506       case OP_COPY_MESSAGE:
1507       case OP_SAVE:
1508       case OP_DECODE_COPY:
1509       case OP_DECODE_SAVE:
1510         CHECK_MSGCOUNT;
1511         CHECK_VISIBLE;
1512         if (mutt_save_message (tag ? NULL : CURHDR,
1513                                (op == OP_DECRYPT_SAVE) ||
1514                                (op == OP_SAVE) || (op == OP_DECODE_SAVE),
1515                                (op == OP_DECODE_SAVE) || (op == OP_DECODE_COPY),
1516                                (op == OP_DECRYPT_SAVE) || (op == OP_DECRYPT_COPY) ||
1517                                0,
1518                                &menu->redraw) == 0 &&
1519              (op == OP_SAVE || op == OP_DECODE_SAVE || op == OP_DECRYPT_SAVE)
1520             )
1521         {
1522           if (tag)
1523             menu->redraw |= REDRAW_INDEX;
1524           else if (option (OPTRESOLVE))
1525           {
1526             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1527             {
1528               menu->current = menu->oldcurrent;
1529               menu->redraw |= REDRAW_CURRENT;
1530             }
1531             else
1532               menu->redraw |= REDRAW_MOTION_RESYNCH;
1533           }
1534           else
1535             menu->redraw |= REDRAW_CURRENT;
1536         }
1537         break;
1538
1539       case OP_MAIN_NEXT_NEW:
1540       case OP_MAIN_NEXT_UNREAD:
1541       case OP_MAIN_PREV_NEW:
1542       case OP_MAIN_PREV_UNREAD:
1543       case OP_MAIN_NEXT_NEW_THEN_UNREAD:
1544       case OP_MAIN_PREV_NEW_THEN_UNREAD:
1545
1546       {
1547         int first_unread = -1;
1548         int first_new    = -1;
1549         
1550         CHECK_MSGCOUNT;
1551         CHECK_VISIBLE;
1552
1553         i = menu->current;
1554         menu->current = -1;
1555         for (j = 0; j != Context->vcount; j++)
1556         {
1557 #define CURHDRi Context->hdrs[Context->v2r[i]] 
1558           if (op == OP_MAIN_NEXT_NEW || op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_NEXT_NEW_THEN_UNREAD)
1559           {
1560             i++;
1561             if (i > Context->vcount - 1)
1562             {
1563               mutt_message _("Search wrapped to top.");
1564               i = 0;
1565             }
1566           }
1567           else
1568           {
1569             i--;
1570             if (i < 0)
1571             {
1572               mutt_message _("Search wrapped to bottom.");
1573               i = Context->vcount - 1;
1574             }
1575           }
1576
1577           if (CURHDRi->collapsed && (Sort & SORT_MASK) == SORT_THREADS)
1578           {
1579             if (UNREAD (CURHDRi) && first_unread == -1)
1580               first_unread = i;
1581             if (UNREAD (CURHDRi) == 1 && first_new == -1)
1582               first_new = i;
1583           }
1584           else if ((!CURHDRi->deleted && !CURHDRi->read))
1585           {
1586             if (first_unread == -1)
1587               first_unread = i;
1588             if ((!CURHDRi->old) && first_new == -1)
1589               first_new = i;
1590           }
1591           
1592           if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD) &&
1593               first_unread != -1)
1594             break;
1595           if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1596                op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1597               && first_new != -1)
1598             break;
1599         }
1600 #undef CURHDRi
1601         if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1602              op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD) 
1603             && first_new != -1)
1604           menu->current = first_new;
1605         else if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD ||
1606                   op == OP_MAIN_NEXT_NEW_THEN_UNREAD || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1607                  && first_unread != -1)
1608           menu->current = first_unread;
1609
1610         if (menu->current == -1)
1611         {
1612           menu->current = menu->oldcurrent;
1613           mutt_error ("%s%s.", (op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW) ? _("No new messages") : _("No unread messages"),
1614                       Context->pattern ? _(" in this limited view") : "");
1615         }
1616         else if (menu->menu == MENU_PAGER)
1617         {
1618           op = OP_DISPLAY_MESSAGE;
1619           continue;
1620         }
1621         else
1622           menu->redraw = REDRAW_MOTION;
1623         break;
1624       }
1625       case OP_FLAG_MESSAGE:
1626
1627         CHECK_MSGCOUNT;
1628         CHECK_VISIBLE;
1629         CHECK_READONLY;
1630
1631 #ifdef USE_POP
1632         if (Context->magic == M_POP)
1633         {
1634           mutt_flushinp ();
1635           mutt_error _("Can't change 'important' flag on POP server.");
1636           break;
1637         }
1638 #endif
1639
1640 #ifdef USE_IMAP
1641 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
1642 #endif
1643
1644 #ifdef USE_NNTP
1645         if (Context->magic == M_NNTP)
1646         {
1647           mutt_flushinp ();
1648           mutt_error _("Can't change 'important' flag on NNTP server.");
1649           break;
1650         }
1651 #endif
1652
1653         if (tag)
1654         {
1655           for (j = 0; j < Context->vcount; j++)
1656           {
1657             if (Context->hdrs[Context->v2r[j]]->tagged)
1658               mutt_set_flag (Context, Context->hdrs[Context->v2r[j]],
1659                              M_FLAG, !Context->hdrs[Context->v2r[j]]->flagged);
1660           }
1661
1662           menu->redraw |= REDRAW_INDEX;
1663         }
1664         else
1665         {
1666           mutt_set_flag (Context, CURHDR, M_FLAG, !CURHDR->flagged);
1667           if (option (OPTRESOLVE))
1668           {
1669             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1670             {
1671               menu->current = menu->oldcurrent;
1672               menu->redraw = REDRAW_CURRENT;
1673             }
1674             else
1675               menu->redraw = REDRAW_MOTION_RESYNCH;
1676           }
1677           else
1678             menu->redraw = REDRAW_CURRENT;
1679         }
1680         menu->redraw |= REDRAW_STATUS;
1681         break;
1682
1683       case OP_TOGGLE_NEW:
1684
1685         CHECK_MSGCOUNT;
1686         CHECK_VISIBLE;
1687         CHECK_READONLY;
1688
1689 #ifdef USE_IMAP
1690 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
1691 #endif
1692
1693         if (tag)
1694         {
1695           for (j = 0; j < Context->vcount; j++)
1696           {
1697             if (Context->hdrs[Context->v2r[j]]->tagged)
1698             {
1699               if (Context->hdrs[Context->v2r[j]]->read ||
1700                   Context->hdrs[Context->v2r[j]]->old)
1701                 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_NEW, 1);
1702               else
1703                 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_READ, 1);
1704             }
1705           }
1706           menu->redraw = REDRAW_STATUS | REDRAW_INDEX;
1707         }
1708         else
1709         {
1710           if (CURHDR->read || CURHDR->old)
1711             mutt_set_flag (Context, CURHDR, M_NEW, 1);
1712           else
1713             mutt_set_flag (Context, CURHDR, M_READ, 1);
1714
1715           if (option (OPTRESOLVE))
1716           {
1717             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1718             {
1719               menu->current = menu->oldcurrent;
1720               menu->redraw = REDRAW_CURRENT;
1721             }
1722             else
1723               menu->redraw = REDRAW_MOTION_RESYNCH;
1724           }
1725           else
1726             menu->redraw = REDRAW_CURRENT;
1727           menu->redraw |= REDRAW_STATUS;
1728         }
1729         break;
1730
1731       case OP_TOGGLE_WRITE:
1732
1733         CHECK_MSGCOUNT;
1734         if (mx_toggle_write (Context) == 0)
1735           menu->redraw |= REDRAW_STATUS;
1736         break;
1737
1738       case OP_MAIN_NEXT_THREAD:
1739       case OP_MAIN_NEXT_SUBTHREAD:
1740       case OP_MAIN_PREV_THREAD:
1741       case OP_MAIN_PREV_SUBTHREAD:
1742
1743         CHECK_MSGCOUNT;
1744         CHECK_VISIBLE;
1745         switch (op)
1746         {
1747           case OP_MAIN_NEXT_THREAD:
1748             menu->current = mutt_next_thread (CURHDR);
1749             break;
1750
1751           case OP_MAIN_NEXT_SUBTHREAD:
1752             menu->current = mutt_next_subthread (CURHDR);
1753             break;
1754             
1755           case OP_MAIN_PREV_THREAD:
1756             menu->current = mutt_previous_thread (CURHDR);
1757             break;
1758
1759           case OP_MAIN_PREV_SUBTHREAD:
1760             menu->current = mutt_previous_subthread (CURHDR);
1761             break;
1762         }
1763
1764         if (menu->current < 0)
1765         {
1766           menu->current = menu->oldcurrent;
1767           if (op == OP_MAIN_NEXT_THREAD || op == OP_MAIN_NEXT_SUBTHREAD)
1768             mutt_error _("No more threads.");
1769           else
1770             mutt_error _("You are on the first thread.");
1771         }
1772         else if (menu->menu == MENU_PAGER)
1773         {
1774           op = OP_DISPLAY_MESSAGE;
1775           continue;
1776         }
1777         else
1778           menu->redraw = REDRAW_MOTION;
1779         break;
1780
1781       case OP_MAIN_PARENT_MESSAGE:
1782
1783         CHECK_MSGCOUNT;
1784         CHECK_VISIBLE;
1785
1786         if ((menu->current = mutt_parent_message (Context, CURHDR)) < 0)
1787         {
1788           menu->current = menu->oldcurrent;
1789         }
1790         else if (menu->menu == MENU_PAGER)
1791         {
1792           op = OP_DISPLAY_MESSAGE;
1793           continue;
1794         }
1795         else
1796           menu->redraw = REDRAW_MOTION;
1797         break;
1798
1799       case OP_MAIN_SET_FLAG:
1800       case OP_MAIN_CLEAR_FLAG:
1801
1802         CHECK_MSGCOUNT;
1803         CHECK_VISIBLE;
1804         CHECK_READONLY;
1805         
1806 /* #ifdef USE_IMAP
1807 CHECK_IMAP_ACL(IMAP_ACL_WRITE);
1808 #endif */
1809
1810         if (mutt_change_flag (tag ? NULL : CURHDR, (op == OP_MAIN_SET_FLAG)) == 0)
1811         {
1812           menu->redraw = REDRAW_STATUS;
1813           if (tag)
1814             menu->redraw |= REDRAW_INDEX;
1815           else if (option (OPTRESOLVE))
1816           {
1817             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1818             {
1819               menu->current = menu->oldcurrent;
1820               menu->redraw |= REDRAW_CURRENT;
1821             }
1822             else
1823               menu->redraw |= REDRAW_MOTION_RESYNCH;
1824           }
1825           else
1826             menu->redraw |= REDRAW_CURRENT;
1827         }
1828         break;
1829
1830       case OP_MAIN_COLLAPSE_THREAD:
1831         CHECK_MSGCOUNT;
1832         CHECK_VISIBLE;
1833
1834         if ((Sort & SORT_MASK) != SORT_THREADS)
1835         {
1836           mutt_error _("Threading is not enabled.");
1837           break;
1838         }
1839       
1840         if (CURHDR->collapsed)
1841         {
1842           menu->current = mutt_uncollapse_thread (Context, CURHDR);
1843           mutt_set_virtual (Context);
1844           if (option (OPTUNCOLLAPSEJUMP))
1845             menu->current = mutt_thread_next_unread (Context, CURHDR);
1846         }
1847         else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR))
1848         {
1849           menu->current = mutt_collapse_thread (Context, CURHDR);
1850           mutt_set_virtual (Context);
1851         }
1852         else
1853         {
1854           mutt_error _("Thread contains unread messages.");
1855           break;
1856         }
1857
1858         menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1859
1860        break;
1861
1862       case OP_MAIN_COLLAPSE_ALL:
1863         CHECK_MSGCOUNT;
1864         CHECK_VISIBLE;
1865
1866         if ((Sort & SORT_MASK) != SORT_THREADS)
1867         {
1868           mutt_error _("Threading is not enabled.");
1869           break;
1870         }
1871
1872         {
1873           HEADER *h, *base;
1874           THREAD *thread, *top;
1875           int final;
1876           
1877           if (CURHDR->collapsed)
1878             final = mutt_uncollapse_thread (Context, CURHDR);
1879           else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR))
1880             final = mutt_collapse_thread (Context, CURHDR);
1881           else
1882             final = CURHDR->virtual;
1883           
1884           base = Context->hdrs[Context->v2r[final]];
1885           
1886           top = Context->tree;
1887           Context->collapsed = !Context->collapsed;
1888           while ((thread = top) != NULL)
1889           {
1890             while (!thread->message)
1891               thread = thread->child;
1892             h = thread->message;
1893
1894             if (h->collapsed != Context->collapsed)
1895             {
1896               if (h->collapsed)
1897                 mutt_uncollapse_thread (Context, h);
1898               else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (h))
1899                 mutt_collapse_thread (Context, h);
1900             }
1901             top = top->next;
1902           }
1903           
1904           mutt_set_virtual (Context);
1905           for (j = 0; j < Context->vcount; j++)
1906           {
1907             if (Context->hdrs[Context->v2r[j]]->index == base->index)
1908             {
1909               menu->current = j;
1910               break;
1911             }
1912           }
1913           
1914           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1915         }
1916         break;
1917       
1918       /* --------------------------------------------------------------------
1919        * These functions are invoked directly from the internal-pager
1920        */
1921
1922       case OP_BOUNCE_MESSAGE:
1923
1924         CHECK_ATTACH;
1925         CHECK_MSGCOUNT;
1926         CHECK_VISIBLE;
1927         ci_bounce_message (tag ? NULL : CURHDR, &menu->redraw);
1928         break;
1929
1930       case OP_CREATE_ALIAS:
1931
1932         mutt_create_alias (Context && Context->vcount ? CURHDR->env : NULL, NULL);
1933         MAYBE_REDRAW (menu->redraw);
1934         menu->redraw |= REDRAW_CURRENT;
1935         break;
1936
1937       case OP_QUERY:
1938         CHECK_ATTACH;
1939         mutt_query_menu (NULL, 0);
1940         MAYBE_REDRAW (menu->redraw);
1941         break;
1942
1943       case OP_PURGE_MESSAGE:
1944       case OP_DELETE:
1945
1946         CHECK_MSGCOUNT;
1947         CHECK_VISIBLE;
1948         CHECK_READONLY;
1949         
1950 #ifdef USE_IMAP
1951 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
1952 #endif
1953
1954         if (tag)
1955         {
1956           mutt_tag_set_flag (M_DELETE, 1);
1957           mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1);
1958           if (option (OPTDELETEUNTAG))
1959             mutt_tag_set_flag (M_TAG, 0);
1960           menu->redraw = REDRAW_INDEX;
1961         }
1962         else
1963         {
1964           mutt_set_flag (Context, CURHDR, M_DELETE, 1);
1965           mutt_set_flag (Context, CURHDR, M_PURGED,
1966                          (op != OP_PURGE_MESSAGE) ? 0 : 1);
1967           if (option (OPTDELETEUNTAG))
1968             mutt_set_flag (Context, CURHDR, M_TAG, 0);
1969           if (option (OPTRESOLVE))
1970           {
1971             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1972             {
1973               menu->current = menu->oldcurrent;
1974               menu->redraw = REDRAW_CURRENT;
1975             }
1976             else if (menu->menu == MENU_PAGER)
1977             {
1978               op = OP_DISPLAY_MESSAGE;
1979               continue;
1980             }
1981             else
1982               menu->redraw |= REDRAW_MOTION_RESYNCH;
1983           }
1984           else
1985             menu->redraw = REDRAW_CURRENT;
1986         }
1987         menu->redraw |= REDRAW_STATUS;
1988         break;
1989
1990       case OP_DELETE_THREAD:
1991       case OP_DELETE_SUBTHREAD:
1992
1993         CHECK_MSGCOUNT;
1994         CHECK_VISIBLE;
1995         CHECK_READONLY;
1996
1997 #ifdef USE_IMAP
1998 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
1999 #endif
2000
2001         rc = mutt_thread_set_flag (CURHDR, M_DELETE, 1,
2002                                    op == OP_DELETE_THREAD ? 0 : 1);
2003
2004         if (rc != -1)
2005         {
2006           if (option (OPTDELETEUNTAG))
2007             mutt_thread_set_flag (CURHDR, M_TAG, 0, 
2008                                   op == OP_DELETE_THREAD ? 0 : 1);
2009           if (option (OPTRESOLVE))
2010             if ((menu->current = ci_next_undeleted (menu->current)) == -1)
2011               menu->current = menu->oldcurrent;
2012           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2013         }
2014         break;
2015
2016 #ifdef USE_NNTP
2017       case OP_CATCHUP:
2018         if (Context && Context->magic == M_NNTP)
2019         {
2020           if (mutt_newsgroup_catchup (CurrentNewsSrv,
2021                 ((NNTP_DATA *)Context->data)->group))
2022             menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2023         }
2024         break;
2025 #endif
2026
2027       case OP_DISPLAY_ADDRESS:
2028
2029         CHECK_MSGCOUNT;
2030         CHECK_VISIBLE;
2031         mutt_display_address (CURHDR->env);
2032         break;
2033
2034       case OP_ENTER_COMMAND:
2035
2036         CurrentMenu = MENU_MAIN;
2037         mutt_enter_command ();
2038         mutt_check_rescore (Context);
2039         if (option (OPTFORCEREDRAWINDEX))
2040           menu->redraw = REDRAW_FULL;
2041         unset_option (OPTFORCEREDRAWINDEX);
2042         unset_option (OPTFORCEREDRAWPAGER);
2043         break;
2044
2045       case OP_EDIT_MESSAGE:
2046
2047         CHECK_MSGCOUNT;
2048         CHECK_VISIBLE;
2049         CHECK_READONLY;
2050         CHECK_ATTACH;
2051
2052 #ifdef USE_POP
2053         if (Context->magic == M_POP)
2054         {
2055           mutt_flushinp ();
2056           mutt_error _("Can't edit message on POP server.");
2057           break;
2058         }
2059 #endif
2060
2061 #ifdef USE_IMAP
2062 CHECK_IMAP_ACL(IMAP_ACL_INSERT);
2063 #endif
2064
2065 #ifdef USE_NNTP
2066         if (Context->magic == M_NNTP)
2067         {
2068           mutt_flushinp ();
2069           mutt_error _("Can't edit message on newsserver.");
2070           break;
2071         }
2072 #endif
2073
2074         mutt_edit_message (Context, tag ? NULL : CURHDR);
2075         menu->redraw = REDRAW_FULL;
2076
2077         break;
2078
2079       case OP_FORWARD_MESSAGE:
2080
2081         CHECK_MSGCOUNT;
2082         CHECK_VISIBLE;
2083         CHECK_ATTACH;
2084         ci_send_message (SENDFORWARD, NULL, NULL, Context, tag ? NULL : CURHDR);
2085         menu->redraw = REDRAW_FULL;
2086         break;
2087
2088
2089       case OP_FORGET_PASSPHRASE:
2090         crypt_forget_passphrase ();
2091         break;
2092
2093       case OP_GROUP_REPLY:
2094
2095         CHECK_MSGCOUNT;
2096         CHECK_VISIBLE;
2097         CHECK_ATTACH;
2098         ci_send_message (SENDREPLY|SENDGROUPREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2099         menu->redraw = REDRAW_FULL;
2100         break;
2101
2102       case OP_LIST_REPLY:
2103
2104         CHECK_ATTACH;
2105         CHECK_MSGCOUNT;
2106         CHECK_VISIBLE;
2107         ci_send_message (SENDREPLY|SENDLISTREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2108         menu->redraw = REDRAW_FULL;
2109         break;
2110
2111       case OP_MAIL:
2112
2113         CHECK_ATTACH;
2114         ci_send_message (0, NULL, NULL, Context, NULL);
2115         menu->redraw = REDRAW_FULL;
2116         break;
2117
2118       case OP_MAIL_KEY:
2119         if (!(WithCrypto & APPLICATION_PGP))
2120           break;
2121         CHECK_ATTACH;
2122         ci_send_message (SENDKEY, NULL, NULL, NULL, NULL);
2123         menu->redraw = REDRAW_FULL;
2124         break;
2125
2126       
2127       case OP_EXTRACT_KEYS:
2128         if (!WithCrypto)
2129           break;
2130         CHECK_MSGCOUNT;
2131         CHECK_VISIBLE;
2132         crypt_extract_keys_from_messages(tag ? NULL : CURHDR);
2133         menu->redraw = REDRAW_FULL;
2134         break;
2135
2136
2137       case OP_CHECK_TRADITIONAL:
2138         if (!(WithCrypto & APPLICATION_PGP))
2139           break;
2140         CHECK_MSGCOUNT; 
2141         CHECK_VISIBLE;
2142         mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2143         if (menu->menu == MENU_PAGER)
2144         {
2145           op = OP_DISPLAY_MESSAGE;
2146           continue;
2147         }
2148         break;
2149       
2150       case OP_PIPE:
2151
2152         CHECK_MSGCOUNT;
2153         CHECK_VISIBLE;
2154         mutt_pipe_message (tag ? NULL : CURHDR);
2155         MAYBE_REDRAW (menu->redraw);
2156         break;
2157
2158       case OP_PRINT:
2159
2160         CHECK_MSGCOUNT;
2161         CHECK_VISIBLE;
2162         mutt_print_message (tag ? NULL : CURHDR);
2163         break;
2164
2165       case OP_MAIN_READ_THREAD:
2166       case OP_MAIN_READ_SUBTHREAD:
2167
2168         CHECK_MSGCOUNT;
2169         CHECK_VISIBLE;
2170         CHECK_READONLY;
2171
2172 #ifdef USE_IMAP
2173 CHECK_IMAP_ACL(IMAP_ACL_SEEN);
2174 #endif
2175
2176         rc = mutt_thread_set_flag (CURHDR, M_READ, 1,
2177                                    op == OP_MAIN_READ_THREAD ? 0 : 1);
2178
2179         if (rc != -1)
2180         {
2181           if (option (OPTRESOLVE))
2182           {
2183             if ((menu->current = (op == OP_MAIN_READ_THREAD ? 
2184                                   mutt_next_thread (CURHDR) : mutt_next_subthread (CURHDR))) == -1)
2185               menu->current = menu->oldcurrent;
2186           }
2187           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2188         }
2189         break;
2190
2191       case OP_RECALL_MESSAGE:
2192
2193         CHECK_ATTACH;
2194         ci_send_message (SENDPOSTPONED, NULL, NULL, Context, NULL);
2195         menu->redraw = REDRAW_FULL;
2196         break;
2197
2198       case OP_RESEND:
2199       
2200         CHECK_ATTACH;
2201         CHECK_MSGCOUNT;
2202         CHECK_VISIBLE;
2203       
2204         if (tag)
2205         {
2206           for (j = 0; j < Context->vcount; j++)
2207           {
2208             if (Context->hdrs[Context->v2r[j]]->tagged)
2209               mutt_resend_message (NULL, Context, Context->hdrs[Context->v2r[j]]);
2210           }
2211         }
2212         else
2213           mutt_resend_message (NULL, Context, CURHDR);
2214       
2215         menu->redraw = REDRAW_FULL;
2216         break;
2217
2218 #ifdef USE_NNTP
2219       case OP_POST:
2220       case OP_FOLLOWUP:
2221       case OP_FORWARD_TO_GROUP:
2222
2223         CHECK_ATTACH;
2224         if (op != OP_FOLLOWUP || !CURHDR->env->followup_to ||
2225             mutt_strcasecmp (CURHDR->env->followup_to, "poster") ||
2226             query_quadoption (OPT_FOLLOWUPTOPOSTER,_("Reply by mail as poster prefers?")) != M_YES)
2227         {
2228           if (Context && Context->magic == M_NNTP &&
2229               !((NNTP_DATA *)Context->data)->allowed &&
2230               query_quadoption (OPT_TOMODERATED, _("Posting to this group not allowed, may be moderated. Continue?")) != M_YES)
2231             break;
2232           if (op == OP_POST)
2233             ci_send_message (SENDNEWS, NULL, NULL, Context, NULL);
2234           else
2235           {
2236             CHECK_MSGCOUNT;
2237             if (op == OP_FOLLOWUP)
2238               ci_send_message (SENDNEWS|SENDREPLY, NULL, NULL, Context,
2239                                tag ? NULL : CURHDR);
2240             else
2241               ci_send_message (SENDNEWS|SENDFORWARD, NULL, NULL, Context,
2242                                tag ? NULL : CURHDR);
2243           }
2244           menu->redraw = REDRAW_FULL;
2245           break;
2246         }
2247 #endif
2248       
2249       case OP_REPLY:
2250
2251         CHECK_ATTACH;
2252         CHECK_MSGCOUNT;
2253         CHECK_VISIBLE;
2254         ci_send_message (SENDREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2255         menu->redraw = REDRAW_FULL;
2256         break;
2257
2258       case OP_SHELL_ESCAPE:
2259
2260         mutt_shell_escape ();
2261         MAYBE_REDRAW (menu->redraw);
2262         break;
2263
2264       case OP_TAG_THREAD:
2265       case OP_TAG_SUBTHREAD:
2266
2267         CHECK_MSGCOUNT;
2268         CHECK_VISIBLE;
2269         rc = mutt_thread_set_flag (CURHDR, M_TAG, !CURHDR->tagged,
2270                                    op == OP_TAG_THREAD ? 0 : 1);
2271         
2272         if (rc != -1)
2273         {
2274           if (option (OPTRESOLVE))
2275           {
2276             menu->current = mutt_next_thread (CURHDR);
2277
2278             if (menu->current == -1)
2279               menu->current = menu->oldcurrent;
2280           }
2281           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2282         }
2283         break;
2284
2285       case OP_UNDELETE:
2286
2287         CHECK_MSGCOUNT;
2288         CHECK_VISIBLE;
2289         CHECK_READONLY;
2290
2291 #ifdef USE_IMAP
2292 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2293 #endif
2294         
2295         if (tag)
2296         {
2297           mutt_tag_set_flag (M_DELETE, 0);
2298           mutt_tag_set_flag (M_PURGED, 0);
2299           menu->redraw = REDRAW_INDEX;
2300         }
2301         else
2302         {
2303           mutt_set_flag (Context, CURHDR, M_DELETE, 0);
2304           mutt_set_flag (Context, CURHDR, M_PURGED, 0);
2305           if (option (OPTRESOLVE) && menu->current < Context->vcount - 1)
2306           {
2307             menu->current++;
2308             menu->redraw = REDRAW_MOTION_RESYNCH;
2309           }
2310           else
2311             menu->redraw = REDRAW_CURRENT;
2312         }
2313         menu->redraw |= REDRAW_STATUS;
2314         break;
2315
2316       case OP_UNDELETE_THREAD:
2317       case OP_UNDELETE_SUBTHREAD:
2318
2319         CHECK_MSGCOUNT;
2320         CHECK_VISIBLE;
2321         CHECK_READONLY;
2322
2323 #ifdef USE_IMAP
2324 CHECK_IMAP_ACL(IMAP_ACL_DELETE);
2325 #endif
2326
2327         rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0,
2328                                    op == OP_UNDELETE_THREAD ? 0 : 1)
2329           + mutt_thread_set_flag (CURHDR, M_PURGED, 0,
2330                                   op == OP_UNDELETE_THREAD ? 0 : 1);
2331
2332         if (rc > -1)
2333         {
2334           if (option (OPTRESOLVE))
2335           {
2336             if (op == OP_UNDELETE_THREAD)
2337               menu->current = mutt_next_thread (CURHDR);
2338             else
2339               menu->current = mutt_next_subthread (CURHDR);
2340
2341             if (menu->current == -1)
2342               menu->current = menu->oldcurrent;
2343           }
2344           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2345         }
2346         break;
2347
2348       case OP_VERSION:
2349         mutt_version ();
2350         break;
2351
2352       case OP_BUFFY_LIST:
2353         mutt_buffy_list ();
2354         break;
2355
2356       case OP_VIEW_ATTACHMENTS:
2357         CHECK_MSGCOUNT;
2358         CHECK_VISIBLE;
2359         mutt_view_attachments (CURHDR);
2360         if (CURHDR->attach_del)
2361           Context->changed = 1;
2362         menu->redraw = REDRAW_FULL;
2363         break;
2364
2365       case OP_END_COND:
2366         break;
2367
2368       case OP_WHAT_KEY:
2369         mutt_what_key();
2370         break;
2371
2372       case OP_SIDEBAR_SCROLL_UP:
2373       case OP_SIDEBAR_SCROLL_DOWN:
2374       case OP_SIDEBAR_NEXT:
2375       case OP_SIDEBAR_PREV:
2376         scroll_sidebar(op, menu->menu);
2377             break;
2378       default:
2379         if (menu->menu == MENU_MAIN)
2380           km_error_key (MENU_MAIN);
2381     }
2382
2383     if (menu->menu == MENU_PAGER)
2384     {
2385       menu->menu = MENU_MAIN;
2386       menu->redraw = REDRAW_FULL;
2387 #if 0
2388       set_option (OPTWEED); /* turn header weeding back on. */
2389 #endif
2390     }
2391
2392     if (done) break;
2393   }
2394
2395 #ifdef USE_IMAP
2396   /* Close all open IMAP connections */
2397   if (!attach_msg)
2398     imap_logout_all ();
2399 #endif
2400 #ifdef USE_NNTP
2401   /* Close all open NNTP connections */
2402   if (!attach_msg)
2403     nntp_logout_all ();
2404 #endif
2405
2406   mutt_menuDestroy (&menu);
2407   return (close);
2408 }
2409
2410 void mutt_set_header_color (CONTEXT *ctx, HEADER *curhdr)
2411 {
2412   COLOR_LINE *color;
2413
2414   if (!curhdr)
2415     return;
2416   
2417   for (color = ColorIndexList; color; color = color->next)
2418    if (mutt_pattern_exec (color->color_pattern, M_MATCH_FULL_ADDRESS, ctx, curhdr))
2419    {
2420       curhdr->pair = color->pair;
2421       return;
2422    }
2423   curhdr->pair = ColorDefs[MT_COLOR_NORMAL];
2424 }