pub enum AskKind {
Show 30 variants
Limit,
Search {
back: bool,
},
Pattern {
op: PatternOp,
},
CopyTo {
delete: bool,
tagged: bool,
decode: bool,
},
Pipe {
tagged: bool,
},
PrintConfirm {
tagged: bool,
default_yes: bool,
},
BounceTo {
tagged: bool,
},
BounceConfirm {
to: String,
tagged: bool,
},
Purge {
quit: bool,
},
Sort,
AliasNick {
addr: String,
},
EditLabel {
tagged: bool,
},
ReplyTo,
ComposeTo,
ComposeCc,
ComposeBcc,
ComposeSubject,
NoSubject {
default_yes: bool,
},
IncludeReply {
default_yes: bool,
},
ForwardAttach,
NoAttach,
EditHeader {
name: String,
},
EditFcc,
AttachFile,
AttachField {
k: usize,
is_type: bool,
},
Security,
PostponeAsk {
default_yes: bool,
},
Shell,
QuitConfirm,
AppendConfirm {
input: String,
delete: bool,
tagged: bool,
decode: bool,
},
}Expand description
Which question is being answered, and everything the operation was holding when it stopped to ask. The front end carries it back untouched, so nothing about a half-done operation lives in the front end.
Variants§
Limit
mutt’s limit: show only the messages matching a pattern.
Search
An index search; back is mutt’s search-reverse.
Pattern
A mark applied to every message matching a pattern.
CopyTo
Where to copy the messages, and whether the originals are marked deleted afterwards (mutt’s save).
Fields
Pipe
PrintConfirm
mutt’s $print: print this message? default_yes is what Enter
takes, from ask-yes or ask-no (rmut’s default, as in mutt).
BounceTo
BounceConfirm
Purge
Purge the deleted messages? quit leaves afterwards.
Sort
mutt’s sort menu: one key picks the order.
AliasNick
The nick for a create-alias; the address came from the message.
EditLabel
mutt’s edit-label: the X-Label for the message or the tagged set. Empty clears it.
ReplyTo
mutt’s $reply_to (ask-yes): reply to the Reply-To address?
ComposeTo
Who the draft goes to.
ComposeCc
mutt’s $askcc / $askbcc: who else gets a copy.
ComposeBcc
ComposeSubject
What it is about.
NoSubject
mutt’s $abort_nosubject: no subject, abort? default_yes is
what Enter takes, from ask-yes (mutt’s default) or ask-no.
IncludeReply
mutt’s $include: quote the original in the reply? default_yes
is what Enter takes, from ask-yes or ask-no.
ForwardAttach
mime_forward = “ask”: forward the original as an attachment?
NoAttach
$abort_noattach = ask: the body mentions an attachment and none is attached. Send it anyway?
EditHeader
A header of the draft in hand, edited from the compose menu.
EditFcc
Where the sent copy goes (empty keeps none).
AttachFile
A file to attach.
AttachField
The description or the content-type of the k-th attachment.
Security
mutt’s compose menu p: sign, encrypt, both, or neither.
PostponeAsk
Leaving the compose menu: postpone the draft, or throw it away?
Shell
mutt’s !: a shell command to run with the display stood down.
QuitConfirm
mutt’s $quit: leave the mailbox and the program?
AppendConfirm
mutt’s $confirmappend: the target mailbox exists; add to it?