{ "editor", MENU_EDITOR },
{ "index", MENU_MAIN },
{ "pager", MENU_PAGER },
- { "postpone", MENU_POST },
+ { "postpone", MENU_POSTPONE },
{ "pgp", MENU_PGP },
{ "smime", MENU_SMIME },
#ifdef CRYPT_BACKEND_GPGME
create_bindings(OpCompose, MENU_COMPOSE);
create_bindings(OpMain, MENU_MAIN);
create_bindings(OpPager, MENU_PAGER);
- create_bindings(OpPost, MENU_POST);
+ create_bindings(OpPost, MENU_POSTPONE);
create_bindings(OpQuery, MENU_QUERY);
create_bindings(OpAlias, MENU_ALIAS);
return OpPager;
case MENU_PGP:
return (WithCrypto & APPLICATION_PGP) ? OpPgp : NULL;
- case MENU_POST:
+ case MENU_POSTPONE:
return OpPost;
case MENU_QUERY:
return OpQuery;
MENU_GENERIC, ///< Generic selection list
MENU_MAIN, ///< Index panel (list of emails)
MENU_PAGER, ///< Pager pager (email viewer)
- MENU_POST, ///< Select a postponed email
+ MENU_POSTPONE, ///< Select a postponed email
MENU_QUERY, ///< Select from results of external query
MENU_PGP, ///< PGP encryption menu
MENU_SMIME, ///< SMIME encryption menu
bool done = false;
char helpstr[1024];
- struct Menu *menu = mutt_menu_new(MENU_POST);
+ struct Menu *menu = mutt_menu_new(MENU_POSTPONE);
menu->menu_make_entry = post_make_entry;
menu->max = ctx->mailbox->msg_count;
menu->title = _("Postponed Messages");
menu->data = ctx;
- menu->help = mutt_compile_help(helpstr, sizeof(helpstr), MENU_POST, PostponeHelp);
+ menu->help = mutt_compile_help(helpstr, sizeof(helpstr), MENU_POSTPONE, PostponeHelp);
mutt_menu_push_current(menu);
/* The postponed mailbox is setup to have sorting disabled, but the global