221 {
222
224 N_(
"Set preference order for multipart alternatives"),
225 N_(
"alternative-order <mime-type>[/<mime-subtype> ] [ ... ]"),
226 "mimesupport.html#alternative-order" },
228 N_(
"Automatically display specified MIME types inline"),
229 N_(
"auto-view <mime-type>[/<mime-subtype> ] [ ... ]"),
230 "mimesupport.html#auto-view" },
232 N_(
"Define custom order of headers displayed"),
233 N_(
"header-order <header> [ <header> ... ]"),
234 "configuration.html#header-order" },
236 N_(
"Hide specified headers when displaying messages"),
237 N_(
"ignore <string> [ <string> ...]"),
238 "configuration.html#ignore" },
240 N_(
"Permit specific header-fields in mailto URL processing"),
241 N_(
"mailto-allow { * | <header-field> ... }"),
242 "configuration.html#mailto-allow" },
244 N_(
"Remove a spam detection rule"),
245 N_(
"nospam { * | <regex> }"),
246 "configuration.html#spam" },
248 N_(
"Set a score value on emails matching a pattern"),
249 N_(
"score <pattern> <value>"),
250 "configuration.html#score-command" },
252 N_(
"Define rules to parse spam detection headers"),
253 N_(
"spam <regex> [ <format> ]"),
254 "configuration.html#spam" },
256 N_(
"Define expandos tags"),
257 N_(
"tag-formats <tag> <format-string> [ ... ] }"),
258 "optionalfeatures.html#custom-tags" },
260 N_(
"Rules to transform tags into icons"),
261 N_(
"tag-transforms <tag> <transformed-string> [ ... ]"),
262 "optionalfeatures.html#custom-tags" },
264 N_(
"Remove MIME types from preference order"),
265 N_(
"unalternative-order { * | [ <mime-type>[/<mime-subtype> ] ... ] }"),
266 "mimesupport.html#alternative-order" },
268 N_(
"Remove MIME types from `auto-view` list"),
269 N_(
"unauto-view { * | [ <mime-type>[/<mime-subtype> ] ... ] }"),
270 "mimesupport.html#auto-view" },
272 N_(
"Remove header from `header-order` list"),
273 N_(
"unheader-order { * | <header> ... }"),
274 "configuration.html#header-order" },
276 N_(
"Remove a header from the `header-order` list"),
277 N_(
"unignore { * | <string> ... }"),
278 "configuration.html#ignore" },
280 N_(
"Disallow header-fields in mailto processing"),
281 N_(
"unmailto-allow { * | <header-field> ... }"),
282 "configuration.html#mailto-allow" },
284 N_(
"Remove scoring rules for matching patterns"),
285 N_(
"unscore { * | <pattern> ... }"),
286 "configuration.html#score-command" },
287
288
293 {
"unalternative_order",
CMD_NONE, NULL,
"unalternative-order", NULL, NULL,
CF_SYNONYM },
297
299
300};
@ CF_SYNONYM
Command is a synonym for another command.
@ CF_NONE
No flags are set.
@ CMD_TAG_TRANSFORMS
:tag-transforms
@ CMD_MAILTO_ALLOW
:mailto-allow
@ CMD_AUTO_VIEW
:auto-view
@ CMD_UNALTERNATIVE_ORDER
:unalternative-order
@ CMD_UNAUTO_VIEW
:unauto-view
@ CMD_UNHEADER_ORDER
:unheader-order
@ CMD_TAG_FORMATS
:tag-formats
@ CMD_ALTERNATIVE_ORDER
:alternative-order
@ CMD_HEADER_ORDER
:header-order
@ CMD_UNMAILTO_ALLOW
:unmailto-allow
enum CommandResult parse_tag_transforms(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'tag-transforms' command - Implements Command::parse() -.
enum CommandResult parse_nospam(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'nospam' command - Implements Command::parse() -.
enum CommandResult parse_unlist(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse an unlist command - Implements Command::parse() -.
enum CommandResult parse_tag_formats(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'tag-formats' command - Implements Command::parse() -.
enum CommandResult parse_unscore(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'unscore' command - Implements Command::parse() -.
enum CommandResult parse_unignore(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'unignore' command - Implements Command::parse() -.
enum CommandResult parse_spam(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'spam' command - Implements Command::parse() -.
enum CommandResult parse_ignore(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'ignore' command - Implements Command::parse() -.
enum CommandResult parse_score(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'score' command - Implements Command::parse() -.
enum CommandResult parse_list(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse a list command - Implements Command::parse() -.