2 * Copyright notice from original mutt:
3 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
5 * Parts were written/modified by:
6 * Nico Golde <nico@ngolde.de>
8 * This file is part of mutt-ng, see http://www.muttng.org/.
9 * It's licensed under the GNU General Public License,
10 * please see the file GPL in the top level source directory.
13 #include <lib-lib/lib-lib.h>
15 #include <lib-ui/sidebar.h>
16 #include <lib-mx/mx.h>
17 #include <lib-crypt/crypt.h>
27 #include "recvattach.h"
31 #include <imap/imap_private.h>
34 #include <nntp/nntp.h>
38 #include "mutt_sasl.h"
41 static const char *No_mailbox_is_open = N_("No mailbox is open.");
42 static const char *There_are_no_messages = N_("There are no messages.");
43 static const char *Mailbox_is_read_only = N_("Mailbox is read-only.");
44 static const char *Function_not_permitted_in_attach_message_mode =
45 N_("Function not permitted in attach-message mode.");
46 static const char *No_visible = N_("No visible messages.");
48 #define CHECK_IN_MAILBOX if (!Context) \
51 mutt_error (_(No_mailbox_is_open)); \
55 #define CHECK_MSGCOUNT if (!Context) \
58 mutt_error(_(No_mailbox_is_open)); \
61 else if (!Context->msgcount) \
64 mutt_error(_(There_are_no_messages)); \
68 #define CHECK_VISIBLE if (Context && menu->current >= Context->vcount) \
71 mutt_error(_(No_visible)); \
76 #define CHECK_READONLY if (Context->readonly) \
79 mutt_error(_(Mailbox_is_read_only)); \
83 #define CHECK_ATTACH if(option(OPTATTACHMSG)) \
86 mutt_error(_(Function_not_permitted_in_attach_message_mode)); \
90 #define CURHDR Context->hdrs[Context->v2r[menu->current]]
91 #define OLDHDR Context->hdrs[Context->v2r[menu->oldcurrent]]
92 #define UNREAD(h) mutt_thread_contains_unread (Context, h)
93 #define SW (option(OPTMBOXPANE)?SidebarWidth:0)
95 extern size_t UngetCount;
97 void index_make_entry (char *s, ssize_t l, struct menu_t * menu, int num)
100 M_FORMAT_MAKEPRINT | M_FORMAT_ARROWCURSOR | M_FORMAT_INDEX;
101 int edgemsgno, reverse = Sort & SORT_REVERSE;
102 HEADER *h = Context->hdrs[Context->v2r[num]];
105 if ((Sort & SORT_MASK) == SORT_THREADS && h->tree) {
106 flag |= M_FORMAT_TREE; /* display the thread tree */
107 if (h->display_subject)
108 flag |= M_FORMAT_FORCESUBJ;
111 if (menu->top + menu->pagelen > menu->max)
112 edgemsgno = Context->v2r[menu->max - 1];
114 edgemsgno = Context->v2r[menu->top + menu->pagelen - 1];
117 edgemsgno = Context->v2r[menu->top];
119 for (tmp = h->thread->parent; tmp; tmp = tmp->parent) {
123 /* if no ancestor is visible on current screen, provisionally force
125 if (reverse ? tmp->message->msgno > edgemsgno : tmp->message->msgno <
127 flag |= M_FORMAT_FORCESUBJ;
130 else if (tmp->message->virtual >= 0)
133 if (flag & M_FORMAT_FORCESUBJ) {
134 for (tmp = h->thread->prev; tmp; tmp = tmp->prev) {
138 /* ...but if a previous sibling is available, don't force it */
139 if (reverse ? tmp->message->msgno >
140 edgemsgno : tmp->message->msgno < edgemsgno)
142 else if (tmp->message->virtual >= 0) {
143 flag &= ~M_FORMAT_FORCESUBJ;
151 _mutt_make_string (s, l, NONULL (HdrFmt), Context, h, flag);
154 int index_color (int index_no)
156 HEADER *h = Context->hdrs[Context->v2r[index_no]];
161 mutt_set_header_color (Context, h);
165 static int ci_next_undeleted (int msgno)
169 for (i = msgno + 1; i < Context->vcount; i++)
170 if (!Context->hdrs[Context->v2r[i]]->deleted)
175 static int ci_previous_undeleted (int msgno)
179 for (i = msgno - 1; i >= 0; i--)
180 if (!Context->hdrs[Context->v2r[i]]->deleted)
185 /* Return the index of the first new message, or failing that, the first
188 static int ci_first_message (void)
192 if (Context && Context->msgcount) {
193 for (i = 0; i < Context->vcount; i++) {
194 if (!Context->hdrs[Context->v2r[i]]->read &&
195 !Context->hdrs[Context->v2r[i]]->deleted) {
196 if (!Context->hdrs[Context->v2r[i]]->old)
205 /* If Sort is reverse and not threaded, the latest message is first.
206 * If Sort is threaded, the latest message is first iff exactly one
207 * of Sort and SortAux are reverse.
209 if (((Sort & SORT_REVERSE) && (Sort & SORT_MASK) != SORT_THREADS) ||
210 ((Sort & SORT_MASK) == SORT_THREADS &&
211 ((Sort ^ SortAux) & SORT_REVERSE)))
214 return (Context->vcount ? Context->vcount - 1 : 0);
219 /* This should be in mx.c, but it only gets used here. */
220 static int mx_toggle_write (CONTEXT * ctx)
226 mutt_error (_("Cannot toggle write on a readonly mailbox!"));
231 if (ctx->dontwrite) {
233 mutt_message (_("Changes to folder will be written on folder exit."));
237 mutt_message (_("Changes to folder will not be written."));
243 static void update_index (MUTTMENU * menu, CONTEXT * ctx __attribute__ ((unused)), int check,
244 int oldcount, int index_hint)
246 /* store pointers to the newly added messages */
247 HEADER **save_new = NULL;
250 /* take note of the current message */
252 if (menu->current < Context->vcount)
253 menu->oldcurrent = index_hint;
255 oldcount = 0; /* invalid message number! */
258 /* We are in a limited view. Check if the new message(s) satisfy
259 * the limit criteria. If they do, set their virtual msgno so that
260 * they will be visible in the limited view */
261 if (Context->pattern) {
262 #define THIS_BODY Context->hdrs[j]->content
263 for (j = (check == M_REOPENED) ? 0 : oldcount; j < Context->msgcount; j++) {
264 if (mutt_pattern_exec
265 (Context->limit_pattern, M_MATCH_FULL_ADDRESS, Context,
267 Context->hdrs[j]->virtual = Context->vcount;
268 Context->v2r[Context->vcount] = j;
269 Context->hdrs[j]->limited = 1;
272 THIS_BODY->length + THIS_BODY->offset - THIS_BODY->hdr_offset;
278 /* save the list of new messages */
279 if (oldcount && check != M_REOPENED && ((Sort & SORT_MASK) == SORT_THREADS)) {
280 save_new = p_new(HEADER*, Context->msgcount - oldcount);
281 for (j = oldcount; j < Context->msgcount; j++)
282 save_new[j - oldcount] = Context->hdrs[j];
285 /* if the mailbox was reopened, need to rethread from scratch */
286 mutt_sort_headers (Context, (check == M_REOPENED));
288 /* uncollapse threads with new mail */
289 if ((Sort & SORT_MASK) == SORT_THREADS) {
290 if (check == M_REOPENED) {
293 Context->collapsed = 0;
295 for (h = Context->tree; h; h = h->next) {
296 for (c = h; !c->message; c = c->child);
297 mutt_uncollapse_thread (Context, c->message);
299 mutt_set_virtual (Context);
302 for (j = 0; j < Context->msgcount - oldcount; j++) {
305 for (k = 0; k < Context->msgcount; k++) {
306 HEADER *h = Context->hdrs[k];
308 if (h == save_new[j] && (!Context->pattern || h->limited))
309 mutt_uncollapse_thread (Context, h);
313 mutt_set_virtual (Context);
319 /* restore the current message to the message it was pointing to */
320 for (j = 0; j < Context->vcount; j++) {
321 if (Context->hdrs[Context->v2r[j]]->index == menu->oldcurrent) {
328 if (menu->current < 0)
329 menu->current = ci_first_message ();
332 static void resort_index (MUTTMENU * menu)
335 HEADER *current = CURHDR;
338 mutt_sort_headers (Context, 0);
339 /* Restore the current message */
341 for (i = 0; i < Context->vcount; i++) {
342 if (Context->hdrs[Context->v2r[i]] == current) {
348 if ((Sort & SORT_MASK) == SORT_THREADS && menu->current < 0)
349 menu->current = mutt_parent_message (Context, current);
351 if (menu->current < 0)
352 menu->current = ci_first_message ();
354 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
357 struct mapping_t IndexHelp[] = {
358 {N_("Quit"), OP_QUIT},
359 {N_("Del"), OP_DELETE},
360 {N_("Undel"), OP_UNDELETE},
361 {N_("Save"), OP_SAVE},
362 {N_("Mail"), OP_MAIL},
363 {N_("Reply"), OP_REPLY},
364 {N_("Group"), OP_GROUP_REPLY},
365 {N_("Help"), OP_HELP},
370 struct mapping_t IndexNewsHelp[] = {
371 {N_("Quit"), OP_QUIT},
372 {N_("Del"), OP_DELETE},
373 {N_("Undel"), OP_UNDELETE},
374 {N_("Save"), OP_SAVE},
375 {N_("Post"), OP_POST},
376 {N_("Followup"), OP_FOLLOWUP},
377 {N_("Catchup"), OP_CATCHUP},
378 {N_("Help"), OP_HELP},
383 /* This function handles the message index window as well as commands returned
384 * from the pager (MENU_PAGER).
386 int mutt_index_menu (void)
388 char buf[LONG_STRING], helpstr[SHORT_STRING];
391 int done = 0; /* controls when to exit the "event" loop */
393 int tag = 0; /* has the tag-prefix command been pressed? */
398 char *cp; /* temporary variable. */
399 int index_hint; /* used to restore cursor position */
400 int do_buffy_notify = 1;
401 int closed = 0; /* did we OP_QUIT or OP_EXIT out of this menu? */
402 int attach_msg = option (OPTATTACHMSG);
404 menu = mutt_new_menu ();
405 menu->menu = MENU_MAIN;
407 menu->pagelen = LINES - 3;
408 menu->make_entry = (void *) index_make_entry;
409 menu->color = index_color;
410 menu->current = ci_first_message ();
411 menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_MAIN,
414 && (Context->magic ==
415 M_NNTP)) ? IndexNewsHelp :
420 buffy_check (0); /* force the buffy check after we enter the folder */
421 /* record folder we open to place sidebar indicator properly */
422 if (Context && Context->path)
423 sidebar_set_current (Context->path);
427 tag = 0; /* clear the tag-prefix */
429 menu->max = Context ? Context->vcount : 0;
430 oldcount = Context ? Context->msgcount : 0;
432 /* check if we need to resort the index because just about
433 * any 'op' below could do mutt_enter_command(), either here or
434 * from any new menu launched, and change $sort/$sort_aux
436 if (option (OPTNEEDRESORT) && Context && Context->msgcount)
439 if (option (OPTREDRAWTREE) && Context && Context->msgcount
440 && (Sort & SORT_MASK) == SORT_THREADS) {
441 mutt_draw_tree (Context);
442 menu->redraw |= REDRAW_STATUS;
443 unset_option (OPTREDRAWTREE);
446 if (Context && !attach_msg) {
449 /* check for new mail in the mailbox. If nonzero, then something has
450 * changed about the file (either we got new mail or the file was
451 * modified underneath us.)
454 imap_allow_reopen (Context);
456 index_hint = (Context->vcount && menu->current >= 0
457 && menu->current < Context->vcount) ? CURHDR->index : 0;
459 if ((check = mx_check_mailbox (Context, &index_hint, 0)) < 0) {
460 if (!Context->path) {
461 /* fatal error occurred */
463 menu->redraw = REDRAW_FULL;
465 set_option (OPTSEARCHINVALID);
467 else if (check == M_NEW_MAIL || check == M_REOPENED || check == M_FLAGS) {
468 update_index (menu, Context, check, oldcount, index_hint);
470 /* notify the user of new mail */
471 if (check == M_REOPENED)
473 ("Mailbox was externally modified. Flags may be wrong."));
474 else if (check == M_NEW_MAIL) {
475 /* on new mail: redraw sidebar */
477 mutt_message (_("New mail in this mailbox."));
479 if (option (OPTBEEPNEW))
482 else if (check == M_FLAGS)
483 mutt_message (_("Mailbox was externally modified."));
485 /* avoid the message being overwritten by buffy */
488 menu->redraw = REDRAW_FULL;
489 menu->max = Context->vcount;
491 set_option (OPTSEARCHINVALID);
496 imap_disallow_reopen (Context);
499 /* check for new mail in the incoming folders */
501 if ((newcount = buffy_check (0)) != oldcount) {
502 menu->redraw |= REDRAW_STATUS;
503 menu->redraw |= REDRAW_SIDEBAR;
505 if (do_buffy_notify) {
506 if (buffy_notify () && option (OPTBEEPNEW))
515 if (menu->redraw & REDRAW_SIDEBAR)
517 if (menu->redraw & REDRAW_FULL) {
518 menu_redraw_full (menu);
523 if (menu->menu == MENU_MAIN) {
524 if (Context && Context->hdrs && !(menu->current >= Context->vcount)) {
525 menu_check_recenter (menu);
527 if (menu->redraw & REDRAW_INDEX) {
528 menu_redraw_index (menu);
529 menu->redraw |= REDRAW_STATUS;
531 else if (menu->redraw & (REDRAW_MOTION_RESYNCH | REDRAW_MOTION))
532 menu_redraw_motion (menu);
533 else if (menu->redraw & REDRAW_CURRENT)
534 menu_redraw_current (menu);
537 if (menu->redraw & REDRAW_STATUS) {
538 menu_status_line (buf, sizeof (buf), menu, NONULL (Status));
539 CLEARLINE (option (OPTSTATUSONTOP) ? 0 : LINES - 2);
540 sidebar_draw_frames();
541 SETCOLOR (MT_COLOR_STATUS);
542 BKGDSET (MT_COLOR_STATUS);
543 move(option (OPTSTATUSONTOP) ? 0 : LINES - 2,SW);
544 mutt_paddstr (COLS-SW, buf);
545 SETCOLOR (MT_COLOR_NORMAL);
546 BKGDSET (MT_COLOR_NORMAL);
547 sidebar_set_buffystats (Context);
548 menu->redraw &= ~REDRAW_STATUS;
549 if (option (OPTXTERMSETTITLES)) {
550 menu_status_line(buf, sizeof(buf), menu, NONULL(XtermTitle));
551 printf("\033]2;%s\007", buf);
552 menu_status_line(buf, sizeof(buf), menu, NONULL(XtermIcon));
553 printf("\033]1;%s\007", buf);
559 if (menu->current < menu->max)
560 menu->oldcurrent = menu->current;
562 menu->oldcurrent = -1;
564 if (option (OPTARROWCURSOR))
565 move (menu->current - menu->top + menu->offset, 2);
566 else if (option (OPTBRAILLEFRIENDLY))
567 move (menu->current - menu->top + menu->offset, 0);
569 move (menu->current - menu->top + menu->offset, COLS - 1);
572 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
575 mutt_resize_screen ();
576 menu->redraw = REDRAW_FULL;
577 menu->menu = MENU_MAIN;
579 menu->top = 0; /* so we scroll the right amount */
581 * force a real complete redraw. clrtobot() doesn't seem to be able
582 * to handle every case without this.
584 clearok (stdscr, TRUE);
589 op = km_dokey (MENU_MAIN);
592 continue; /* either user abort or timeout */
596 /* special handling for the tag-prefix function */
597 if (op == OP_TAG_PREFIX) {
599 mutt_error (_("No mailbox is open."));
604 if (!Context->tagged) {
605 mutt_error (_("No tagged messages."));
611 /* give visual indication that the next command is a tag- command */
612 mvaddstr (LINES - 1, 0, "tag-");
615 /* get the real command */
616 if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX) {
617 /* abort tag sequence */
618 CLEARLINE (LINES - 1);
622 else if (option (OPTAUTOTAG) && Context && Context->tagged)
625 if (op == OP_TAG_PREFIX_COND) {
627 mutt_error (_("No mailbox is open."));
632 if (!Context->tagged) {
635 while (UngetCount > 0) {
637 if (tmp.op == OP_END_COND)
640 mutt_message (_("Nothing to do."));
646 /* give visual indication that the next command is a tag- command */
647 mvaddstr (LINES - 1, 0, "tag-");
650 /* get the real command */
651 if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX) {
652 /* abort tag sequence */
653 CLEARLINE (LINES - 1);
661 if (menu->current < menu->max)
662 menu->oldcurrent = menu->current;
664 menu->oldcurrent = -1;
666 mutt_curs_set (1); /* fallback from the pager */
670 unset_option (OPTNEWS); /* for any case */
675 /* ----------------------------------------------------------------------
680 menu_bottom_page (menu);
683 menu_first_entry (menu);
686 menu_middle_page (menu);
692 menu_half_down (menu);
695 menu_next_line (menu);
698 menu_prev_line (menu);
701 menu_next_page (menu);
704 menu_prev_page (menu);
707 menu_last_entry (menu);
710 menu_top_page (menu);
713 menu_current_top (menu);
715 case OP_CURRENT_MIDDLE:
716 menu_current_middle (menu);
718 case OP_CURRENT_BOTTOM:
719 menu_current_bottom (menu);
726 if (Context->magic == M_NNTP) {
729 if (op == OP_GET_MESSAGE) {
731 if (mutt_get_field (_("Enter Message-ID: "), buf, sizeof (buf), 0)
736 string_list_t *ref = CURHDR->env->references;
739 mutt_error (_("Article has no parent reference!"));
743 m_strcpy(buf, sizeof(buf), ref->data);
745 if (!Context->id_hash)
746 Context->id_hash = mutt_make_id_hash (Context);
747 if ((h = hash_find (Context->id_hash, buf))) {
748 if (h->virtual != -1) {
749 menu->current = h->virtual;
750 menu->redraw = REDRAW_MOTION_RESYNCH;
752 else if (h->collapsed) {
753 mutt_uncollapse_thread (Context, h);
754 mutt_set_virtual (Context);
755 menu->current = h->virtual;
756 menu->redraw = REDRAW_MOTION_RESYNCH;
759 mutt_error (_("Message not visible in limited view."));
762 if (nntp_check_msgid (Context, buf) == 0) {
763 h = Context->hdrs[Context->msgcount - 1];
764 mutt_sort_headers (Context, 0);
765 menu->current = h->virtual;
766 menu->redraw = REDRAW_FULL;
769 mutt_error (_("Article %s not found on server"), buf);
774 case OP_GET_CHILDREN:
775 case OP_RECONSTRUCT_THREAD:
777 if (Context->magic == M_NNTP) {
779 int old = CURHDR->index;
781 if (!CURHDR->env->message_id) {
782 mutt_error (_("No Message-ID. Unable to perform operation"));
787 if (!Context->id_hash)
788 Context->id_hash = mutt_make_id_hash (Context);
789 m_strcpy(buf, sizeof(buf), CURHDR->env->message_id);
791 if (op == OP_RECONSTRUCT_THREAD) {
792 string_list_t *ref = CURHDR->env->references;
795 nntp_check_msgid (Context, ref->data);
796 /* the last msgid in References is the root message */
798 m_strcpy(buf, sizeof(buf), ref->data);
802 mutt_message (_("Check for children of message..."));
804 if (nntp_check_children (Context, buf) == 0) {
805 mutt_sort_headers (Context, (op == OP_RECONSTRUCT_THREAD));
806 h = hash_find (Context->id_hash, buf);
807 /* if the root message was retrieved, move to it */
809 menu->current = h->virtual;
810 else /* try to restore old position */
811 for (i = 0; i < Context->msgcount; i++)
812 if (Context->hdrs[i]->index == old) {
813 menu->current = Context->hdrs[i]->virtual;
814 /* As an added courtesy, recenter the menu
815 * with the current entry at the middle of the screen */
816 menu_check_recenter (menu);
817 menu_current_middle (menu);
820 menu->redraw = REDRAW_FULL;
830 if (isdigit (LastKey))
831 mutt_ungetch (LastKey, 0);
833 if (mutt_get_field (_("Jump to message: "), buf, sizeof (buf), 0) != 0
837 if (!isdigit ((unsigned char) buf[0])) {
838 mutt_error (_("Argument must be a message number."));
844 if (i > 0 && i <= Context->msgcount) {
845 for (j = i - 1; j < Context->msgcount; j++) {
846 if (Context->hdrs[j]->virtual != -1)
849 if (j >= Context->msgcount) {
850 for (j = i - 2; j >= 0; j--) {
851 if (Context->hdrs[j]->virtual != -1)
857 menu->current = Context->hdrs[j]->virtual;
858 if (menu->menu == MENU_PAGER) {
859 op = OP_DISPLAY_MESSAGE;
863 menu->redraw = REDRAW_MOTION;
866 mutt_error (_("That message is not visible."));
869 mutt_error (_("Invalid message number."));
873 /* --------------------------------------------------------------------
874 * `index' specific commands
877 case OP_MAIN_DELETE_PATTERN:
883 CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
886 mutt_pattern_func (M_DELETE, _("Delete messages matching: "));
887 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
890 case OP_MAIN_FETCH_MAIL:
894 menu->redraw = REDRAW_FULL;
899 mutt_help (MENU_MAIN);
900 menu->redraw = REDRAW_FULL;
903 case OP_MAIN_SHOW_LIMIT:
905 if (!Context->pattern)
906 mutt_message (_("No limit pattern is in effect."));
911 /* i18n: ask for a limit to apply */
912 snprintf (buffer, sizeof (buffer), _("Limit: %s"), Context->pattern);
913 mutt_message ("%s", buffer);
921 menu->oldcurrent = (Context->vcount && menu->current >= 0
923 Context->vcount) ? CURHDR->index : -1;
924 if (op == OP_TOGGLE_READ) {
925 char buffer[LONG_STRING];
927 if (m_strncmp (Context->pattern, "!~R!~D~s", 8) != 0) {
928 snprintf (buffer, sizeof (buffer), "!~R!~D~s%s",
929 Context->pattern ? Context->pattern : ".*");
930 set_option (OPTHIDEREAD);
933 m_strcpy(buf, sizeof(buf), Context->pattern + 8);
934 if (m_strncmp (buf, ".*", 2) == 0)
935 snprintf (buf, sizeof (buf), "~A");
936 unset_option (OPTHIDEREAD);
938 p_delete(&Context->pattern);
939 Context->pattern = m_strdup(buf);
941 if ((op == OP_TOGGLE_READ && mutt_pattern_func (M_LIMIT, NULL) == 0) ||
942 mutt_pattern_func (M_LIMIT, _("Limit to messages matching: ")) == 0)
944 if (menu->oldcurrent >= 0) {
945 /* try to find what used to be the current message */
947 for (i = 0; i < Context->vcount; i++)
948 if (Context->hdrs[Context->v2r[i]]->index == menu->oldcurrent) {
952 if (menu->current < 0)
957 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
958 if (Context->msgcount && (Sort & SORT_MASK) == SORT_THREADS)
959 mutt_draw_tree (Context);
960 menu->redraw = REDRAW_FULL;
962 if (Context->pattern)
963 mutt_message _("To view all messages, limit to \"all\".");
974 if (query_quadoption (OPT_QUIT, _("Quit Madmutt?")) == M_YES) {
977 oldcount = Context ? Context->msgcount : 0;
980 || (check = mx_close_mailbox (Context, &index_hint)) == 0)
983 if (check == M_NEW_MAIL || check == M_REOPENED)
984 update_index (menu, Context, check, oldcount, index_hint);
986 menu->redraw = REDRAW_FULL; /* new mail arrived? */
987 set_option (OPTSEARCHINVALID);
994 clearok (stdscr, TRUE);
995 menu->redraw = REDRAW_FULL;
999 case OP_SEARCH_REVERSE:
1000 case OP_SEARCH_NEXT:
1001 case OP_SEARCH_OPPOSITE:
1005 if ((menu->current = mutt_search_command (menu->current, op)) == -1)
1006 menu->current = menu->oldcurrent;
1008 menu->redraw = REDRAW_MOTION;
1012 case OP_SORT_REVERSE:
1014 if (mutt_select_sort ((op == OP_SORT_REVERSE)) == 0) {
1015 if (Context && Context->msgcount) {
1016 resort_index (menu);
1017 set_option (OPTSEARCHINVALID);
1026 if (tag && !option (OPTAUTOTAG)) {
1027 for (j = 0; j < Context->vcount; j++)
1028 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_TAG, 0);
1029 menu->redraw = REDRAW_STATUS | REDRAW_INDEX;
1032 mutt_set_flag (Context, CURHDR, M_TAG, !CURHDR->tagged);
1033 Context->last_tag = CURHDR->tagged ? CURHDR :
1034 ((Context->last_tag == CURHDR && !CURHDR->tagged)
1035 ? NULL : Context->last_tag);
1036 menu->redraw = REDRAW_STATUS;
1037 if (option (OPTRESOLVE) && menu->current < Context->vcount - 1) {
1039 menu->redraw |= REDRAW_MOTION_RESYNCH;
1042 menu->redraw |= REDRAW_CURRENT;
1046 case OP_MAIN_TAG_PATTERN:
1050 mutt_pattern_func (M_TAG, _("Tag messages matching: "));
1051 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1054 case OP_MAIN_UNDELETE_PATTERN:
1060 CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
1062 if (mutt_pattern_func (M_UNDELETE, _("Undelete messages matching: ")) ==
1064 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1067 case OP_MAIN_UNTAG_PATTERN:
1071 if (mutt_pattern_func (M_UNTAG, _("Untag messages matching: ")) == 0)
1072 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1075 /* --------------------------------------------------------------------
1076 * The following operations can be performed inside of the pager.
1079 case OP_MAIN_IMAP_FETCH:
1080 if (Context->magic == M_IMAP)
1081 imap_check_mailbox (Context, &index_hint, 1);
1084 case OP_MAIN_SYNC_FOLDER:
1086 if (Context && !Context->msgcount)
1093 int oldvcount = Context->vcount;
1094 oldcount = Context->msgcount;
1098 /* calculate the number of messages _above_ the cursor,
1099 * so we can keep the cursor on the current message
1101 for (j = 0; j <= menu->current; j++) {
1102 if (Context->hdrs[Context->v2r[j]]->deleted)
1106 if ((check = mx_sync_mailbox (Context, &index_hint)) == 0) {
1107 if (Context->vcount != oldvcount)
1108 menu->current -= dcount;
1109 set_option (OPTSEARCHINVALID);
1111 else if (check == M_NEW_MAIL || check == M_REOPENED)
1112 update_index (menu, Context, check, oldcount, index_hint);
1115 * do a sanity check even if mx_sync_mailbox failed.
1118 if (menu->current < 0 || menu->current >= Context->vcount)
1119 menu->current = ci_first_message ();
1122 /* check for a fatal error, or all messages deleted */
1126 /* if we were in the pager, redisplay the message */
1127 if (menu->menu == MENU_PAGER) {
1128 op = OP_DISPLAY_MESSAGE;
1132 menu->redraw = REDRAW_FULL;
1135 case OP_SIDEBAR_OPEN:
1136 case OP_MAIN_CHANGE_FOLDER:
1137 case OP_MAIN_CHANGE_FOLDER_READONLY:
1139 case OP_MAIN_CHANGE_GROUP:
1140 case OP_MAIN_CHANGE_GROUP_READONLY:
1142 if (attach_msg || option (OPTREADONLY) ||
1144 op == OP_MAIN_CHANGE_GROUP_READONLY ||
1146 op == OP_MAIN_CHANGE_FOLDER_READONLY)
1152 cp = _("Open mailbox in read-only mode");
1154 cp = _("Open mailbox");
1158 unset_option (OPTNEWS);
1159 if (op == OP_MAIN_CHANGE_GROUP || op == OP_MAIN_CHANGE_GROUP_READONLY) {
1160 set_option (OPTNEWS);
1161 if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer)))
1164 cp = _("Open newsgroup in read-only mode");
1166 cp = _("Open newsgroup");
1167 nntp_buffy (buf, sizeof (buf));
1172 if (Context && Context->path)
1173 m_strcpy(buf, sizeof(buf), Context->path);
1174 if (op != OP_SIDEBAR_OPEN)
1175 buffy_next (buf, sizeof (buf));
1178 if (op == OP_SIDEBAR_OPEN) {
1179 m_strcpy(buf, sizeof(buf), sidebar_get_current());
1181 else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) {
1182 if (menu->menu == MENU_PAGER) {
1183 op = OP_DISPLAY_MESSAGE;
1189 CLEARLINE (LINES - 1);
1194 if (option (OPTNEWS)) {
1195 unset_option (OPTNEWS);
1196 nntp_expand_path (buf, sizeof (buf), &CurrentNewsSrv->conn->account);
1200 mutt_expand_path (buf, sizeof (buf));
1201 if (mx_get_magic (buf) <= 0) {
1202 mutt_error (_("%s is not a mailbox."), buf);
1205 m_strreplace(&CurrentFolder, buf);
1210 if (Context->cinfo && Context->realpath)
1211 m_strreplace(&LastFolder, Context->realpath);
1213 m_strreplace(&LastFolder, Context->path);
1214 oldcount = Context ? Context->msgcount : 0;
1216 if ((check = mx_close_mailbox (Context, &index_hint)) != 0) {
1217 if (check == M_NEW_MAIL || check == M_REOPENED)
1218 update_index (menu, Context, check, oldcount, index_hint);
1220 set_option (OPTSEARCHINVALID);
1221 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1229 /* Set CurrentMenu to MENU_MAIN before executing any folder
1230 * hooks so that all the index menu functions are available to
1234 CurrentMenu = MENU_MAIN;
1235 mutt_folder_hook (buf);
1237 if ((Context = mx_open_mailbox (buf, flags, NULL)) != NULL) {
1238 menu->current = ci_first_message ();
1242 sidebar_set_current (buf);
1245 /* buffy_check() must be done with mail-reader mode! */
1246 menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_MAIN,
1248 && (Context->magic ==
1249 M_NNTP)) ? IndexNewsHelp :
1252 mutt_clear_error ();
1253 buffy_check (0); /* force the buffy check after we have changed
1255 menu->redraw = REDRAW_FULL;
1256 set_option (OPTSEARCHINVALID);
1259 case OP_DISPLAY_MESSAGE:
1260 case OP_DISPLAY_HEADERS: /* don't weed the headers */
1265 * toggle the weeding of headers so that a user can press the key
1266 * again while reading the message.
1268 if (op == OP_DISPLAY_HEADERS)
1269 toggle_option (OPTWEED);
1271 unset_option (OPTNEEDRESORT);
1273 if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed) {
1274 mutt_uncollapse_thread (Context, CURHDR);
1275 mutt_set_virtual (Context);
1276 if (option (OPTUNCOLLAPSEJUMP))
1277 menu->current = mutt_thread_next_unread (Context, CURHDR);
1280 if (option (OPTPGPAUTODEC) &&
1281 (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
1282 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
1284 if ((op = mutt_display_message (CURHDR)) == -1) {
1285 unset_option (OPTNEEDRESORT);
1289 menu->menu = MENU_PAGER;
1290 menu->oldcurrent = menu->current;
1296 if (menu->menu == MENU_MAIN && attach_msg) {
1301 if ((menu->menu == MENU_MAIN)
1302 && (query_quadoption (OPT_QUIT,
1303 _("Exit Madmutt without saving?")) == M_YES))
1306 mx_fastclose_mailbox (Context);
1318 mutt_edit_content_type (CURHDR, CURHDR->content, NULL);
1319 /* if we were in the pager, redisplay the message */
1320 if (menu->menu == MENU_PAGER) {
1321 op = OP_DISPLAY_MESSAGE;
1325 menu->redraw = REDRAW_CURRENT;
1328 case OP_MAIN_BREAK_THREAD:
1334 if ((Sort & SORT_MASK) != SORT_THREADS)
1335 mutt_error (_("Threading is not enabled."));
1339 HEADER *oldcur = CURHDR;
1341 mutt_break_thread (CURHDR);
1342 mutt_sort_headers (Context, 1);
1343 menu->current = oldcur->virtual;
1346 Context->changed = 1;
1347 mutt_message _("Thread broken");
1349 if (menu->menu == MENU_PAGER) {
1350 op = OP_DISPLAY_MESSAGE;
1354 menu->redraw |= REDRAW_INDEX;
1358 case OP_MAIN_LINK_THREADS:
1364 if ((Sort & SORT_MASK) != SORT_THREADS)
1365 mutt_error (_("Threading is not enabled."));
1367 else if (!CURHDR->env->message_id)
1368 mutt_error (_("No Message-ID: header available to link thread"));
1370 else if (!tag && (!Context->last_tag || !Context->last_tag->tagged))
1371 mutt_error (_("First, please tag a message to be linked here"));
1374 HEADER *oldcur = CURHDR;
1376 if (mutt_link_threads (CURHDR, tag ? NULL : Context->last_tag,
1378 mutt_sort_headers (Context, 1);
1379 menu->current = oldcur->virtual;
1381 Context->changed = 1;
1382 mutt_message _("Threads linked");
1385 mutt_error (_("No thread linked"));
1388 if (menu->menu == MENU_PAGER) {
1389 op = OP_DISPLAY_MESSAGE;
1393 menu->redraw |= REDRAW_STATUS | REDRAW_INDEX;
1396 case OP_MAIN_NEXT_UNDELETED:
1400 if (menu->current >= Context->vcount - 1) {
1401 if (menu->menu == MENU_MAIN)
1402 mutt_error (_("You are on the last message."));
1406 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1407 menu->current = menu->oldcurrent;
1408 if (menu->menu == MENU_MAIN)
1409 mutt_error (_("No undeleted messages."));
1411 else if (menu->menu == MENU_PAGER) {
1412 op = OP_DISPLAY_MESSAGE;
1416 menu->redraw = REDRAW_MOTION;
1423 if (menu->current >= Context->vcount - 1) {
1424 if (menu->menu == MENU_MAIN)
1425 mutt_error (_("You are on the last message."));
1430 if (menu->menu == MENU_PAGER) {
1431 op = OP_DISPLAY_MESSAGE;
1435 menu->redraw = REDRAW_MOTION;
1438 case OP_MAIN_PREV_UNDELETED:
1442 if (menu->current < 1) {
1443 mutt_error (_("You are on the first message."));
1447 if ((menu->current = ci_previous_undeleted (menu->current)) == -1) {
1448 menu->current = menu->oldcurrent;
1449 if (menu->menu == MENU_MAIN)
1450 mutt_error (_("No undeleted messages."));
1452 else if (menu->menu == MENU_PAGER) {
1453 op = OP_DISPLAY_MESSAGE;
1457 menu->redraw = REDRAW_MOTION;
1464 if (menu->current < 1) {
1465 if (menu->menu == MENU_MAIN)
1466 mutt_error (_("You are on the first message."));
1471 if (menu->menu == MENU_PAGER) {
1472 op = OP_DISPLAY_MESSAGE;
1476 menu->redraw = REDRAW_MOTION;
1479 case OP_DECRYPT_COPY:
1480 case OP_DECRYPT_SAVE:
1481 case OP_COPY_MESSAGE:
1483 case OP_DECODE_COPY:
1484 case OP_DECODE_SAVE:
1487 if (mutt_save_message (tag ? NULL : CURHDR,
1488 (op == OP_DECRYPT_SAVE) ||
1489 (op == OP_SAVE) || (op == OP_DECODE_SAVE),
1490 (op == OP_DECODE_SAVE) || (op == OP_DECODE_COPY),
1491 (op == OP_DECRYPT_SAVE)
1492 || (op == OP_DECRYPT_COPY)
1493 || 0, &menu->redraw) == 0 && (op == OP_SAVE
1500 menu->redraw |= REDRAW_INDEX;
1501 else if (option (OPTRESOLVE)) {
1502 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1503 menu->current = menu->oldcurrent;
1504 menu->redraw |= REDRAW_CURRENT;
1507 menu->redraw |= REDRAW_MOTION_RESYNCH;
1510 menu->redraw |= REDRAW_CURRENT;
1514 case OP_MAIN_NEXT_NEW:
1515 case OP_MAIN_NEXT_UNREAD:
1516 case OP_MAIN_PREV_NEW:
1517 case OP_MAIN_PREV_UNREAD:
1518 case OP_MAIN_NEXT_NEW_THEN_UNREAD:
1519 case OP_MAIN_PREV_NEW_THEN_UNREAD:
1522 int first_unread = -1;
1530 for (j = 0; j != Context->vcount; j++) {
1531 #define CURHDRi Context->hdrs[Context->v2r[i]]
1532 if (op == OP_MAIN_NEXT_NEW || op == OP_MAIN_NEXT_UNREAD
1533 || op == OP_MAIN_NEXT_NEW_THEN_UNREAD) {
1535 if (i > Context->vcount - 1) {
1536 mutt_message _("Search wrapped to top.");
1544 mutt_message _("Search wrapped to bottom.");
1546 i = Context->vcount - 1;
1550 if (CURHDRi->collapsed && (Sort & SORT_MASK) == SORT_THREADS) {
1551 if (UNREAD (CURHDRi) && first_unread == -1)
1553 if (UNREAD (CURHDRi) == 1 && first_new == -1)
1556 else if ((!CURHDRi->deleted && !CURHDRi->read)) {
1557 if (first_unread == -1)
1559 if ((!CURHDRi->old) && first_new == -1)
1563 if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD) &&
1566 if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1567 op == OP_MAIN_NEXT_NEW_THEN_UNREAD
1568 || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1573 if ((op == OP_MAIN_NEXT_NEW || op == OP_MAIN_PREV_NEW ||
1574 op == OP_MAIN_NEXT_NEW_THEN_UNREAD
1575 || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1577 menu->current = first_new;
1578 else if ((op == OP_MAIN_NEXT_UNREAD || op == OP_MAIN_PREV_UNREAD ||
1579 op == OP_MAIN_NEXT_NEW_THEN_UNREAD
1580 || op == OP_MAIN_PREV_NEW_THEN_UNREAD)
1581 && first_unread != -1)
1582 menu->current = first_unread;
1584 if (menu->current == -1) {
1585 menu->current = menu->oldcurrent;
1586 mutt_error ("%s%s.",
1587 (op == OP_MAIN_NEXT_NEW
1589 OP_MAIN_PREV_NEW) ? _("No new messages") :
1590 _("No unread messages"),
1591 Context->pattern ? _(" in this limited view") : "");
1593 else if (menu->menu == MENU_PAGER) {
1594 op = OP_DISPLAY_MESSAGE;
1598 menu->redraw = REDRAW_MOTION;
1601 case OP_FLAG_MESSAGE:
1607 CHECK_MX_ACL (Context, ACL_WRITE, _("Flagging"));
1610 for (j = 0; j < Context->vcount; j++) {
1611 if (Context->hdrs[Context->v2r[j]]->tagged)
1612 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]],
1613 M_FLAG, !Context->hdrs[Context->v2r[j]]->flagged);
1616 menu->redraw |= REDRAW_INDEX;
1619 mutt_set_flag (Context, CURHDR, M_FLAG, !CURHDR->flagged);
1620 if (option (OPTRESOLVE)) {
1621 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1622 menu->current = menu->oldcurrent;
1623 menu->redraw = REDRAW_CURRENT;
1626 menu->redraw = REDRAW_MOTION_RESYNCH;
1629 menu->redraw = REDRAW_CURRENT;
1631 menu->redraw |= REDRAW_STATUS;
1640 CHECK_MX_ACL (Context, ACL_SEEN, _("Toggling"));
1643 for (j = 0; j < Context->vcount; j++) {
1644 if (Context->hdrs[Context->v2r[j]]->tagged) {
1645 if (Context->hdrs[Context->v2r[j]]->read ||
1646 Context->hdrs[Context->v2r[j]]->old)
1647 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_NEW,
1650 mutt_set_flag (Context, Context->hdrs[Context->v2r[j]], M_READ,
1654 menu->redraw = REDRAW_STATUS | REDRAW_INDEX;
1657 if (CURHDR->read || CURHDR->old)
1658 mutt_set_flag (Context, CURHDR, M_NEW, 1);
1660 mutt_set_flag (Context, CURHDR, M_READ, 1);
1662 if (option (OPTRESOLVE)) {
1663 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1664 menu->current = menu->oldcurrent;
1665 menu->redraw = REDRAW_CURRENT;
1668 menu->redraw = REDRAW_MOTION_RESYNCH;
1671 menu->redraw = REDRAW_CURRENT;
1672 menu->redraw |= REDRAW_STATUS;
1676 case OP_TOGGLE_WRITE:
1679 if (mx_toggle_write (Context) == 0)
1680 menu->redraw |= REDRAW_STATUS;
1683 case OP_MAIN_NEXT_THREAD:
1684 case OP_MAIN_NEXT_SUBTHREAD:
1685 case OP_MAIN_PREV_THREAD:
1686 case OP_MAIN_PREV_SUBTHREAD:
1691 case OP_MAIN_NEXT_THREAD:
1692 menu->current = mutt_next_thread (CURHDR);
1695 case OP_MAIN_NEXT_SUBTHREAD:
1696 menu->current = mutt_next_subthread (CURHDR);
1699 case OP_MAIN_PREV_THREAD:
1700 menu->current = mutt_previous_thread (CURHDR);
1703 case OP_MAIN_PREV_SUBTHREAD:
1704 menu->current = mutt_previous_subthread (CURHDR);
1708 if (menu->current < 0) {
1709 menu->current = menu->oldcurrent;
1710 if (op == OP_MAIN_NEXT_THREAD || op == OP_MAIN_NEXT_SUBTHREAD)
1711 mutt_error (_("No more threads."));
1714 mutt_error (_("You are on the first thread."));
1716 else if (menu->menu == MENU_PAGER) {
1717 op = OP_DISPLAY_MESSAGE;
1721 menu->redraw = REDRAW_MOTION;
1724 case OP_MAIN_PARENT_MESSAGE:
1729 if ((menu->current = mutt_parent_message (Context, CURHDR)) < 0) {
1730 menu->current = menu->oldcurrent;
1732 else if (menu->menu == MENU_PAGER) {
1733 op = OP_DISPLAY_MESSAGE;
1737 menu->redraw = REDRAW_MOTION;
1740 case OP_MAIN_SET_FLAG:
1741 case OP_MAIN_CLEAR_FLAG:
1747 if (mutt_change_flag (tag ? NULL : CURHDR, (op == OP_MAIN_SET_FLAG)) ==
1749 menu->redraw = REDRAW_STATUS;
1751 menu->redraw |= REDRAW_INDEX;
1752 else if (option (OPTRESOLVE)) {
1753 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1754 menu->current = menu->oldcurrent;
1755 menu->redraw |= REDRAW_CURRENT;
1758 menu->redraw |= REDRAW_MOTION_RESYNCH;
1761 menu->redraw |= REDRAW_CURRENT;
1765 case OP_MAIN_COLLAPSE_THREAD:
1769 if ((Sort & SORT_MASK) != SORT_THREADS) {
1770 mutt_error (_("Threading is not enabled."));
1775 if (CURHDR->collapsed) {
1776 menu->current = mutt_uncollapse_thread (Context, CURHDR);
1777 mutt_set_virtual (Context);
1778 if (option (OPTUNCOLLAPSEJUMP))
1779 menu->current = mutt_thread_next_unread (Context, CURHDR);
1781 else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR)) {
1782 menu->current = mutt_collapse_thread (Context, CURHDR);
1783 mutt_set_virtual (Context);
1786 mutt_error (_("Thread contains unread messages."));
1791 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1795 case OP_MAIN_COLLAPSE_ALL:
1799 if ((Sort & SORT_MASK) != SORT_THREADS) {
1800 mutt_error (_("Threading is not enabled."));
1807 THREAD *thread, *top;
1810 if (CURHDR->collapsed)
1811 final = mutt_uncollapse_thread (Context, CURHDR);
1812 else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (CURHDR))
1813 final = mutt_collapse_thread (Context, CURHDR);
1815 final = CURHDR->virtual;
1817 base = Context->hdrs[Context->v2r[final]];
1819 top = Context->tree;
1820 Context->collapsed = !Context->collapsed;
1821 while ((thread = top) != NULL) {
1822 while (!thread->message)
1823 thread = thread->child;
1824 h = thread->message;
1826 if (h->collapsed != Context->collapsed) {
1828 mutt_uncollapse_thread (Context, h);
1829 else if (option (OPTCOLLAPSEUNREAD) || !UNREAD (h))
1830 mutt_collapse_thread (Context, h);
1835 mutt_set_virtual (Context);
1836 for (j = 0; j < Context->vcount; j++) {
1837 if (Context->hdrs[Context->v2r[j]]->index == base->index) {
1843 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1847 /* --------------------------------------------------------------------
1848 * These functions are invoked directly from the internal-pager
1851 case OP_BOUNCE_MESSAGE:
1856 ci_bounce_message (tag ? NULL : CURHDR, &menu->redraw);
1859 case OP_CREATE_ALIAS:
1861 mutt_create_alias (Context
1862 && Context->vcount ? CURHDR->env : NULL, NULL);
1863 MAYBE_REDRAW (menu->redraw);
1864 menu->redraw |= REDRAW_CURRENT;
1869 mutt_query_menu (NULL, 0);
1870 MAYBE_REDRAW (menu->redraw);
1873 case OP_PURGE_MESSAGE:
1880 CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1883 mutt_tag_set_flag (M_DELETE, 1);
1884 mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1);
1885 if (option (OPTDELETEUNTAG))
1886 mutt_tag_set_flag (M_TAG, 0);
1887 menu->redraw = REDRAW_INDEX;
1890 mutt_set_flag (Context, CURHDR, M_DELETE, 1);
1891 mutt_set_flag (Context, CURHDR, M_PURGED,
1892 (op != OP_PURGE_MESSAGE) ? 0 : 1);
1893 if (option (OPTDELETEUNTAG))
1894 mutt_set_flag (Context, CURHDR, M_TAG, 0);
1895 if (option (OPTRESOLVE)) {
1896 if ((menu->current = ci_next_undeleted (menu->current)) == -1) {
1897 menu->current = menu->oldcurrent;
1898 menu->redraw = REDRAW_CURRENT;
1900 else if (menu->menu == MENU_PAGER) {
1901 op = OP_DISPLAY_MESSAGE;
1905 menu->redraw |= REDRAW_MOTION_RESYNCH;
1908 menu->redraw = REDRAW_CURRENT;
1910 menu->redraw |= REDRAW_STATUS;
1913 case OP_DELETE_THREAD:
1914 case OP_DELETE_SUBTHREAD:
1920 CHECK_MX_ACL (Context, ACL_DELETE, _("Deletion"));
1922 rc = mutt_thread_set_flag (CURHDR, M_DELETE, 1,
1923 op == OP_DELETE_THREAD ? 0 : 1);
1926 if (option (OPTDELETEUNTAG))
1927 mutt_thread_set_flag (CURHDR, M_TAG, 0,
1928 op == OP_DELETE_THREAD ? 0 : 1);
1929 if (option (OPTRESOLVE))
1930 if ((menu->current = ci_next_undeleted (menu->current)) == -1)
1931 menu->current = menu->oldcurrent;
1932 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1938 if (Context && Context->magic == M_NNTP) {
1939 if (mutt_newsgroup_catchup (CurrentNewsSrv,
1940 ((NNTP_DATA *) Context->data)->group))
1941 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
1946 case OP_DISPLAY_ADDRESS:
1950 mutt_display_address (CURHDR->env);
1953 case OP_ENTER_COMMAND:
1955 CurrentMenu = MENU_MAIN;
1956 mutt_enter_command ();
1957 mutt_check_rescore (Context);
1958 if (option (OPTFORCEREDRAWINDEX))
1959 menu->redraw = REDRAW_FULL;
1960 unset_option (OPTFORCEREDRAWINDEX);
1961 unset_option (OPTFORCEREDRAWPAGER);
1964 case OP_EDIT_MESSAGE:
1971 CHECK_MX_ACL (Context, ACL_INSERT, _("Editing"));
1973 if (option (OPTPGPAUTODEC)
1974 && (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
1975 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
1976 mutt_edit_message (Context, tag ? NULL : CURHDR);
1977 menu->redraw = REDRAW_FULL;
1981 case OP_FORWARD_MESSAGE:
1987 if (option (OPTPGPAUTODEC) &&
1988 (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
1989 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
1990 ci_send_message (SENDFORWARD, NULL, NULL, Context, tag ? NULL : CURHDR);
1991 menu->redraw = REDRAW_FULL;
1995 case OP_FORGET_PASSPHRASE:
1996 crypt_forget_passphrase ();
1999 case OP_GROUP_REPLY:
2005 if (option (OPTPGPAUTODEC) &&
2006 (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
2007 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2009 ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, Context,
2010 tag ? NULL : CURHDR);
2011 menu->redraw = REDRAW_FULL;
2020 if (option (OPTPGPAUTODEC) &&
2021 (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
2022 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2024 ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, Context,
2025 tag ? NULL : CURHDR);
2026 menu->redraw = REDRAW_FULL;
2032 ci_send_message (0, NULL, NULL, Context, NULL);
2033 menu->redraw = REDRAW_FULL;
2038 ci_send_message (SENDKEY, NULL, NULL, NULL, NULL);
2039 menu->redraw = REDRAW_FULL;
2043 case OP_EXTRACT_KEYS:
2046 crypt_extract_keys_from_messages (tag ? NULL : CURHDR);
2047 menu->redraw = REDRAW_FULL;
2051 case OP_CHECK_TRADITIONAL:
2054 if (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED))
2055 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2057 if (menu->menu == MENU_PAGER) {
2058 op = OP_DISPLAY_MESSAGE;
2067 mutt_pipe_message (tag ? NULL : CURHDR);
2068 /* in an IMAP folder index with imap_peek=no, piping could change
2069 * * new or old messages status to read. Redraw what's needed.
2071 if (Context->magic == M_IMAP && !option (OPTIMAPPEEK)) {
2072 menu->redraw = (tag ? REDRAW_INDEX : REDRAW_CURRENT) | REDRAW_STATUS;
2074 MAYBE_REDRAW (menu->redraw);
2081 mutt_print_message (tag ? NULL : CURHDR);
2082 /* in an IMAP folder index with imap_peek=no, piping could change
2083 * * new or old messages status to read. Redraw what's needed.
2085 if (Context->magic == M_IMAP && !option (OPTIMAPPEEK)) {
2086 menu->redraw = (tag ? REDRAW_INDEX : REDRAW_CURRENT) | REDRAW_STATUS;
2090 case OP_MAIN_READ_THREAD:
2091 case OP_MAIN_READ_SUBTHREAD:
2097 CHECK_MX_ACL (Context, ACL_SEEN, _("Marking as read"));
2099 rc = mutt_thread_set_flag (CURHDR, M_READ, 1,
2100 op == OP_MAIN_READ_THREAD ? 0 : 1);
2103 if (option (OPTRESOLVE)) {
2104 if ((menu->current = (op == OP_MAIN_READ_THREAD ?
2105 mutt_next_thread (CURHDR) :
2106 mutt_next_subthread (CURHDR))) == -1)
2107 menu->current = menu->oldcurrent;
2109 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2113 case OP_RECALL_MESSAGE:
2116 ci_send_message (SENDPOSTPONED, NULL, NULL, Context, NULL);
2117 menu->redraw = REDRAW_FULL;
2127 for (j = 0; j < Context->vcount; j++) {
2128 if (Context->hdrs[Context->v2r[j]]->tagged)
2129 mutt_resend_message (NULL, Context,
2130 Context->hdrs[Context->v2r[j]]);
2134 mutt_resend_message (NULL, Context, CURHDR);
2136 menu->redraw = REDRAW_FULL;
2142 case OP_FORWARD_TO_GROUP:
2145 if ((op == OP_FOLLOWUP || op == OP_FORWARD_TO_GROUP) &&
2146 Context && Context->msgcount == 0) {
2147 mutt_error (_("There are no messages."));
2150 else if (op != OP_FOLLOWUP || !CURHDR->env->followup_to ||
2151 m_strcasecmp(CURHDR->env->followup_to, "poster") ||
2152 query_quadoption (OPT_FOLLOWUPTOPOSTER,
2153 _("Reply by mail as poster prefers?")) !=
2155 if (Context && Context->magic == M_NNTP
2156 && !((NNTP_DATA *) Context->data)->allowed
2157 && query_quadoption (OPT_TOMODERATED,
2159 ("Posting to this group not allowed, may be moderated. Continue?"))
2163 ci_send_message (SENDNEWS, NULL, NULL, Context, NULL);
2166 if (op == OP_FOLLOWUP)
2167 ci_send_message (SENDNEWS | SENDREPLY, NULL, NULL, Context,
2168 tag ? NULL : CURHDR);
2170 ci_send_message (SENDNEWS | SENDFORWARD, NULL, NULL, Context,
2171 tag ? NULL : CURHDR);
2173 menu->redraw = REDRAW_FULL;
2184 if (option (OPTPGPAUTODEC) &&
2185 (tag || !(CURHDR->security & PGP_TRADITIONAL_CHECKED)))
2186 mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw);
2188 ci_send_message (SENDREPLY, NULL, NULL, Context, tag ? NULL : CURHDR);
2189 menu->redraw = REDRAW_FULL;
2192 case OP_SHELL_ESCAPE:
2194 mutt_shell_escape ();
2195 MAYBE_REDRAW (menu->redraw);
2199 case OP_TAG_SUBTHREAD:
2203 rc = mutt_thread_set_flag (CURHDR, M_TAG, !CURHDR->tagged,
2204 op == OP_TAG_THREAD ? 0 : 1);
2207 if (option (OPTRESOLVE)) {
2208 menu->current = mutt_next_thread (CURHDR);
2210 if (menu->current == -1)
2211 menu->current = menu->oldcurrent;
2213 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2223 CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2226 mutt_tag_set_flag (M_DELETE, 0);
2227 mutt_tag_set_flag (M_PURGED, 0);
2228 menu->redraw = REDRAW_INDEX;
2231 mutt_set_flag (Context, CURHDR, M_DELETE, 0);
2232 mutt_set_flag (Context, CURHDR, M_PURGED, 0);
2233 if (option (OPTRESOLVE) && menu->current < Context->vcount - 1) {
2235 menu->redraw = REDRAW_MOTION_RESYNCH;
2238 menu->redraw = REDRAW_CURRENT;
2240 menu->redraw |= REDRAW_STATUS;
2243 case OP_UNDELETE_THREAD:
2244 case OP_UNDELETE_SUBTHREAD:
2250 CHECK_MX_ACL (Context, ACL_DELETE, _("Undeletion"));
2252 rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0,
2253 op == OP_UNDELETE_THREAD ? 0 : 1)
2254 + mutt_thread_set_flag (CURHDR, M_PURGED, 0,
2255 op == OP_UNDELETE_THREAD ? 0 : 1);
2258 if (option (OPTRESOLVE)) {
2259 if (op == OP_UNDELETE_THREAD)
2260 menu->current = mutt_next_thread (CURHDR);
2262 menu->current = mutt_next_subthread (CURHDR);
2264 if (menu->current == -1)
2265 menu->current = menu->oldcurrent;
2267 menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
2276 if (option (OPTFORCEBUFFYCHECK))
2279 menu->redraw = REDRAW_FULL;
2282 case OP_VIEW_ATTACHMENTS:
2285 mutt_view_attachments (CURHDR);
2286 if (CURHDR->attach_del)
2287 Context->changed = 1;
2288 menu->redraw = REDRAW_FULL;
2298 case OP_REBUILD_CACHE:
2299 mx_rebuild_cache ();
2302 case OP_SIDEBAR_SCROLL_UP:
2303 case OP_SIDEBAR_SCROLL_DOWN:
2304 case OP_SIDEBAR_NEXT:
2305 case OP_SIDEBAR_PREV:
2306 case OP_SIDEBAR_NEXT_NEW:
2307 case OP_SIDEBAR_PREV_NEW:
2308 sidebar_scroll (op);
2311 if (menu->menu == MENU_MAIN)
2312 km_error_key (MENU_MAIN);
2315 if (menu->menu == MENU_PAGER) {
2316 menu->menu = MENU_MAIN;
2317 menu->redraw = REDRAW_FULL;
2325 /* Close all open IMAP connections */
2328 /* Close all open NNTP connections */
2336 mutt_menuDestroy (&menu);
2340 void mutt_set_header_color (CONTEXT * ctx, HEADER * curhdr)
2347 for (color = ColorIndexList; color; color = color->next)
2348 if (mutt_pattern_exec
2349 (color->color_pattern, M_MATCH_FULL_ADDRESS, ctx, curhdr)) {
2350 curhdr->pair = color->pair;
2353 curhdr->pair = ColorDefs[MT_COLOR_NORMAL];