Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 1.26 KB | None | 0 0
  1. # Each element is a list comprising the following elements
  2. # - component
  3. # - config name
  4. # - config type
  5. # - config variable
  6. # - default value
  7. # - documentation string
  8. set config_items {
  9.   {
  10.     NeoMutt
  11.     abort_noattach
  12.     DT_QUAD
  13.     C_AbortNoattach
  14.     MUTT_NO
  15.     { If set to \fIyes\fP, when composing messages containing the regular
  16.       expression specified by $$abort_noattach_regex and no attachments are
  17.       given, composition will be aborted. If set to \fIno\fP, composing
  18.       messages as such will never be aborted.
  19.       .pp
  20.       Example:
  21.       .ts
  22.       set abort_noattach_regex = "\\<attach(ed|ments?)\\>"
  23.       .te
  24.     }
  25.   }
  26.   {
  27.     NeoMutt
  28.     abort_noattach_regex
  29.     DT_REGEX
  30.     C_AbortNoattachRegex
  31.     {\\<(attach|attached|attachments?)\\>}
  32.     { .pp
  33.       Specifies a regular expression to match against the body of the
  34.       message, to determine if an attachment was mentioned but mistakenly
  35.       forgotten.  If it matches, $$abort_noattach will be consulted to
  36.       determine if message sending will be aborted.
  37.       .pp
  38.       Like other regular expressions in NeoMutt, the search is case sensitive
  39.       if the pattern contains at least one upper case letter, and case
  40.       insensitive otherwise.
  41.     }
  42.   }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement