My configuration files for Debian/Ubuntu applications
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

7024 行
189 KiB

  1. #
  2. # System configuration file for NeoMutt
  3. #
  4. # Default list of header fields to weed when displaying.
  5. # Ignore all lines by default...
  6. ignore *
  7. # ... then allow these through.
  8. unignore from: subject to cc date x-mailer x-url user-agent
  9. # Display the fields in this order
  10. hdr_order date from to cc subject
  11. # emacs-like bindings
  12. bind editor "\e<delete>" kill-word
  13. bind editor "\e<backspace>" kill-word
  14. # map delete-char to a sane value
  15. bind editor <delete> delete-char
  16. # some people actually like these settings
  17. #set pager_stop
  18. #bind pager <up> previous-line
  19. #bind pager <down> next-line
  20. # Specifies how to sort messages in the index menu.
  21. set sort=threads
  22. # The behavior of this option on the Debian mutt package is
  23. # not the original one because exim4, the default SMTP on Debian
  24. # does not strip bcc headers so this can cause privacy problems;
  25. # see man muttrc for more info
  26. #unset write_bcc
  27. # Postfix and qmail use Delivered-To for detecting loops
  28. unset bounce_delivered
  29. set mixmaster="mixmaster-filter"
  30. # System-wide CA file managed by the ca-certificates package
  31. set ssl_ca_certificates_file="/etc/ssl/certs/ca-certificates.crt"
  32. # imitate the old search-body function
  33. macro index \eb "<search>~b " "search in message bodies"
  34. # simulate the old url menu
  35. macro index,pager,attach,compose \cb "\
  36. <enter-command> set my_pipe_decode=\$pipe_decode pipe_decode<Enter>\
  37. <pipe-message> urlview<Enter>\
  38. <enter-command> set pipe_decode=\$my_pipe_decode; unset my_pipe_decode<Enter>" \
  39. "call urlview to extract URLs out of a message"
  40. # Show documentation when pressing F1
  41. macro generic,pager <F1> "<shell-escape> zcat /usr/share/doc/neomutt/manual.txt.gz | sensible-pager<enter>" "show NeoMutt documentation"
  42. # show the incoming mailboxes list (just like "neomutt -y") and back when pressing "y"
  43. macro index y "<change-folder>?" "show incoming mailboxes list"
  44. macro pager y "<exit><change-folder>?" "show incoming mailboxes list"
  45. bind browser y exit
  46. # Handler for gzip compressed mailboxes
  47. # open-hook '\.gz$' "gzip --stdout --decompress '%f' > '%t'"
  48. # close-hook '\.gz$' "gzip --stdout '%t' > '%f'"
  49. # append-hook '\.gz$' "gzip --stdout '%t' >> '%f'"
  50. # If NeoMutt is unable to determine your site's domain name correctly, you can
  51. # set the default here. (better: fix /etc/mailname)
  52. #
  53. # set hostname=cs.hmc.edu
  54. # If your sendmail supports the -B8BITMIME flag, enable the following
  55. #
  56. # set use_8bitmime
  57. # Use mime.types to look up handlers for application/octet-stream. Can
  58. # be undone with unmime_lookup.
  59. mime_lookup application/octet-stream
  60. # Upgrade the progress counter every 250ms, good for mutt over SSH
  61. # see http://bugs.debian.org/537746
  62. set time_inc=250
  63. # Allow mutt to understand References, Cc and In-Reply-To as headers in mailto:
  64. mailto_allow = cc in-reply-to references
  65. ##
  66. ## *** DEFAULT SETTINGS FOR THE ATTACHMENTS PATCH ***
  67. ##
  68. ##
  69. ## Please see the manual (section "attachments") for detailed
  70. ## documentation of the "attachments" command.
  71. ##
  72. ## Removing a pattern from a list removes that pattern literally. It
  73. ## does not remove any type matching the pattern.
  74. ##
  75. ## attachments +A */.*
  76. ## attachments +A image/jpeg
  77. ## unattachments +A */.*
  78. ##
  79. ## This leaves "attached" image/jpeg files on the allowed attachments
  80. ## list. It does not remove all items, as you might expect, because the
  81. ## second */.* is not a matching expression at this time.
  82. ##
  83. ## Remember: "unattachments" only undoes what "attachments" has done!
  84. ## It does not trigger any matching on actual messages.
  85. ## Qualify any MIME part with an "attachment" disposition, EXCEPT for
  86. ## text/x-vcard and application/pgp parts. (PGP parts are already known
  87. ## to neomutt, and can be searched for with ~g, ~G, and ~k.)
  88. ##
  89. ## I've added x-pkcs7 to this, since it functions (for S/MIME)
  90. ## analogously to PGP signature attachments. S/MIME isn't supported
  91. ## in a stock neomutt build, but we can still treat it specially here.
  92. ##
  93. attachments +A */.*
  94. attachments -A text/x-vcard application/pgp.*
  95. attachments -A application/x-pkcs7-.*
  96. ## Discount all MIME parts with an "inline" disposition, unless they're
  97. ## text/plain. (Why inline a text/plain part unless it's external to the
  98. ## message flow?)
  99. ##
  100. attachments +I text/plain
  101. ## These two lines make NeoMutt qualify MIME containers. (So, for example,
  102. ## a message/rfc822 forward will count as an attachment.) The first
  103. ## line is unnecessary if you already have "attach-allow */.*", of
  104. ## course. These are off by default! The MIME elements contained
  105. ## within a message/* or multipart/* are still examined, even if the
  106. ## containers themselves don't qualify.
  107. ##
  108. #attachments +A message/.* multipart/.*
  109. #attachments +I message/.* multipart/.*
  110. ## You probably don't really care to know about deleted attachments.
  111. attachments -A message/external-body
  112. attachments -I message/external-body
  113. ##
  114. ## More settings
  115. ##
  116. # set abort_backspace=yes
  117. #
  118. # Name: abort_backspace
  119. # Type: boolean
  120. # Default: yes
  121. #
  122. #
  123. # If set, hitting backspace against an empty prompt aborts the
  124. # prompt.
  125. #
  126. #
  127. # set abort_key="007"
  128. #
  129. # Name: abort_key
  130. # Type: string
  131. # Default: "007"
  132. #
  133. #
  134. # Specifies the key that can be used to abort prompts. The format is the
  135. # same as used in "bind" commands. The default is equivalent to "\G".
  136. # Note that the specified key should not be used in other bindings, as the
  137. # abort operation has higher precedence and the binding will not have the
  138. # desired effect.
  139. #
  140. # Example:
  141. # set abort_key = "<Esc>"
  142. #
  143. # Please note that when using <Esc> as the abort key, you may also want to
  144. # set the environment variable ESCDELAY to a low value or even 0 which will
  145. # reduce the time that ncurses waits to distinguish singular <Esc> key
  146. # presses from the start of a terminal escape sequence. The default time is
  147. # 1000 milliseconds and thus quite noticeable.
  148. #
  149. #
  150. # set abort_noattach=no
  151. #
  152. # Name: abort_noattach
  153. # Type: quadoption
  154. # Default: no
  155. #
  156. #
  157. # If set to yes, when composing messages containing the regular
  158. # expression specified by $abort_noattach_regex and no attachments are
  159. # given, composition will be aborted. If set to no, composing messages
  160. # as such will never be aborted.
  161. #
  162. # Example:
  163. # set abort_noattach_regex = "\\<attach(|ed|ments?)\\>"
  164. #
  165. #
  166. # set abort_noattach_regex="\\<(attach|attached|attachments?)\\>"
  167. #
  168. # Name: abort_noattach_regex
  169. # Type: regular expression
  170. # Default: "\\<(attach|attached|attachments?)\\>"
  171. #
  172. #
  173. # Specifies a regular expression to match against the body of the message, to
  174. # determine if an attachment was mentioned but mistakenly forgotten. If it
  175. # matches, $abort_noattach will be consulted to determine if message sending
  176. # will be aborted.
  177. #
  178. # Like other regular expressions in NeoMutt, the search is case sensitive
  179. # if the pattern contains at least one upper case letter, and case
  180. # insensitive otherwise.
  181. #
  182. #
  183. # set abort_nosubject=ask-yes
  184. #
  185. # Name: abort_nosubject
  186. # Type: quadoption
  187. # Default: ask-yes
  188. #
  189. #
  190. # If set to yes, when composing messages and no subject is given
  191. # at the subject prompt, composition will be aborted. If set to
  192. # no, composing messages with no subject given at the subject
  193. # prompt will never be aborted.
  194. #
  195. #
  196. # set abort_unmodified=yes
  197. #
  198. # Name: abort_unmodified
  199. # Type: quadoption
  200. # Default: yes
  201. #
  202. #
  203. # If set to yes, composition will automatically abort after
  204. # editing the message body if no changes are made to the file (this
  205. # check only happens after the first edit of the file). When set
  206. # to no, composition will never be aborted.
  207. #
  208. #
  209. # set alias_file="~/.neomuttrc"
  210. #
  211. # Name: alias_file
  212. # Type: path
  213. # Default: "~/.neomuttrc"
  214. #
  215. #
  216. # The default file in which to save aliases created by the
  217. # <create-alias> function. Entries added to this file are
  218. # encoded in the character set specified by $config_charset if it
  219. # is set or the current character set otherwise.
  220. #
  221. # Note: NeoMutt will not automatically source this file; you must
  222. # explicitly use the "source" command for it to be executed in case
  223. # this option points to a dedicated alias file.
  224. #
  225. # The default for this option is the currently used neomuttrc file, or
  226. # "~/.neomuttrc" if no user neomuttrc was found.
  227. #
  228. #
  229. # set alias_format="%3n %f%t %-15a %-56r | %c"
  230. #
  231. # Name: alias_format
  232. # Type: string
  233. # Default: "%3n %f%t %-15a %-56r | %c"
  234. #
  235. #
  236. # Specifies the format of the data displayed for the "alias" menu. The
  237. # following printf(3)-style sequences are available:
  238. # %a Alias name
  239. # %c Comment
  240. # %f Flags - currently, a "d" for an alias marked for deletion
  241. # %n Index number
  242. # %r Address which alias expands to
  243. # %t Character which indicates if the alias is tagged for inclusion
  244. # %>X right justify the rest of the string and pad with character "X"
  245. # %|X pad to the end of the line with character "X"
  246. # %*X soft-fill with character "X" as pad
  247. #
  248. #
  249. # set allow_8bit=yes
  250. #
  251. # Name: allow_8bit
  252. # Type: boolean
  253. # Default: yes
  254. #
  255. #
  256. # Controls whether 8-bit data is converted to 7-bit using either Quoted-
  257. # Printable or Base64 encoding when sending mail.
  258. #
  259. #
  260. # set allow_ansi=no
  261. #
  262. # Name: allow_ansi
  263. # Type: boolean
  264. # Default: no
  265. #
  266. #
  267. # Controls whether ANSI color codes in messages (and color tags in
  268. # rich text messages) are to be interpreted.
  269. # Messages containing these codes are rare, but if this option is set,
  270. # their text will be colored accordingly. Note that this may override
  271. # your color choices, and even present a security problem, since a
  272. # message could include a line like
  273. # [-- PGP output follows ...
  274. #
  275. # and give it the same color as your attachment color (see also
  276. # $crypt_timestamp).
  277. #
  278. #
  279. # set arrow_cursor=no
  280. #
  281. # Name: arrow_cursor
  282. # Type: boolean
  283. # Default: no
  284. #
  285. #
  286. # When set, an arrow ("->") will be used to indicate the current entry
  287. # in menus instead of highlighting the whole line. On slow network or modem
  288. # links this will make response faster because there is less that has to
  289. # be redrawn on the screen when moving to the next or previous entries
  290. # in the menu.
  291. #
  292. #
  293. # set arrow_string="->"
  294. #
  295. # Name: arrow_string
  296. # Type: string
  297. # Default: "->"
  298. #
  299. #
  300. # Specifies the string of arrow_cursor when arrow_cursor enabled.
  301. #
  302. #
  303. # set ascii_chars=no
  304. #
  305. # Name: ascii_chars
  306. # Type: boolean
  307. # Default: no
  308. #
  309. #
  310. # If set, NeoMutt will use plain ASCII characters when displaying thread
  311. # and attachment trees, instead of the default ACS characters.
  312. #
  313. #
  314. # set ask_follow_up=no
  315. #
  316. # Name: ask_follow_up
  317. # Type: boolean
  318. # Default: no
  319. #
  320. #
  321. # If set, NeoMutt will prompt you for follow-up groups before editing
  322. # the body of an outgoing message.
  323. #
  324. #
  325. # set ask_x_comment_to=no
  326. #
  327. # Name: ask_x_comment_to
  328. # Type: boolean
  329. # Default: no
  330. #
  331. #
  332. # If set, NeoMutt will prompt you for x-comment-to field before editing
  333. # the body of an outgoing message.
  334. #
  335. #
  336. # set askbcc=no
  337. #
  338. # Name: askbcc
  339. # Type: boolean
  340. # Default: no
  341. #
  342. #
  343. # If set, NeoMutt will prompt you for blind-carbon-copy (Bcc) recipients
  344. # before editing an outgoing message.
  345. #
  346. #
  347. # set askcc=no
  348. #
  349. # Name: askcc
  350. # Type: boolean
  351. # Default: no
  352. #
  353. #
  354. # If set, NeoMutt will prompt you for carbon-copy (Cc) recipients before
  355. # editing the body of an outgoing message.
  356. #
  357. #
  358. # set assumed_charset=""
  359. #
  360. # Name: assumed_charset
  361. # Type: string
  362. # Default: ""
  363. #
  364. #
  365. # This variable is a colon-separated list of character encoding
  366. # schemes for messages without character encoding indication.
  367. # Header field values and message body content without character encoding
  368. # indication would be assumed that they are written in one of this list.
  369. # By default, all the header fields and message body without any charset
  370. # indication are assumed to be in "us-ascii".
  371. #
  372. # For example, Japanese users might prefer this:
  373. # set assumed_charset="iso-2022-jp:euc-jp:shift_jis:utf-8"
  374. #
  375. # However, only the first content is valid for the message body.
  376. #
  377. #
  378. # set attach_charset=""
  379. #
  380. # Name: attach_charset
  381. # Type: string
  382. # Default: ""
  383. #
  384. #
  385. # This variable is a colon-separated list of character encoding
  386. # schemes for text file attachments. NeoMutt uses this setting to guess
  387. # which encoding files being attached are encoded in to convert them to
  388. # a proper character set given in $send_charset.
  389. #
  390. # If unset, the value of $charset will be used instead.
  391. # For example, the following configuration would work for Japanese
  392. # text handling:
  393. # set attach_charset="iso-2022-jp:euc-jp:shift_jis:utf-8"
  394. #
  395. # Note: for Japanese users, "iso-2022-*" must be put at the head
  396. # of the value as shown above if included.
  397. #
  398. #
  399. # set attach_format="%u%D%I %t%4n %T%.40d%> [%.7m/%.10M, %.6e%?C?, %C?, %s] "
  400. #
  401. # Name: attach_format
  402. # Type: string
  403. # Default: "%u%D%I %t%4n %T%.40d%> [%.7m/%.10M, %.6e%?C?, %C?, %s] "
  404. #
  405. #
  406. # This variable describes the format of the "attachment" menu. The
  407. # following printf(3)-style sequences are understood:
  408. # %C Charset
  409. # %c Requires charset conversion ("n" or "c")
  410. # %D Deleted flag
  411. # %d Description (if none, falls back to %F)
  412. # %e MIME content-transfer-encoding
  413. # %f Filename
  414. # %F Filename in content-disposition header (if none, falls back to %f)
  415. # %I Disposition ("I" for inline, "A" for attachment)
  416. # %m Major MIME type
  417. # %M MIME subtype
  418. # %n Attachment number
  419. # %Q "Q", if MIME part qualifies for attachment counting
  420. # %s Size (see formatstrings-size)
  421. # %T Graphic tree characters
  422. # %t Tagged flag
  423. # %u Unlink (=to delete) flag
  424. # %X Number of qualifying MIME parts in this part and its children
  425. # (please see the "attachments" section for possible speed effects)
  426. # %>X Right justify the rest of the string and pad with character "X"
  427. # %|X Pad to the end of the line with character "X"
  428. # %*X Soft-fill with character "X" as pad
  429. #
  430. #
  431. # For an explanation of "soft-fill", see the $index_format documentation.
  432. #
  433. #
  434. # set attach_save_dir="./"
  435. #
  436. # Name: attach_save_dir
  437. # Type: path
  438. # Default: "./"
  439. #
  440. #
  441. # The directory where attachments are saved.
  442. #
  443. #
  444. # set attach_save_without_prompting=no
  445. #
  446. # Name: attach_save_without_prompting
  447. # Type: boolean
  448. # Default: no
  449. #
  450. #
  451. # This variable, when set to true, will cause attachments to be saved to
  452. # the 'attach_save_dir' location without prompting the user for the filename.
  453. #
  454. #
  455. #
  456. # set attach_sep="\n"
  457. #
  458. # Name: attach_sep
  459. # Type: string
  460. # Default: "\n"
  461. #
  462. #
  463. # The separator to add between attachments when operating (saving,
  464. # printing, piping, etc) on a list of tagged attachments.
  465. #
  466. #
  467. # set attach_split=yes
  468. #
  469. # Name: attach_split
  470. # Type: boolean
  471. # Default: yes
  472. #
  473. #
  474. # If this variable is unset, when operating (saving, printing, piping,
  475. # etc) on a list of tagged attachments, NeoMutt will concatenate the
  476. # attachments and will operate on them as a single attachment. The
  477. # $attach_sep separator is added after each attachment. When set,
  478. # NeoMutt will operate on the attachments one by one.
  479. #
  480. #
  481. # set attribution="On %d, %n wrote:"
  482. #
  483. # Name: attribution
  484. # Type: string
  485. # Default: "On %d, %n wrote:"
  486. #
  487. #
  488. # This is the string that will precede a message which has been included
  489. # in a reply. For a full listing of defined printf(3)-like sequences see
  490. # the section on $index_format.
  491. #
  492. #
  493. # set attribution_locale=""
  494. #
  495. # Name: attribution_locale
  496. # Type: string
  497. # Default: ""
  498. #
  499. #
  500. # The locale used by strftime(3) to format dates in the
  501. # attribution string. Legal values are the strings your system
  502. # accepts for the locale environment variable $LC_TIME.
  503. #
  504. # This variable is to allow the attribution date format to be
  505. # customized by recipient or folder using hooks. By default, NeoMutt
  506. # will use your locale environment, so there is no need to set
  507. # this except to override that default.
  508. #
  509. #
  510. # set auto_subscribe=no
  511. #
  512. # Name: auto_subscribe
  513. # Type: boolean
  514. # Default: no
  515. #
  516. #
  517. # When set, NeoMutt assumes the presence of a List-Post header
  518. # means the recipient is subscribed to the list. Unless the mailing list
  519. # is in the "unsubscribe" or "unlist" lists, it will be added
  520. # to the "subscribe" list. Parsing and checking these things slows
  521. # header reading down, so this option is disabled by default.
  522. #
  523. #
  524. # set auto_tag=no
  525. #
  526. # Name: auto_tag
  527. # Type: boolean
  528. # Default: no
  529. #
  530. #
  531. # When set, functions in the index menu which affect a message
  532. # will be applied to all tagged messages (if there are any). When
  533. # unset, you must first use the <tag-prefix> function (bound to ";"
  534. # by default) to make the next function apply to all tagged messages.
  535. #
  536. #
  537. # set autocrypt=no
  538. #
  539. # Name: autocrypt
  540. # Type: boolean
  541. # Default: no
  542. #
  543. #
  544. # When set, enables autocrypt, which provides
  545. # passive encryption protection with keys exchanged via headers.
  546. # See "autocryptdoc" for more details.
  547. # (Autocrypt only)
  548. #
  549. #
  550. # set autocrypt_acct_format="%4n %-30a %20p %10s"
  551. #
  552. # Name: autocrypt_acct_format
  553. # Type: string
  554. # Default: "%4n %-30a %20p %10s"
  555. #
  556. #
  557. # This variable describes the format of the "autocrypt account" menu.
  558. # The following printf(3)-style sequences are understood
  559. # %a email address
  560. # %k gpg keyid
  561. # %n current entry number
  562. # %p prefer-encrypt flag
  563. # %s status flag (active/inactive)
  564. #
  565. #
  566. # (Autocrypt only)
  567. #
  568. #
  569. # set autocrypt_dir="~/.mutt/autocrypt"
  570. #
  571. # Name: autocrypt_dir
  572. # Type: path
  573. # Default: "~/.mutt/autocrypt"
  574. #
  575. #
  576. # This variable sets where autocrypt files are stored, including the GPG
  577. # keyring and SQLite database. See "autocryptdoc" for more details.
  578. # (Autocrypt only)
  579. #
  580. #
  581. # set autocrypt_reply=yes
  582. #
  583. # Name: autocrypt_reply
  584. # Type: boolean
  585. # Default: yes
  586. #
  587. #
  588. # When set, replying to an autocrypt email automatically
  589. # enables autocrypt in the reply. You may want to unset this if you're using
  590. # the same key for autocrypt as normal web-of-trust, so that autocrypt
  591. # isn't forced on for all encrypted replies.
  592. # (Autocrypt only)
  593. #
  594. #
  595. # set autoedit=no
  596. #
  597. # Name: autoedit
  598. # Type: boolean
  599. # Default: no
  600. #
  601. #
  602. # When set along with $edit_headers, NeoMutt will skip the initial
  603. # send-menu (prompting for subject and recipients) and allow you to
  604. # immediately begin editing the body of your
  605. # message. The send-menu may still be accessed once you have finished
  606. # editing the body of your message.
  607. #
  608. # Note: when this option is set, you can't use send-hooks that depend
  609. # on the recipients when composing a new (non-reply) message, as the initial
  610. # list of recipients is empty.
  611. #
  612. # Also see $fast_reply.
  613. #
  614. #
  615. # set beep=yes
  616. #
  617. # Name: beep
  618. # Type: boolean
  619. # Default: yes
  620. #
  621. #
  622. # When this variable is set, NeoMutt will beep when an error occurs.
  623. #
  624. #
  625. # set beep_new=no
  626. #
  627. # Name: beep_new
  628. # Type: boolean
  629. # Default: no
  630. #
  631. #
  632. # When this variable is set, NeoMutt will beep whenever it prints a message
  633. # notifying you of new mail. This is independent of the setting of the
  634. # $beep variable.
  635. #
  636. #
  637. # set bounce=ask-yes
  638. #
  639. # Name: bounce
  640. # Type: quadoption
  641. # Default: ask-yes
  642. #
  643. #
  644. # Controls whether you will be asked to confirm bouncing messages.
  645. # If set to yes you don't get asked if you want to bounce a
  646. # message. Setting this variable to no is not generally useful,
  647. # and thus not recommended, because you are unable to bounce messages.
  648. #
  649. #
  650. # set bounce_delivered=yes
  651. #
  652. # Name: bounce_delivered
  653. # Type: boolean
  654. # Default: yes
  655. #
  656. #
  657. # When this variable is set, NeoMutt will include Delivered-To headers when
  658. # bouncing messages. Postfix users may wish to unset this variable.
  659. #
  660. # Note: On Debian systems, this option is unset by default in
  661. # /etc/Muttrc.
  662. #
  663. #
  664. # set braille_friendly=no
  665. #
  666. # Name: braille_friendly
  667. # Type: boolean
  668. # Default: no
  669. #
  670. #
  671. # When this variable is set, NeoMutt will place the cursor at the beginning
  672. # of the current line in menus, even when the $arrow_cursor variable
  673. # is unset, making it easier for blind persons using Braille displays to
  674. # follow these menus. The option is unset by default because many
  675. # visual terminals don't permit making the cursor invisible.
  676. #
  677. #
  678. # set browser_abbreviate_mailboxes=yes
  679. #
  680. # Name: browser_abbreviate_mailboxes
  681. # Type: boolean
  682. # Default: yes
  683. #
  684. #
  685. # When this variable is set, NeoMutt will abbreviate mailbox
  686. # names in the browser mailbox list, using '~' and '='
  687. # shortcuts.
  688. #
  689. # The default "alpha" setting of $sort_browser uses
  690. # locale-based sorting (using strcoll(3)), which ignores some
  691. # punctuation. This can lead to some situations where the order
  692. # doesn't make intuitive sense. In those cases, it may be
  693. # desirable to unset this variable.
  694. #
  695. #
  696. # set catchup_newsgroup=ask-yes
  697. #
  698. # Name: catchup_newsgroup
  699. # Type: quadoption
  700. # Default: ask-yes
  701. #
  702. #
  703. # If this variable is set, NeoMutt will mark all articles in newsgroup
  704. # as read when you quit the newsgroup (catchup newsgroup).
  705. #
  706. #
  707. # set certificate_file="~/.mutt_certificates"
  708. #
  709. # Name: certificate_file
  710. # Type: path
  711. # Default: "~/.mutt_certificates"
  712. #
  713. #
  714. # This variable specifies the file where the certificates you trust
  715. # are saved. When an unknown certificate is encountered, you are asked
  716. # if you accept it or not. If you accept it, the certificate can also
  717. # be saved in this file and further connections are automatically
  718. # accepted.
  719. #
  720. # You can also manually add CA certificates in this file. Any server
  721. # certificate that is signed with one of these CA certificates is
  722. # also automatically accepted.
  723. #
  724. # Example:
  725. # set certificate_file=~/.neomutt/certificates
  726. #
  727. #
  728. # set change_folder_next=no
  729. #
  730. # Name: change_folder_next
  731. # Type: boolean
  732. # Default: no
  733. #
  734. #
  735. # When this variable is set, the <change-folder> function
  736. # mailbox suggestion will start at the next folder in your "mailboxes"
  737. # list, instead of starting at the first folder in the list.
  738. #
  739. #
  740. # set charset=""
  741. #
  742. # Name: charset
  743. # Type: string
  744. # Default: ""
  745. #
  746. #
  747. # Character set your terminal uses to display and enter textual data.
  748. # It is also the fallback for $send_charset.
  749. #
  750. # Upon startup NeoMutt tries to derive this value from environment variables
  751. # such as $LC_CTYPE or $LANG.
  752. #
  753. # Note: It should only be set in case NeoMutt isn't able to determine the
  754. # character set used correctly.
  755. #
  756. #
  757. # set check_mbox_size=no
  758. #
  759. # Name: check_mbox_size
  760. # Type: boolean
  761. # Default: no
  762. #
  763. #
  764. # When this variable is set, NeoMutt will use file size attribute instead of
  765. # access time when checking for new mail in mbox and mmdf folders.
  766. #
  767. # This variable is unset by default and should only be enabled when
  768. # new mail detection for these folder types is unreliable or doesn't work.
  769. #
  770. # Note that enabling this variable should happen before any "mailboxes"
  771. # directives occur in configuration files regarding mbox or mmdf folders
  772. # because NeoMutt needs to determine the initial new mail status of such a
  773. # mailbox by performing a fast mailbox scan when it is defined.
  774. # Afterwards the new mail status is tracked by file size changes.
  775. #
  776. #
  777. # set check_new=yes
  778. #
  779. # Name: check_new
  780. # Type: boolean
  781. # Default: yes
  782. #
  783. #
  784. # Note: this option only affects maildir and MH style
  785. # mailboxes.
  786. #
  787. # When set, NeoMutt will check for new mail delivered while the
  788. # mailbox is open. Especially with MH mailboxes, this operation can
  789. # take quite some time since it involves scanning the directory and
  790. # checking each file to see if it has already been looked at. If
  791. # this variable is unset, no check for new mail is performed
  792. # while the mailbox is open.
  793. #
  794. #
  795. # set collapse_all=no
  796. #
  797. # Name: collapse_all
  798. # Type: boolean
  799. # Default: no
  800. #
  801. #
  802. # When set, NeoMutt will collapse all threads when entering a folder.
  803. #
  804. #
  805. # set collapse_flagged=yes
  806. #
  807. # Name: collapse_flagged
  808. # Type: boolean
  809. # Default: yes
  810. #
  811. #
  812. # When unset, NeoMutt will not collapse a thread if it contains any
  813. # flagged messages.
  814. #
  815. #
  816. # set collapse_unread=yes
  817. #
  818. # Name: collapse_unread
  819. # Type: boolean
  820. # Default: yes
  821. #
  822. #
  823. # When unset, NeoMutt will not collapse a thread if it contains any
  824. # unread messages.
  825. #
  826. #
  827. # set compose_format="-- NeoMutt: Compose [Approx. msg size: %l Atts: %a]%>-"
  828. #
  829. # Name: compose_format
  830. # Type: string
  831. # Default: "-- NeoMutt: Compose [Approx. msg size: %l Atts: %a]%>-"
  832. #
  833. #
  834. # Controls the format of the status line displayed in the "compose"
  835. # menu. This string is similar to $status_format, but has its own
  836. # set of printf(3)-like sequences:
  837. # %a Total number of attachments
  838. # %h Local hostname
  839. # %l Approximate size (in bytes) of the current message (see formatstrings-size)
  840. # %v NeoMutt version string
  841. # %>X right justify the rest of the string and pad with character "X"
  842. # %|X pad to the end of the line with character "X"
  843. # %*X soft-fill with character "X" as pad
  844. #
  845. #
  846. # See the text describing the $status_format option for more
  847. # information on how to set $compose_format.
  848. #
  849. #
  850. # set compose_show_user_headers=yes
  851. #
  852. # Name: compose_show_user_headers
  853. # Type: boolean
  854. # Default: yes
  855. #
  856. #
  857. # When set, Neomutt will display user-defined headers (set via my_hdr
  858. # or from editing with edit-headers).
  859. #
  860. #
  861. # set config_charset=""
  862. #
  863. # Name: config_charset
  864. # Type: string
  865. # Default: ""
  866. #
  867. #
  868. # When defined, NeoMutt will recode commands in rc files from this
  869. # encoding to the current character set as specified by $charset
  870. # and aliases written to $alias_file from the current character set.
  871. #
  872. # Please note that if setting $charset it must be done before
  873. # setting $config_charset.
  874. #
  875. # Recoding should be avoided as it may render unconvertable
  876. # characters as question marks which can lead to undesired
  877. # side effects (for example in regular expressions).
  878. #
  879. #
  880. # set confirmappend=yes
  881. #
  882. # Name: confirmappend
  883. # Type: boolean
  884. # Default: yes
  885. #
  886. #
  887. # When set, NeoMutt will prompt for confirmation when appending messages to
  888. # an existing mailbox.
  889. #
  890. #
  891. # set confirmcreate=yes
  892. #
  893. # Name: confirmcreate
  894. # Type: boolean
  895. # Default: yes
  896. #
  897. #
  898. # When set, NeoMutt will prompt for confirmation when saving messages to a
  899. # mailbox which does not yet exist before creating it.
  900. #
  901. #
  902. # set connect_timeout=30
  903. #
  904. # Name: connect_timeout
  905. # Type: number
  906. # Default: 30
  907. #
  908. #
  909. # Causes NeoMutt to timeout a network connection (for IMAP, POP or SMTP) after this
  910. # many seconds if the connection is not able to be established. A negative
  911. # value causes NeoMutt to wait indefinitely for the connection attempt to succeed.
  912. #
  913. #
  914. # set content_type="text/plain"
  915. #
  916. # Name: content_type
  917. # Type: string
  918. # Default: "text/plain"
  919. #
  920. #
  921. # Sets the default Content-Type for the body of newly composed messages.
  922. #
  923. #
  924. # set copy=yes
  925. #
  926. # Name: copy
  927. # Type: quadoption
  928. # Default: yes
  929. #
  930. #
  931. # This variable controls whether or not copies of your outgoing messages
  932. # will be saved for later references. Also see $record,
  933. # $save_name, $force_name and "fcc-hook".
  934. #
  935. #
  936. # set copy_decode_weed=no
  937. #
  938. # Name: copy_decode_weed
  939. # Type: boolean
  940. # Default: no
  941. #
  942. #
  943. # Controls whether NeoMutt will weed headers when invoking the
  944. # <decode-copy> or <decode-save> functions.
  945. #
  946. #
  947. # set count_alternatives=no
  948. #
  949. # Name: count_alternatives
  950. # Type: boolean
  951. # Default: no
  952. #
  953. #
  954. # When set, Mutt will recurse inside multipart/alternatives while
  955. # performing attachment searching and counting(see attachments).
  956. #
  957. # Traditionally, multipart/alternative parts have simply represented
  958. # different encodings of the main content of the email. Unfortunately,
  959. # some mail clients have started to place email attachments inside
  960. # one of alternatives. Setting this will allow Mutt to find
  961. # and count matching attachments hidden there, and include them
  962. # in the index via %X or through ~X pattern matching.
  963. #
  964. #
  965. # set crypt_autoencrypt=no
  966. #
  967. # Name: crypt_autoencrypt
  968. # Type: boolean
  969. # Default: no
  970. #
  971. #
  972. # Setting this variable will cause NeoMutt to always attempt to PGP
  973. # encrypt outgoing messages. This is probably only useful in
  974. # connection to the "send-hook" command. It can be overridden
  975. # by use of the pgp menu, when encryption is not required or
  976. # signing is requested as well. If $smime_is_default is set,
  977. # then OpenSSL is used instead to create S/MIME messages and
  978. # settings can be overridden by use of the smime menu instead.
  979. # (Crypto only)
  980. #
  981. #
  982. # set crypt_autopgp=yes
  983. #
  984. # Name: crypt_autopgp
  985. # Type: boolean
  986. # Default: yes
  987. #
  988. #
  989. # This variable controls whether or not NeoMutt may automatically enable
  990. # PGP encryption/signing for messages. See also $crypt_autoencrypt,
  991. # $crypt_replyencrypt,
  992. # $crypt_autosign, $crypt_replysign and $smime_is_default.
  993. #
  994. #
  995. # set crypt_autosign=no
  996. #
  997. # Name: crypt_autosign
  998. # Type: boolean
  999. # Default: no
  1000. #
  1001. #
  1002. # Setting this variable will cause NeoMutt to always attempt to
  1003. # cryptographically sign outgoing messages. This can be overridden
  1004. # by use of the pgp menu, when signing is not required or
  1005. # encryption is requested as well. If $smime_is_default is set,
  1006. # then OpenSSL is used instead to create S/MIME messages and settings can
  1007. # be overridden by use of the smime menu instead of the pgp menu.
  1008. # (Crypto only)
  1009. #
  1010. #
  1011. # set crypt_autosmime=yes
  1012. #
  1013. # Name: crypt_autosmime
  1014. # Type: boolean
  1015. # Default: yes
  1016. #
  1017. #
  1018. # This variable controls whether or not NeoMutt may automatically enable
  1019. # S/MIME encryption/signing for messages. See also $crypt_autoencrypt,
  1020. # $crypt_replyencrypt,
  1021. # $crypt_autosign, $crypt_replysign and $smime_is_default.
  1022. #
  1023. #
  1024. # set crypt_chars="SPsK "
  1025. #
  1026. # Name: crypt_chars
  1027. # Type: character string
  1028. # Default: "SPsK "
  1029. #
  1030. #
  1031. # Controls the characters used in cryptography flags.
  1032. # Character Default Description
  1033. # 1 S The mail is signed, and the signature is successfully verified.
  1034. # 2 P The mail is PGP encrypted.
  1035. # 3 s The mail is signed.
  1036. # 4 K The mail contains a PGP public key.
  1037. # 5 <space> The mail has no crypto info.
  1038. #
  1039. #
  1040. # set crypt_confirmhook=yes
  1041. #
  1042. # Name: crypt_confirmhook
  1043. # Type: boolean
  1044. # Default: yes
  1045. #
  1046. #
  1047. # If set, then you will be prompted for confirmation of keys when using
  1048. # the crypt-hook command. If unset, no such confirmation prompt will
  1049. # be presented. This is generally considered unsafe, especially where
  1050. # typos are concerned.
  1051. #
  1052. #
  1053. # set crypt_opportunistic_encrypt=no
  1054. #
  1055. # Name: crypt_opportunistic_encrypt
  1056. # Type: boolean
  1057. # Default: no
  1058. #
  1059. #
  1060. # Setting this variable will cause NeoMutt to automatically enable and
  1061. # disable encryption, based on whether all message recipient keys
  1062. # can be located by NeoMutt.
  1063. #
  1064. # When this option is enabled, NeoMutt will enable/disable encryption
  1065. # each time the TO, CC, and BCC lists are edited. If
  1066. # $edit_headers is set, NeoMutt will also do so each time the message
  1067. # is edited.
  1068. #
  1069. # While this is set, encryption can't be manually enabled/disabled.
  1070. # The pgp or smime menus provide a selection to temporarily disable
  1071. # this option for the current message.
  1072. #
  1073. # If $crypt_autoencrypt or $crypt_replyencrypt enable encryption for
  1074. # a message, this option will be disabled for that message. It can
  1075. # be manually re-enabled in the pgp or smime menus.
  1076. # (Crypto only)
  1077. #
  1078. #
  1079. # set crypt_opportunistic_encrypt_strong_keys=no
  1080. #
  1081. # Name: crypt_opportunistic_encrypt_strong_keys
  1082. # Type: boolean
  1083. # Default: no
  1084. #
  1085. #
  1086. # When set, this modifies the behavior of $crypt_opportunistic_encrypt
  1087. # to only search for "strong keys", that is, keys with full validity
  1088. # according to the web-of-trust algorithm. A key with marginal or no
  1089. # validity will not enable opportunistic encryption.
  1090. #
  1091. # For S/MIME, the behavior depends on the backend. Classic S/MIME will
  1092. # filter for certificates with the 't'(trusted) flag in the .index file.
  1093. # The GPGME backend will use the same filters as with OpenPGP, and depends
  1094. # on GPGME's logic for assigning the GPGME_VALIDITY_FULL and
  1095. # GPGME_VALIDITY_ULTIMATE validity flag.
  1096. #
  1097. #
  1098. # set crypt_protected_headers_read=yes
  1099. #
  1100. # Name: crypt_protected_headers_read
  1101. # Type: boolean
  1102. # Default: yes
  1103. #
  1104. #
  1105. # When set, NeoMutt will display protected headers ("Memory Hole") in the pager,
  1106. # When set, NeoMutt will display protected headers in the pager,
  1107. # and will update the index and header cache with revised headers.
  1108. #
  1109. # Protected headers are stored inside the encrypted or signed part of an
  1110. # an email, to prevent disclosure or tampering.
  1111. # For more information see https://github.com/autocrypt/protected-headers
  1112. # Currently NeoMutt only supports the Subject header.
  1113. #
  1114. # Encrypted messages using protected headers often substitute the exposed
  1115. # Subject header with a dummy value (see $crypt_protected_headers_subject).
  1116. # NeoMutt will update its concept of the correct subject after the
  1117. # message is opened, i.e. via the <display-message> function.
  1118. # If you reply to a message before opening it, NeoMutt will end up using
  1119. # the dummy Subject header, so be sure to open such a message first.
  1120. # (Crypto only)
  1121. #
  1122. #
  1123. # set crypt_protected_headers_save=no
  1124. #
  1125. # Name: crypt_protected_headers_save
  1126. # Type: boolean
  1127. # Default: no
  1128. #
  1129. #
  1130. # When $crypt_protected_headers_read is set, and a message with a
  1131. # protected Subject is opened, NeoMutt will save the updated Subject
  1132. # into the header cache by default. This allows searching/limiting
  1133. # based on the protected Subject header if the mailbox is
  1134. # re-opened, without having to re-open the message each time.
  1135. # However, for mbox/mh mailbox types, or if header caching is not
  1136. # set up, you would need to re-open the message each time the
  1137. # mailbox was reopened before you could see or search/limit on the
  1138. # protected subject again.
  1139. #
  1140. # When this variable is set, NeoMutt additionally saves the protected
  1141. # Subject back in the clear-text message headers. This
  1142. # provides better usability, but with the tradeoff of reduced
  1143. # security. The protected Subject header, which may have
  1144. # previously been encrypted, is now stored in clear-text in the
  1145. # message headers. Copying the message elsewhere, via NeoMutt or
  1146. # external tools, could expose this previously encrypted data.
  1147. # Please make sure you understand the consequences of this before
  1148. # you enable this variable.
  1149. # (Crypto only)
  1150. #
  1151. #
  1152. # set crypt_protected_headers_subject="..."
  1153. #
  1154. # Name: crypt_protected_headers_subject
  1155. # Type: string
  1156. # Default: "..."
  1157. #
  1158. #
  1159. # When $crypt_protected_headers_write is set, and the message is marked
  1160. # for encryption, this will be substituted into the Subject field in the
  1161. # message headers.
  1162. #
  1163. # To prevent a subject from being substituted, unset this variable, or set it
  1164. # to the empty string.
  1165. # (Crypto only)
  1166. #
  1167. #
  1168. # set crypt_protected_headers_write=no
  1169. #
  1170. # Name: crypt_protected_headers_write
  1171. # Type: boolean
  1172. # Default: no
  1173. #
  1174. #
  1175. # When set, NeoMutt will generate protected headers for signed and encrypted
  1176. # emails.
  1177. #
  1178. # Protected headers are stored inside the encrypted or signed part of an
  1179. # an email, to prevent disclosure or tampering.
  1180. # For more information see https://github.com/autocrypt/protected-headers
  1181. #
  1182. # Currently NeoMutt only supports the Subject header.
  1183. # (Crypto only)
  1184. #
  1185. #
  1186. # set crypt_replyencrypt=yes
  1187. #
  1188. # Name: crypt_replyencrypt
  1189. # Type: boolean
  1190. # Default: yes
  1191. #
  1192. #
  1193. # If set, automatically PGP or OpenSSL encrypt replies to messages which are
  1194. # encrypted.
  1195. # (Crypto only)
  1196. #
  1197. #
  1198. # set crypt_replysign=no
  1199. #
  1200. # Name: crypt_replysign
  1201. # Type: boolean
  1202. # Default: no
  1203. #
  1204. #
  1205. # If set, automatically PGP or OpenSSL sign replies to messages which are
  1206. # signed.
  1207. #
  1208. # Note: this does not work on messages that are encrypted
  1209. # and signed!
  1210. # (Crypto only)
  1211. #
  1212. #
  1213. # set crypt_replysignencrypted=no
  1214. #
  1215. # Name: crypt_replysignencrypted
  1216. # Type: boolean
  1217. # Default: no
  1218. #
  1219. #
  1220. # If set, automatically PGP or OpenSSL sign replies to messages
  1221. # which are encrypted. This makes sense in combination with
  1222. # $crypt_replyencrypt, because it allows you to sign all
  1223. # messages which are automatically encrypted. This works around
  1224. # the problem noted in $crypt_replysign, that NeoMutt is not able
  1225. # to find out whether an encrypted message is also signed.
  1226. # (Crypto only)
  1227. #
  1228. #
  1229. # set crypt_timestamp=yes
  1230. #
  1231. # Name: crypt_timestamp
  1232. # Type: boolean
  1233. # Default: yes
  1234. #
  1235. #
  1236. # If set, NeoMutt will include a time stamp in the lines surrounding
  1237. # PGP or S/MIME output, so spoofing such lines is more difficult.
  1238. # If you are using colors to mark these lines, and rely on these,
  1239. # you may unset this setting.
  1240. # (Crypto only)
  1241. #
  1242. #
  1243. # set crypt_use_gpgme=yes
  1244. #
  1245. # Name: crypt_use_gpgme
  1246. # Type: boolean
  1247. # Default: yes
  1248. #
  1249. #
  1250. # This variable controls the use of the GPGME-enabled crypto backends.
  1251. # If it is set and NeoMutt was built with GPGME support, the gpgme code for
  1252. # S/MIME and PGP will be used instead of the classic code. Note that
  1253. # you need to set this option in .neomuttrc; it won't have any effect when
  1254. # used interactively.
  1255. #
  1256. # Note that the GPGME backend does not support creating old-style inline
  1257. # (traditional) PGP encrypted or signed messages (see $pgp_autoinline).
  1258. #
  1259. #
  1260. # set crypt_use_pka=no
  1261. #
  1262. # Name: crypt_use_pka
  1263. # Type: boolean
  1264. # Default: no
  1265. #
  1266. #
  1267. # Controls whether NeoMutt uses PKA
  1268. # (see http://www.g10code.de/docs/pka-intro.de.pdf) during signature
  1269. # verification (only supported by the GPGME backend).
  1270. #
  1271. #
  1272. # set crypt_verify_sig=yes
  1273. #
  1274. # Name: crypt_verify_sig
  1275. # Type: quadoption
  1276. # Default: yes
  1277. #
  1278. #
  1279. # If "yes", always attempt to verify PGP or S/MIME signatures.
  1280. # If "ask-*", ask whether or not to verify the signature.
  1281. # If "no", never attempt to verify cryptographic signatures.
  1282. # (Crypto only)
  1283. #
  1284. #
  1285. # set date_format="!%a, %b %d, %Y at %I:%M:%S%p %Z"
  1286. #
  1287. # Name: date_format
  1288. # Type: string
  1289. # Default: "!%a, %b %d, %Y at %I:%M:%S%p %Z"
  1290. #
  1291. #
  1292. # This variable controls the format of the date printed by the "%d"
  1293. # sequence in $index_format. This is passed to the strftime(3)
  1294. # function to process the date, see the man page for the proper syntax.
  1295. #
  1296. # Unless the first character in the string is a bang ("!"), the month
  1297. # and week day names are expanded according to the locale.
  1298. # If the first character in the string is a
  1299. # bang, the bang is discarded, and the month and week day names in the
  1300. # rest of the string are expanded in the C locale (that is in US
  1301. # English).
  1302. #
  1303. #
  1304. # set debug_file="~/.neomuttdebug"
  1305. #
  1306. # Name: debug_file
  1307. # Type: path
  1308. # Default: "~/.neomuttdebug"
  1309. #
  1310. #
  1311. # Debug logging is controlled by the variables $debug_file and $debug_level.
  1312. # $debug_file specifies the root of the filename. NeoMutt will add "0" to the end.
  1313. # Each time NeoMutt is run with logging enabled, the log files are rotated.
  1314. # A maximum of five log files are kept, numbered 0 (most recent) to 4 (oldest).
  1315. #
  1316. # This option can be enabled on the command line, "neomutt -l mylog"
  1317. #
  1318. # See also: $debug_level
  1319. #
  1320. #
  1321. # set debug_level=0
  1322. #
  1323. # Name: debug_level
  1324. # Type: number
  1325. # Default: 0
  1326. #
  1327. #
  1328. # Debug logging is controlled by the variables $debug_file and $debug_level.
  1329. #
  1330. # The debug level controls how much information is saved to the log file.
  1331. # If you have a problem with NeoMutt, then enabling logging may help find the cause.
  1332. # Levels 1-3 will usually provide enough information for writing a bug report.
  1333. # Levels 4,5 will be extremely verbose.
  1334. #
  1335. # Warning: Logging at high levels may save private information to the file.
  1336. #
  1337. # This option can be enabled on the command line, "neomutt -d 2"
  1338. #
  1339. # See also: $debug_file
  1340. #
  1341. #
  1342. # set default_hook="~f %s !~P | (~P ~C %s)"
  1343. #
  1344. # Name: default_hook
  1345. # Type: string
  1346. # Default: "~f %s !~P | (~P ~C %s)"
  1347. #
  1348. #
  1349. # This variable controls how "message-hook", "reply-hook", "send-hook",
  1350. # "send2-hook", "save-hook", and "fcc-hook" will
  1351. # be interpreted if they are specified with only a simple regex,
  1352. # instead of a matching pattern. The hooks are expanded when they are
  1353. # declared, so a hook will be interpreted according to the value of this
  1354. # variable at the time the hook is declared.
  1355. #
  1356. # The default value matches
  1357. # if the message is either from a user matching the regular expression
  1358. # given, or if it is from you (if the from address matches
  1359. # "alternates") and is to or cc'ed to a user matching the given
  1360. # regular expression.
  1361. #
  1362. #
  1363. # set delete=ask-yes
  1364. #
  1365. # Name: delete
  1366. # Type: quadoption
  1367. # Default: ask-yes
  1368. #
  1369. #
  1370. # Controls whether or not messages are really deleted when closing or
  1371. # synchronizing a mailbox. If set to yes, messages marked for
  1372. # deleting will automatically be purged without prompting. If set to
  1373. # no, messages marked for deletion will be kept in the mailbox.
  1374. #
  1375. #
  1376. # set delete_untag=yes
  1377. #
  1378. # Name: delete_untag
  1379. # Type: boolean
  1380. # Default: yes
  1381. #
  1382. #
  1383. # If this option is set, NeoMutt will untag messages when marking them
  1384. # for deletion. This applies when you either explicitly delete a message,
  1385. # or when you save it to another folder.
  1386. #
  1387. #
  1388. # set digest_collapse=yes
  1389. #
  1390. # Name: digest_collapse
  1391. # Type: boolean
  1392. # Default: yes
  1393. #
  1394. #
  1395. # If this option is set, NeoMutt's received-attachments menu will not show the subparts of
  1396. # individual messages in a multipart/digest. To see these subparts, press "v" on that menu.
  1397. #
  1398. #
  1399. # set display_filter=""
  1400. #
  1401. # Name: display_filter
  1402. # Type: command
  1403. # Default: ""
  1404. #
  1405. #
  1406. # When set, specifies a command used to filter messages. When a message
  1407. # is viewed it is passed as standard input to $display_filter, and the
  1408. # filtered message is read from the standard output.
  1409. #
  1410. # When preparing the message, NeoMutt inserts some escape sequences into the
  1411. # text. They are of the form: <esc>]9;XXX<bel> where "XXX" is a random
  1412. # 64-bit number.
  1413. #
  1414. # If these escape sequences interfere with your filter, they can be removed
  1415. # using a tool like ansifilter or sed 's/^\x1b]9;[0-9]\+\x7//'
  1416. #
  1417. # If they are removed, then PGP and MIME headers will no longer be coloured.
  1418. # This can be fixed by adding this to your config:
  1419. # color body magenta default '^\[-- .* --\]$'.
  1420. #
  1421. #
  1422. # set dsn_notify=""
  1423. #
  1424. # Name: dsn_notify
  1425. # Type: string
  1426. # Default: ""
  1427. #
  1428. #
  1429. # This variable sets the request for when notification is returned. The
  1430. # string consists of a comma separated list (no spaces!) of one or more
  1431. # of the following: never, to never request notification,
  1432. # failure, to request notification on transmission failure,
  1433. # delay, to be notified of message delays, success, to be
  1434. # notified of successful transmission.
  1435. #
  1436. # Example:
  1437. # set dsn_notify="failure,delay"
  1438. #
  1439. # Note: when using $sendmail for delivery, you should not enable
  1440. # this unless you are either using Sendmail 8.8.x or greater or a MTA
  1441. # providing a sendmail(1)-compatible interface supporting the -N option
  1442. # for DSN. For SMTP delivery, DSN support is auto-detected so that it
  1443. # depends on the server whether DSN will be used or not.
  1444. #
  1445. #
  1446. # set dsn_return=""
  1447. #
  1448. # Name: dsn_return
  1449. # Type: string
  1450. # Default: ""
  1451. #
  1452. #
  1453. # This variable controls how much of your message is returned in DSN
  1454. # messages. It may be set to either hdrs to return just the
  1455. # message header, or full to return the full message.
  1456. #
  1457. # Example:
  1458. # set dsn_return=hdrs
  1459. #
  1460. # Note: when using $sendmail for delivery, you should not enable
  1461. # this unless you are either using Sendmail 8.8.x or greater or a MTA
  1462. # providing a sendmail(1)-compatible interface supporting the -R option
  1463. # for DSN. For SMTP delivery, DSN support is auto-detected so that it
  1464. # depends on the server whether DSN will be used or not.
  1465. #
  1466. #
  1467. # set duplicate_threads=yes
  1468. #
  1469. # Name: duplicate_threads
  1470. # Type: boolean
  1471. # Default: yes
  1472. #
  1473. #
  1474. # This variable controls whether NeoMutt, when $sort is set to threads, threads
  1475. # messages with the same Message-Id together. If it is set, it will indicate
  1476. # that it thinks they are duplicates of each other with an equals sign
  1477. # in the thread tree.
  1478. #
  1479. #
  1480. # set edit_headers=no
  1481. #
  1482. # Name: edit_headers
  1483. # Type: boolean
  1484. # Default: no
  1485. #
  1486. #
  1487. # This option allows you to edit the header of your outgoing messages
  1488. # along with the body of your message.
  1489. #
  1490. # Although the compose menu may have localized header labels, the
  1491. # labels passed to your editor will be standard RFC2822 headers,
  1492. # (e.g. To:, Cc:, Subject:). Headers added in your editor must
  1493. # also be RFC2822 headers, or one of the pseudo headers listed in
  1494. # "edit-header". NeoMutt will not understand localized header
  1495. # labels, just as it would not when parsing an actual email.
  1496. #
  1497. # Note that changes made to the References: and Date: headers are
  1498. # ignored for interoperability reasons.
  1499. #
  1500. #
  1501. # set editor="vi"
  1502. #
  1503. # Name: editor
  1504. # Type: command
  1505. # Default: "vi"
  1506. #
  1507. #
  1508. # This variable specifies which editor is used by NeoMutt.
  1509. # It defaults to the value of the $VISUAL, or $EDITOR, environment
  1510. # variable, or to the string "/usr/bin/editor" if neither of those are set.
  1511. #
  1512. # The $editor string may contain a %s escape, which will be replaced by the name
  1513. # of the file to be edited. If the %s escape does not appear in $editor, a
  1514. # space and the name to be edited are appended.
  1515. #
  1516. # The resulting string is then executed by running
  1517. # sh -c 'string'
  1518. #
  1519. # where string is the expansion of $editor described above.
  1520. #
  1521. #
  1522. # set empty_subject="Re: your mail"
  1523. #
  1524. # Name: empty_subject
  1525. # Type: string
  1526. # Default: "Re: your mail"
  1527. #
  1528. #
  1529. # This variable specifies the subject to be used when replying to an email
  1530. # with an empty subject. It defaults to "Re: your mail".
  1531. #
  1532. #
  1533. # set encode_from=no
  1534. #
  1535. # Name: encode_from
  1536. # Type: boolean
  1537. # Default: no
  1538. #
  1539. #
  1540. # When set, NeoMutt will quoted-printable encode messages when
  1541. # they contain the string "From " (note the trailing space) in the beginning of a line.
  1542. # This is useful to avoid the tampering certain mail delivery and transport
  1543. # agents tend to do with messages (in order to prevent tools from
  1544. # misinterpreting the line as a mbox message separator).
  1545. #
  1546. #
  1547. # set envelope_from_address=""
  1548. #
  1549. # Name: envelope_from_address
  1550. # Type: e-mail address
  1551. # Default: ""
  1552. #
  1553. #
  1554. # Manually sets the envelope sender for outgoing messages.
  1555. # This value is ignored if $use_envelope_from is unset.
  1556. #
  1557. #
  1558. # set external_search_command=""
  1559. #
  1560. # Name: external_search_command
  1561. # Type: command
  1562. # Default: ""
  1563. #
  1564. #
  1565. # If set, contains the name of the external program used by "~I" patterns.
  1566. # This will usually be a wrapper script around mairix, mu, or similar
  1567. # indexers other than notmuch (for which there is optional special support).
  1568. #
  1569. # Here is an example how it works. Let's assume $external_search_command
  1570. # is set to "mairix_filter", and mairix_filter is a script which
  1571. # runs the old but well loved mairix indexer with the arguments
  1572. # given to mairix_filter, in the "raw" mode of mairix, producing
  1573. # on the standard output a list of Message-IDs, one per line.
  1574. #
  1575. # If possible, it also filters down the results coming from mairix
  1576. # such that only messages in the current folder remain. It can do
  1577. # this because it gets a hidden first argument which is the path
  1578. # to the folder.
  1579. # (This can be the type of clean and simple script called a one-liner.)
  1580. #
  1581. # Now if NeoMutt gets a limit or tag command followed by the pattern
  1582. # "~I '-t s:bleeping='", mairix_filter runs mairix with the
  1583. # arguments from inside the quotes (the quotes are needed because
  1584. # of the space after "-t"), mairix finds all messages with
  1585. # "bleeping" in the Subject plus all messages sharing threads
  1586. # with these and outputs their file names, and mairix_filter
  1587. # translates the file names into Message-IDs. Finally, NeoMutt
  1588. # reads the Message-IDs and targets the matching messages with the
  1589. # command given to it.
  1590. #
  1591. # You, the user, still have to rewrite the mairix_filter script to
  1592. # match the behavior of your indexer, but this should help users
  1593. # of indexers other than notmuch to integrate them cleanly with NeoMutt.
  1594. #
  1595. #
  1596. # set fast_reply=no
  1597. #
  1598. # Name: fast_reply
  1599. # Type: boolean
  1600. # Default: no
  1601. #
  1602. #
  1603. # When set, the initial prompt for recipients and subject are skipped
  1604. # when replying to messages, and the initial prompt for subject is
  1605. # skipped when forwarding messages.
  1606. #
  1607. # Note: this variable has no effect when the $autoedit
  1608. # variable is set.
  1609. #
  1610. #
  1611. # set fcc_attach=yes
  1612. #
  1613. # Name: fcc_attach
  1614. # Type: quadoption
  1615. # Default: yes
  1616. #
  1617. #
  1618. # This variable controls whether or not attachments on outgoing messages
  1619. # are saved along with the main body of your message.
  1620. #
  1621. #
  1622. # set fcc_before_send=no
  1623. #
  1624. # Name: fcc_before_send
  1625. # Type: boolean
  1626. # Default: no
  1627. #
  1628. #
  1629. # When this variable is set, FCCs will occur before sending
  1630. # the message. Before sending, the message cannot be manipulated,
  1631. # so it will be stored the exact same as sent:
  1632. # $fcc_attach and $fcc_clear will be ignored (using their default
  1633. # values).
  1634. #
  1635. # When unset, the default, FCCs will occur after sending.
  1636. # Variables $fcc_attach and $fcc_clear will be respected, allowing
  1637. # it to be stored without attachments or encryption/signing if
  1638. # desired.
  1639. #
  1640. #
  1641. # set fcc_clear=no
  1642. #
  1643. # Name: fcc_clear
  1644. # Type: boolean
  1645. # Default: no
  1646. #
  1647. #
  1648. # When this variable is set, FCCs will be stored unencrypted and
  1649. # unsigned, even when the actual message is encrypted and/or
  1650. # signed.
  1651. # (PGP only)
  1652. #
  1653. #
  1654. # set flag_chars="*!DdrONon- "
  1655. #
  1656. # Name: flag_chars
  1657. # Type: character string
  1658. # Default: "*!DdrONon- "
  1659. #
  1660. #
  1661. # Controls the characters used in several flags.
  1662. # Character Default Description
  1663. # 1 * The mail is tagged.
  1664. # 2 ! The mail is flagged as important.
  1665. # 3 D The mail is marked for deletion.
  1666. # 4 d The mail has attachments marked for deletion.
  1667. # 5 r The mail has been replied to.
  1668. # 6 O The mail is Old (Unread but seen).
  1669. # 7 N The mail is New (Unread but not seen).
  1670. # 8 o The mail thread is Old (Unread but seen).
  1671. # 9 n The mail thread is New (Unread but not seen).
  1672. # 10 - The mail is read - %S expando.
  1673. # 11 <space> The mail is read - %Z expando.
  1674. #
  1675. #
  1676. # set flag_safe=no
  1677. #
  1678. # Name: flag_safe
  1679. # Type: boolean
  1680. # Default: no
  1681. #
  1682. #
  1683. # If set, flagged messages can't be deleted.
  1684. #
  1685. #
  1686. # set folder="~/Mail"
  1687. #
  1688. # Name: folder
  1689. # Type: mailbox
  1690. # Default: "~/Mail"
  1691. #
  1692. #
  1693. # Specifies the default location of your mailboxes. A "+" or "=" at the
  1694. # beginning of a pathname will be expanded to the value of this
  1695. # variable. Note that if you change this variable (from the default)
  1696. # value you need to make sure that the assignment occurs before
  1697. # you use "+" or "=" for any other variables since expansion takes place
  1698. # when handling the "mailboxes" command.
  1699. #
  1700. #
  1701. # set folder_format="%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %i"
  1702. #
  1703. # Name: folder_format
  1704. # Type: string
  1705. # Default: "%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %i"
  1706. #
  1707. #
  1708. # This variable allows you to customize the file browser display to your
  1709. # personal taste. This string is similar to $index_format, but has
  1710. # its own set of printf(3)-like sequences:
  1711. # %C Current file number
  1712. # %d Date/time folder was last modified
  1713. # %D Date/time folder was last modified using $date_format.
  1714. # %f Filename ("/" is appended to directory names,
  1715. # "@" to symbolic links and "*" to executable files)
  1716. # %F File permissions
  1717. # %g Group name (or numeric gid, if missing)
  1718. # %i Description of the folder
  1719. # %l Number of hard links
  1720. # %m * Number of messages in the mailbox
  1721. # %n * Number of unread messages in the mailbox
  1722. # %N "N" if mailbox has new mail, blank otherwise
  1723. # %s Size in bytes (see formatstrings-size)
  1724. # %t "*" if the file is tagged, blank otherwise
  1725. # %u Owner name (or numeric uid, if missing)
  1726. # %>X Right justify the rest of the string and pad with character "X"
  1727. # %|X Pad to the end of the line with character "X"
  1728. # %*X Soft-fill with character "X" as pad
  1729. #
  1730. #
  1731. # For an explanation of "soft-fill", see the $index_format documentation.
  1732. #
  1733. # * = can be optionally printed if nonzero
  1734. #
  1735. # %m, %n, and %N only work for monitored mailboxes.
  1736. # %m requires $mail_check_stats to be set.
  1737. # %n requires $mail_check_stats to be set (except for IMAP mailboxes).
  1738. #
  1739. #
  1740. # set followup_to=yes
  1741. #
  1742. # Name: followup_to
  1743. # Type: boolean
  1744. # Default: yes
  1745. #
  1746. #
  1747. # Controls whether or not the "Mail-Followup-To:" header field is
  1748. # generated when sending mail. When set, NeoMutt will generate this
  1749. # field when you are replying to a known mailing list, specified with
  1750. # the "subscribe" or "lists" commands.
  1751. #
  1752. # This field has two purposes. First, preventing you from
  1753. # receiving duplicate copies of replies to messages which you send
  1754. # to mailing lists, and second, ensuring that you do get a reply
  1755. # separately for any messages sent to known lists to which you are
  1756. # not subscribed.
  1757. #
  1758. # The header will contain only the list's address
  1759. # for subscribed lists, and both the list address and your own
  1760. # email address for unsubscribed lists. Without this header, a
  1761. # group reply to your message sent to a subscribed list will be
  1762. # sent to both the list and your address, resulting in two copies
  1763. # of the same email for you.
  1764. #
  1765. #
  1766. # set followup_to_poster=ask-yes
  1767. #
  1768. # Name: followup_to_poster
  1769. # Type: quadoption
  1770. # Default: ask-yes
  1771. #
  1772. #
  1773. # If this variable is set and the keyword "poster" is present in
  1774. # Followup-To header, follow-up to newsgroup function is not
  1775. # permitted. The message will be mailed to the submitter of the
  1776. # message via mail.
  1777. #
  1778. #
  1779. # set force_name=no
  1780. #
  1781. # Name: force_name
  1782. # Type: boolean
  1783. # Default: no
  1784. #
  1785. #
  1786. # This variable is similar to $save_name, except that NeoMutt will
  1787. # store a copy of your outgoing message by the username of the address
  1788. # you are sending to even if that mailbox does not exist.
  1789. #
  1790. # Also see the $record variable.
  1791. #
  1792. #
  1793. # set forward_attachments=ask-yes
  1794. #
  1795. # Name: forward_attachments
  1796. # Type: quadoption
  1797. # Default: ask-yes
  1798. #
  1799. #
  1800. # When forwarding inline (i.e. $mime_forward unset or
  1801. # answered with "no" and $forward_decode set), attachments
  1802. # which cannot be decoded in a reasonable manner will be attached
  1803. # to the newly composed message if this quadoption is set or
  1804. # answered with "yes".
  1805. #
  1806. #
  1807. # set forward_attribution_intro="----- Forwarded message from %f -----"
  1808. #
  1809. # Name: forward_attribution_intro
  1810. # Type: string
  1811. # Default: "----- Forwarded message from %f -----"
  1812. #
  1813. #
  1814. # This is the string that will precede a message which has been forwarded
  1815. # in the main body of a message (when $mime_forward is unset).
  1816. # For a full listing of defined printf(3)-like sequences see
  1817. # the section on $index_format. See also $attribution_locale.
  1818. #
  1819. #
  1820. # set forward_attribution_trailer="----- End forwarded message -----"
  1821. #
  1822. # Name: forward_attribution_trailer
  1823. # Type: string
  1824. # Default: "----- End forwarded message -----"
  1825. #
  1826. #
  1827. # This is the string that will follow a message which has been forwarded
  1828. # in the main body of a message (when $mime_forward is unset).
  1829. # For a full listing of defined printf(3)-like sequences see
  1830. # the section on $index_format. See also $attribution_locale.
  1831. #
  1832. #
  1833. # set forward_decode=yes
  1834. #
  1835. # Name: forward_decode
  1836. # Type: boolean
  1837. # Default: yes
  1838. #
  1839. #
  1840. # Controls the decoding of complex MIME messages into text/plain when
  1841. # forwarding a message. The message header is also RFC2047 decoded.
  1842. # This variable is only used, if $mime_forward is unset,
  1843. # otherwise $mime_forward_decode is used instead.
  1844. #
  1845. #
  1846. # set forward_decrypt=yes
  1847. #
  1848. # Name: forward_decrypt
  1849. # Type: boolean
  1850. # Default: yes
  1851. #
  1852. #
  1853. # Controls the handling of encrypted messages when forwarding a message.
  1854. # When set, the outer layer of encryption is stripped off. This
  1855. # variable is only used if $mime_forward is set and
  1856. # $mime_forward_decode is unset.
  1857. # (PGP only)
  1858. #
  1859. #
  1860. # set forward_edit=yes
  1861. #
  1862. # Name: forward_edit
  1863. # Type: quadoption
  1864. # Default: yes
  1865. #
  1866. #
  1867. # This quadoption controls whether or not the user is automatically
  1868. # placed in the editor when forwarding messages. For those who always want
  1869. # to forward with no modification, use a setting of "no".
  1870. #
  1871. #
  1872. # set forward_format="[%a: %s]"
  1873. #
  1874. # Name: forward_format
  1875. # Type: string
  1876. # Default: "[%a: %s]"
  1877. #
  1878. #
  1879. # This variable controls the default subject when forwarding a message.
  1880. # It uses the same format sequences as the $index_format variable.
  1881. #
  1882. #
  1883. # set forward_quote=no
  1884. #
  1885. # Name: forward_quote
  1886. # Type: boolean
  1887. # Default: no
  1888. #
  1889. #
  1890. # When set, forwarded messages included in the main body of the
  1891. # message (when $mime_forward is unset) will be quoted using
  1892. # $indent_string.
  1893. #
  1894. #
  1895. # set forward_references=no
  1896. #
  1897. # Name: forward_references
  1898. # Type: boolean
  1899. # Default: no
  1900. #
  1901. #
  1902. # When set, forwarded messages set the "In-Reply-To:" and
  1903. # "References:" headers in the same way as normal replies would. Hence the
  1904. # forwarded message becomes part of the original thread instead of starting
  1905. # a new one.
  1906. #
  1907. #
  1908. # set from=""
  1909. #
  1910. # Name: from
  1911. # Type: e-mail address
  1912. # Default: ""
  1913. #
  1914. #
  1915. # When set, this variable contains a default "from" address. It
  1916. # can be overridden using "my_hdr" (including from a "send-hook") and
  1917. # $reverse_name. This variable is ignored if $use_from is unset.
  1918. #
  1919. # If not specified, then it may be read from the environment variable $EMAIL.
  1920. #
  1921. #
  1922. # set from_chars=""
  1923. #
  1924. # Name: from_chars
  1925. # Type: character string
  1926. # Default: ""
  1927. #
  1928. #
  1929. # Controls the character used to prefix the %F and %L fields in the
  1930. # index.
  1931. # Character Description
  1932. # 1 Mail is written by you and has a To address, or has a known mailing list in the To address.
  1933. # 2 Mail is written by you and has a Cc address, or has a known mailing list in the Cc address.
  1934. # 3 Mail is written by you and has a Bcc address.
  1935. # 4 All remaining cases.
  1936. #
  1937. #
  1938. # If this is empty or unset (default), the traditional long "To ",
  1939. # "Cc " and "Bcc " prefixes are used. If set but too short to
  1940. # include a character for a particular case, a single space will be
  1941. # prepended to the field. To prevent any prefix at all from being
  1942. # added in a particular case, use the special value CR (aka ^M)
  1943. # for the corresponding character.
  1944. #
  1945. # This slightly odd interface is necessitated by NeoMutt's handling of
  1946. # string variables; one can't tell a variable that is unset from one
  1947. # that is set to the empty string.
  1948. #
  1949. #
  1950. # set gecos_mask="^[^,]*"
  1951. #
  1952. # Name: gecos_mask
  1953. # Type: regular expression
  1954. # Default: "^[^,]*"
  1955. #
  1956. #
  1957. # A regular expression used by NeoMutt to parse the GECOS field of a password
  1958. # entry when expanding the alias. The default value
  1959. # will return the string up to the first "," encountered.
  1960. # If the GECOS field contains a string like "lastname, firstname" then you
  1961. # should set it to ".*".
  1962. #
  1963. # This can be useful if you see the following behavior: you address an e-mail
  1964. # to user ID "stevef" whose full name is "Steve Franklin". If NeoMutt expands
  1965. # "stevef" to '"Franklin" stevef@foo.bar' then you should set the $gecos_mask to
  1966. # a regular expression that will match the whole name so NeoMutt will expand
  1967. # "Franklin" to "Franklin, Steve".
  1968. #
  1969. #
  1970. # set group_index_format="%4C %M%N %5s %-45.45f %d"
  1971. #
  1972. # Name: group_index_format
  1973. # Type: string
  1974. # Default: "%4C %M%N %5s %-45.45f %d"
  1975. #
  1976. #
  1977. # This variable allows you to customize the newsgroup browser display to
  1978. # your personal taste. This string is similar to "index_format", but
  1979. # has its own set of printf()-like sequences:
  1980. # %C Current newsgroup number
  1981. # %d Description of newsgroup (becomes from server)
  1982. # %f Newsgroup name
  1983. # %M - if newsgroup not allowed for direct post (moderated for example)
  1984. # %N N if newsgroup is new, u if unsubscribed, blank otherwise
  1985. # %n Number of new articles in newsgroup
  1986. # %s Number of unread articles in newsgroup
  1987. # %>X Right justify the rest of the string and pad with character "X"
  1988. # %|X Pad to the end of the line with character "X"
  1989. #
  1990. #
  1991. # set hdrs=yes
  1992. #
  1993. # Name: hdrs
  1994. # Type: boolean
  1995. # Default: yes
  1996. #
  1997. #
  1998. # When unset, the header fields normally added by the "my_hdr"
  1999. # command are not created. This variable must be unset before
  2000. # composing a new message or replying in order to take effect. If set,
  2001. # the user defined header fields are added to every new message.
  2002. #
  2003. #
  2004. # set header=no
  2005. #
  2006. # Name: header
  2007. # Type: boolean
  2008. # Default: no
  2009. #
  2010. #
  2011. # When set, this variable causes NeoMutt to include the header
  2012. # of the message you are replying to into the edit buffer.
  2013. # The $weed setting applies.
  2014. #
  2015. #
  2016. # set header_cache=""
  2017. #
  2018. # Name: header_cache
  2019. # Type: path
  2020. # Default: ""
  2021. #
  2022. #
  2023. # This variable points to the header cache database. If the path points to
  2024. # an existing directory, NeoMutt will create a dedicated header cache
  2025. # database per folder. Otherwise, the path points to a regular file, which
  2026. # will be created as needed and used as a shared global header cache for
  2027. # all folders.
  2028. # By default it is unset so no header caching will be used.
  2029. #
  2030. # Header caching can greatly improve speed when opening POP, IMAP
  2031. # MH or Maildir folders, see "caching" for details.
  2032. #
  2033. #
  2034. # set header_cache_backend=""
  2035. #
  2036. # Name: header_cache_backend
  2037. # Type: string
  2038. # Default: ""
  2039. #
  2040. #
  2041. # This variable specifies the header cache backend. By default it is
  2042. # unset so no header caching will be used.
  2043. #
  2044. #
  2045. # set header_color_partial=no
  2046. #
  2047. # Name: header_color_partial
  2048. # Type: boolean
  2049. # Default: no
  2050. #
  2051. #
  2052. # When set, color header regexes behave like color body regexes:
  2053. # color is applied to the exact text matched by the regex. When
  2054. # unset, color is applied to the entire header.
  2055. #
  2056. # One use of this option might be to apply color to just the header labels.
  2057. #
  2058. # See "color" for more details.
  2059. #
  2060. #
  2061. # set help=yes
  2062. #
  2063. # Name: help
  2064. # Type: boolean
  2065. # Default: yes
  2066. #
  2067. #
  2068. # When set, help lines describing the bindings for the major functions
  2069. # provided by each menu are displayed on the first line of the screen.
  2070. #
  2071. # Note: The binding will not be displayed correctly if the
  2072. # function is bound to a sequence rather than a single keystroke. Also,
  2073. # the help line may not be updated if a binding is changed while NeoMutt is
  2074. # running. Since this variable is primarily aimed at new users, neither
  2075. # of these should present a major problem.
  2076. #
  2077. #
  2078. # set hidden_host=no
  2079. #
  2080. # Name: hidden_host
  2081. # Type: boolean
  2082. # Default: no
  2083. #
  2084. #
  2085. # When set, NeoMutt will skip the host name part of $hostname variable
  2086. # when adding the domain part to addresses. This variable does not
  2087. # affect the generation of Message-IDs, and it will not lead to the
  2088. # cut-off of first-level domains.
  2089. #
  2090. #
  2091. # set hidden_tags="unread,draft,flagged,passed,replied,attachment,signed,encrypted"
  2092. #
  2093. # Name: hidden_tags
  2094. # Type: string list
  2095. # Default: "unread,draft,flagged,passed,replied,attachment,signed,encrypted"
  2096. #
  2097. #
  2098. # This variable specifies private notmuch/imap tags which should not be printed
  2099. # on screen.
  2100. #
  2101. #
  2102. # set hide_limited=no
  2103. #
  2104. # Name: hide_limited
  2105. # Type: boolean
  2106. # Default: no
  2107. #
  2108. #
  2109. # When set, NeoMutt will not show the presence of messages that are hidden
  2110. # by limiting, in the thread tree.
  2111. #
  2112. #
  2113. # set hide_missing=yes
  2114. #
  2115. # Name: hide_missing
  2116. # Type: boolean
  2117. # Default: yes
  2118. #
  2119. #
  2120. # When set, NeoMutt will not show the presence of missing messages in the
  2121. # thread tree.
  2122. #
  2123. #
  2124. # set hide_thread_subject=yes
  2125. #
  2126. # Name: hide_thread_subject
  2127. # Type: boolean
  2128. # Default: yes
  2129. #
  2130. #
  2131. # When set, NeoMutt will not show the subject of messages in the thread
  2132. # tree that have the same subject as their parent or closest previously
  2133. # displayed sibling.
  2134. #
  2135. #
  2136. # set hide_top_limited=no
  2137. #
  2138. # Name: hide_top_limited
  2139. # Type: boolean
  2140. # Default: no
  2141. #
  2142. #
  2143. # When set, NeoMutt will not show the presence of messages that are hidden
  2144. # by limiting, at the top of threads in the thread tree. Note that when
  2145. # $hide_limited is set, this option will have no effect.
  2146. #
  2147. #
  2148. # set hide_top_missing=yes
  2149. #
  2150. # Name: hide_top_missing
  2151. # Type: boolean
  2152. # Default: yes
  2153. #
  2154. #
  2155. # When set, NeoMutt will not show the presence of missing messages at the
  2156. # top of threads in the thread tree. Note that when $hide_missing is
  2157. # set, this option will have no effect.
  2158. #
  2159. #
  2160. # set history=10
  2161. #
  2162. # Name: history
  2163. # Type: number
  2164. # Default: 10
  2165. #
  2166. #
  2167. # This variable controls the size (in number of strings remembered) of
  2168. # the string history buffer per category. The buffer is cleared each time the
  2169. # variable is set.
  2170. #
  2171. #
  2172. # set history_file="~/.mutthistory"
  2173. #
  2174. # Name: history_file
  2175. # Type: path
  2176. # Default: "~/.mutthistory"
  2177. #
  2178. #
  2179. # The file in which NeoMutt will save its history.
  2180. #
  2181. # Also see $save_history.
  2182. #
  2183. #
  2184. # set history_remove_dups=no
  2185. #
  2186. # Name: history_remove_dups
  2187. # Type: boolean
  2188. # Default: no
  2189. #
  2190. #
  2191. # When set, all of the string history will be scanned for duplicates
  2192. # when a new entry is added. Duplicate entries in the $history_file will
  2193. # also be removed when it is periodically compacted.
  2194. #
  2195. #
  2196. # set honor_disposition=no
  2197. #
  2198. # Name: honor_disposition
  2199. # Type: boolean
  2200. # Default: no
  2201. #
  2202. #
  2203. # When set, NeoMutt will not display attachments with a
  2204. # disposition of "attachment" inline even if it could
  2205. # render the part to plain text. These MIME parts can only
  2206. # be viewed from the attachment menu.
  2207. #
  2208. # If unset, NeoMutt will render all MIME parts it can
  2209. # properly transform to plain text.
  2210. #
  2211. #
  2212. # set honor_followup_to=yes
  2213. #
  2214. # Name: honor_followup_to
  2215. # Type: quadoption
  2216. # Default: yes
  2217. #
  2218. #
  2219. # This variable controls whether or not a Mail-Followup-To header is
  2220. # honored when group-replying to a message.
  2221. #
  2222. #
  2223. # set hostname=""
  2224. #
  2225. # Name: hostname
  2226. # Type: string
  2227. # Default: ""
  2228. #
  2229. #
  2230. # Specifies the fully-qualified hostname of the system NeoMutt is running on
  2231. # containing the host's name and the DNS domain it belongs to. It is used
  2232. # as the domain part (after "@") for local email addresses as well as
  2233. # Message-Id headers.
  2234. #
  2235. # If not specified in a config file, then NeoMutt will try to determine the hostname itself.
  2236. #
  2237. # Optionally, NeoMutt can be compiled with a fixed domain name.
  2238. #
  2239. # Also see $use_domain and $hidden_host.
  2240. #
  2241. # Note: On Debian systems, the default for this variable is obtained
  2242. # from /etc/mailname when Mutt starts.
  2243. #
  2244. #
  2245. # set idn_decode=yes
  2246. #
  2247. # Name: idn_decode
  2248. # Type: boolean
  2249. # Default: yes
  2250. #
  2251. #
  2252. # When set, NeoMutt will show you international domain names decoded.
  2253. # Note: You can use IDNs for addresses even if this is unset.
  2254. # This variable only affects decoding. (IDN only)
  2255. #
  2256. #
  2257. # set idn_encode=yes
  2258. #
  2259. # Name: idn_encode
  2260. # Type: boolean
  2261. # Default: yes
  2262. #
  2263. #
  2264. # When set, NeoMutt will encode international domain names using
  2265. # IDN. Unset this if your SMTP server can handle newer (RFC6531)
  2266. # UTF-8 encoded domains. (IDN only)
  2267. #
  2268. #
  2269. # set ignore_list_reply_to=no
  2270. #
  2271. # Name: ignore_list_reply_to
  2272. # Type: boolean
  2273. # Default: no
  2274. #
  2275. #
  2276. # Affects the behavior of the <reply> function when replying to
  2277. # messages from mailing lists (as defined by the "subscribe" or
  2278. # "lists" commands). When set, if the "Reply-To:" field is
  2279. # set to the same value as the "To:" field, NeoMutt assumes that the
  2280. # "Reply-To:" field was set by the mailing list to automate responses
  2281. # to the list, and will ignore this field. To direct a response to the
  2282. # mailing list when this option is set, use the <list-reply>
  2283. # function; <group-reply> will reply to both the sender and the
  2284. # list.
  2285. #
  2286. #
  2287. # set imap_authenticators=""
  2288. #
  2289. # Name: imap_authenticators
  2290. # Type: string list
  2291. # Default: ""
  2292. #
  2293. #
  2294. # This is a colon-delimited list of authentication methods NeoMutt may
  2295. # attempt to use to log in to an IMAP server, in the order NeoMutt should
  2296. # try them. Authentication methods are either "login" or the right
  2297. # side of an IMAP "AUTH=xxx" capability string, e.g. "digest-md5", "gssapi"
  2298. # or "cram-md5". This option is case-insensitive. If it's
  2299. # unset (the default) NeoMutt will try all available methods,
  2300. # in order from most-secure to least-secure.
  2301. #
  2302. # Example:
  2303. # set imap_authenticators="gssapi:cram-md5:login"
  2304. #
  2305. # Note: NeoMutt will only fall back to other authentication methods if
  2306. # the previous methods are unavailable. If a method is available but
  2307. # authentication fails, NeoMutt will not connect to the IMAP server.
  2308. #
  2309. #
  2310. # set imap_check_subscribed=no
  2311. #
  2312. # Name: imap_check_subscribed
  2313. # Type: boolean
  2314. # Default: no
  2315. #
  2316. #
  2317. # When set, NeoMutt will fetch the set of subscribed folders from
  2318. # your server whenever a mailbox is selected, and add them to the set
  2319. # of mailboxes it polls for new mail just as if you had issued individual
  2320. # "mailboxes" commands.
  2321. #
  2322. #
  2323. # set imap_condstore=no
  2324. #
  2325. # Name: imap_condstore
  2326. # Type: boolean
  2327. # Default: no
  2328. #
  2329. #
  2330. # When set, NeoMutt will use the CONDSTORE extension (RFC7162)
  2331. # if advertised by the server. NeoMutt's current implementation is basic,
  2332. # used only for initial message fetching and flag updates.
  2333. #
  2334. # For some IMAP servers, enabling this will slightly speed up
  2335. # downloading initial messages. Unfortunately, Gmail is not one
  2336. # those, and displays worse performance when enabled. Your
  2337. # mileage may vary.
  2338. #
  2339. #
  2340. # set imap_delim_chars="/."
  2341. #
  2342. # Name: imap_delim_chars
  2343. # Type: string
  2344. # Default: "/."
  2345. #
  2346. #
  2347. # This contains the list of characters that NeoMutt will use as folder
  2348. # separators for IMAP paths, when no separator is provided on the IMAP
  2349. # connection.
  2350. #
  2351. #
  2352. # set imap_fetch_chunk_size=0
  2353. #
  2354. # Name: imap_fetch_chunk_size
  2355. # Type: number (long)
  2356. # Default: 0
  2357. #
  2358. #
  2359. # When set to a value greater than 0, new headers will be
  2360. # downloaded in groups of this many headers per request. If you
  2361. # have a very large mailbox, this might prevent a timeout and
  2362. # disconnect when opening the mailbox, by sending a FETCH per set
  2363. # of this many headers, instead of a single FETCH for all new
  2364. # headers.
  2365. #
  2366. #
  2367. # set imap_headers=""
  2368. #
  2369. # Name: imap_headers
  2370. # Type: string
  2371. # Default: ""
  2372. #
  2373. #
  2374. # NeoMutt requests these header fields in addition to the default headers
  2375. # ("Date:", "From:", "Sender:", "Subject:", "To:", "Cc:", "Message-Id:",
  2376. # "References:", "Content-Type:", "Content-Description:", "In-Reply-To:",
  2377. # "Reply-To:", "Lines:", "List-Post:", "X-Label:") from IMAP
  2378. # servers before displaying the index menu. You may want to add more
  2379. # headers for spam detection.
  2380. #
  2381. # Note: This is a space separated list, items should be uppercase
  2382. # and not contain the colon, e.g. "X-BOGOSITY X-SPAM-STATUS" for the
  2383. # "X-Bogosity:" and "X-Spam-Status:" header fields.
  2384. #
  2385. #
  2386. # set imap_idle=no
  2387. #
  2388. # Name: imap_idle
  2389. # Type: boolean
  2390. # Default: no
  2391. #
  2392. #
  2393. # When set, NeoMutt will attempt to use the IMAP IDLE extension
  2394. # to check for new mail in the current mailbox. Some servers
  2395. # (dovecot was the inspiration for this option) react badly
  2396. # to NeoMutt's implementation. If your connection seems to freeze
  2397. # up periodically, try unsetting this.
  2398. #
  2399. #
  2400. # set imap_keepalive=300
  2401. #
  2402. # Name: imap_keepalive
  2403. # Type: number
  2404. # Default: 300
  2405. #
  2406. #
  2407. # This variable specifies the maximum amount of time in seconds that NeoMutt
  2408. # will wait before polling open IMAP connections, to prevent the server
  2409. # from closing them before NeoMutt has finished with them. The default is
  2410. # well within the RFC-specified minimum amount of time (30 minutes) before
  2411. # a server is allowed to do this, but in practice the RFC does get
  2412. # violated every now and then. Reduce this number if you find yourself
  2413. # getting disconnected from your IMAP server due to inactivity.
  2414. #
  2415. #
  2416. # set imap_list_subscribed=no
  2417. #
  2418. # Name: imap_list_subscribed
  2419. # Type: boolean
  2420. # Default: no
  2421. #
  2422. #
  2423. # This variable configures whether IMAP folder browsing will look for
  2424. # only subscribed folders or all folders. This can be toggled in the
  2425. # IMAP browser with the <toggle-subscribed> function.
  2426. #
  2427. #
  2428. # set imap_login=""
  2429. #
  2430. # Name: imap_login
  2431. # Type: string
  2432. # Default: ""
  2433. #
  2434. #
  2435. # Your login name on the IMAP server.
  2436. #
  2437. # This variable defaults to the value of $imap_user.
  2438. #
  2439. #
  2440. # set imap_oauth_refresh_command=""
  2441. #
  2442. # Name: imap_oauth_refresh_command
  2443. # Type: command
  2444. # Default: ""
  2445. #
  2446. #
  2447. # The command to run to generate an OAUTH refresh token for
  2448. # authorizing your connection to your IMAP server. This command will be
  2449. # run on every connection attempt that uses the OAUTHBEARER authentication
  2450. # mechanism. See "oauth" for details.
  2451. #
  2452. #
  2453. # set imap_pass=""
  2454. #
  2455. # Name: imap_pass
  2456. # Type: string
  2457. # Default: ""
  2458. #
  2459. #
  2460. # Specifies the password for your IMAP account. If unset, NeoMutt will
  2461. # prompt you for your password when you invoke the <imap-fetch-mail> function
  2462. # or try to open an IMAP folder.
  2463. #
  2464. # Warning: you should only use this option when you are on a
  2465. # fairly secure machine, because the superuser can read your neomuttrc even
  2466. # if you are the only one who can read the file.
  2467. #
  2468. #
  2469. # set imap_passive=yes
  2470. #
  2471. # Name: imap_passive
  2472. # Type: boolean
  2473. # Default: yes
  2474. #
  2475. #
  2476. # When set, NeoMutt will not open new IMAP connections to check for new
  2477. # mail. NeoMutt will only check for new mail over existing IMAP
  2478. # connections. This is useful if you don't want to be prompted for
  2479. # user/password pairs on NeoMutt invocation, or if opening the connection
  2480. # is slow.
  2481. #
  2482. #
  2483. # set imap_peek=yes
  2484. #
  2485. # Name: imap_peek
  2486. # Type: boolean
  2487. # Default: yes
  2488. #
  2489. #
  2490. # When set, NeoMutt will avoid implicitly marking your mail as read whenever
  2491. # you fetch a message from the server. This is generally a good thing,
  2492. # but can make closing an IMAP folder somewhat slower. This option
  2493. # exists to appease speed freaks.
  2494. #
  2495. #
  2496. # set imap_pipeline_depth=15
  2497. #
  2498. # Name: imap_pipeline_depth
  2499. # Type: number
  2500. # Default: 15
  2501. #
  2502. #
  2503. # Controls the number of IMAP commands that may be queued up before they
  2504. # are sent to the server. A deeper pipeline reduces the amount of time
  2505. # NeoMutt must wait for the server, and can make IMAP servers feel much
  2506. # more responsive. But not all servers correctly handle pipelined commands,
  2507. # so if you have problems you might want to try setting this variable to 0.
  2508. #
  2509. # Note: Changes to this variable have no effect on open connections.
  2510. #
  2511. #
  2512. # set imap_poll_timeout=15
  2513. #
  2514. # Name: imap_poll_timeout
  2515. # Type: number
  2516. # Default: 15
  2517. #
  2518. #
  2519. # This variable specifies the maximum amount of time in seconds
  2520. # that NeoMutt will wait for a response when polling IMAP connections
  2521. # for new mail, before timing out and closing the connection. Set
  2522. # to 0 to disable timing out.
  2523. #
  2524. #
  2525. # set imap_qresync=no
  2526. #
  2527. # Name: imap_qresync
  2528. # Type: boolean
  2529. # Default: no
  2530. #
  2531. #
  2532. # When set, NeoMutt will use the QRESYNC extension (RFC7162)
  2533. # if advertised by the server. NeoMutt's current implementation is basic,
  2534. # used only for initial message fetching and flag updates.
  2535. #
  2536. # Note: this feature is currently experimental. If you experience
  2537. # strange behavior, such as duplicate or missing messages please
  2538. # file a bug report to let us know.
  2539. #
  2540. #
  2541. # set imap_rfc5161=yes
  2542. #
  2543. # Name: imap_rfc5161
  2544. # Type: boolean
  2545. # Default: yes
  2546. #
  2547. #
  2548. # When set, NeoMutt will use the IMAP ENABLE extension (RFC5161) to
  2549. # select CAPABILITIES. Some servers (notably Coremail System IMap Server) do
  2550. # not properly respond to ENABLE commands, which might cause NeoMutt to hang.
  2551. # If your connection seems to freeze at login, try unsetting this. See also
  2552. # https://github.com/neomutt/neomutt/issues/1689
  2553. #
  2554. #
  2555. # set imap_servernoise=yes
  2556. #
  2557. # Name: imap_servernoise
  2558. # Type: boolean
  2559. # Default: yes
  2560. #
  2561. #
  2562. # When set, NeoMutt will display warning messages from the IMAP
  2563. # server as error messages. Since these messages are often
  2564. # harmless, or generated due to configuration problems on the
  2565. # server which are out of the users' hands, you may wish to suppress
  2566. # them at some point.
  2567. #
  2568. #
  2569. # set imap_user=""
  2570. #
  2571. # Name: imap_user
  2572. # Type: string
  2573. # Default: ""
  2574. #
  2575. #
  2576. # The name of the user whose mail you intend to access on the IMAP
  2577. # server.
  2578. #
  2579. # This variable defaults to your user name on the local machine.
  2580. #
  2581. #
  2582. # set implicit_autoview=no
  2583. #
  2584. # Name: implicit_autoview
  2585. # Type: boolean
  2586. # Default: no
  2587. #
  2588. #
  2589. # If set to "yes", NeoMutt will look for a mailcap entry with the
  2590. # "copiousoutput" flag set for every MIME attachment it doesn't have
  2591. # an internal viewer defined for. If such an entry is found, NeoMutt will
  2592. # use the viewer defined in that entry to convert the body part to text
  2593. # form.
  2594. #
  2595. #
  2596. # set include=ask-yes
  2597. #
  2598. # Name: include
  2599. # Type: quadoption
  2600. # Default: ask-yes
  2601. #
  2602. #
  2603. # Controls whether or not a copy of the message(s) you are replying to
  2604. # is included in your reply.
  2605. #
  2606. #
  2607. # set include_encrypted=no
  2608. #
  2609. # Name: include_encrypted
  2610. # Type: boolean
  2611. # Default: no
  2612. #
  2613. #
  2614. # Controls whether or not NeoMutt includes separately encrypted attachment
  2615. # contents when replying.
  2616. #
  2617. # This variable was added to prevent accidental exposure of encrypted
  2618. # contents when replying to an attacker. If a previously encrypted message
  2619. # were attached by the attacker, they could trick an unwary recipient into
  2620. # decrypting and including the message in their reply.
  2621. #
  2622. #
  2623. # set include_onlyfirst=no
  2624. #
  2625. # Name: include_onlyfirst
  2626. # Type: boolean
  2627. # Default: no
  2628. #
  2629. #
  2630. # Controls whether or not NeoMutt includes only the first attachment
  2631. # of the message you are replying.
  2632. #
  2633. #
  2634. # set indent_string="> "
  2635. #
  2636. # Name: indent_string
  2637. # Type: string
  2638. # Default: "> "
  2639. #
  2640. #
  2641. # Specifies the string to prepend to each line of text quoted in a
  2642. # message to which you are replying. You are strongly encouraged not to
  2643. # change this value, as it tends to agitate the more fanatical netizens.
  2644. #
  2645. # The value of this option is ignored if $text_flowed is set, because
  2646. # the quoting mechanism is strictly defined for format=flowed.
  2647. #
  2648. # This option is a format string, please see the description of
  2649. # $index_format for supported printf(3)-style sequences.
  2650. #
  2651. #
  2652. # set index_format="%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
  2653. #
  2654. # Name: index_format
  2655. # Type: string
  2656. # Default: "%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
  2657. #
  2658. #
  2659. # This variable allows you to customize the message index display to
  2660. # your personal taste.
  2661. #
  2662. # "Format strings" are similar to the strings used in the C
  2663. # function printf(3) to format output (see the man page for more details).
  2664. # For an explanation of the %? construct, see the status_format description.
  2665. # The following sequences are defined in NeoMutt:
  2666. # %a Address of the author
  2667. # %A Reply-to address (if present; otherwise: address of author)
  2668. # %b Filename of the original message folder (think mailbox)
  2669. # %B The list to which the letter was sent, or else the folder name (%b).
  2670. # %C Current message number
  2671. # %c Number of characters (bytes) in the body of the message (see formatstrings-size)
  2672. # %cr Number of characters (bytes) in the raw message, including the header (see formatstrings-size)
  2673. # %D Date and time of message using date_format and local timezone
  2674. # %d Date and time of message using date_format and sender's timezone
  2675. # %e Current message number in thread
  2676. # %E Number of messages in current thread
  2677. # %F Author name, or recipient name if the message is from you
  2678. # %Fp Like %F, but plain. No contextual formatting is applied to recipient name
  2679. # %f Sender (address + real name), either From: or Return-Path:
  2680. # %g Newsgroup name (if compiled with NNTP support)
  2681. # %g Message tags (e.g. notmuch tags/imap flags)
  2682. # %Gx Individual message tag (e.g. notmuch tags/imap flags)
  2683. # %H Spam attribute(s) of this message
  2684. # %I Initials of author
  2685. # %i Message-id of the current message
  2686. # %J Message tags (if present, tree unfolded, and != parent's tags)
  2687. # %K The list to which the letter was sent (if any; otherwise: empty)
  2688. # %L If an address in the "To:" or "Cc:" header field matches an address
  2689. # Defined by the user's "subscribe" command, this displays
  2690. # "To <list-name>", otherwise the same as %F
  2691. # %l number of lines in the unprocessed message (may not work with
  2692. # maildir, mh, and IMAP folders)
  2693. # %M Number of hidden messages if the thread is collapsed
  2694. # %m Total number of message in the mailbox
  2695. # %N Message score
  2696. # %n Author's real name (or address if missing)
  2697. # %O Original save folder where NeoMutt would formerly have
  2698. # Stashed the message: list name or recipient name
  2699. # If not sent to a list
  2700. # %P Progress indicator for the built-in pager (how much of the file has been displayed)
  2701. # %q Newsgroup name (if compiled with NNTP support)
  2702. # %R Comma separated list of "Cc:" recipients
  2703. # %r Comma separated list of "To:" recipients
  2704. # %S Single character status of the message ("N"/"O"/"D"/"d"/"!"/"r"/"*")
  2705. # %s Subject of the message
  2706. # %T The appropriate character from the $to_chars string
  2707. # %t "To:" field (recipients)
  2708. # %u User (login) name of the author
  2709. # %v First name of the author, or the recipient if the message is from you
  2710. # %W Name of organization of author ("Organization:" field)
  2711. # %x "X-Comment-To:" field (if present and compiled with NNTP support)
  2712. # %X Number of MIME attachments
  2713. # (please see the "attachments" section for possible speed effects)
  2714. # %Y "X-Label:" field, if present, and (1) not at part of a thread tree,
  2715. # (2) at the top of a thread, or (3) "X-Label:" is different from
  2716. # Preceding message's "X-Label:"
  2717. # %y "X-Label:" field, if present
  2718. # %Z A three character set of message status flags.
  2719. # The first character is new/read/replied flags ("n"/"o"/"r"/"O"/"N").
  2720. # The second is deleted or encryption flags ("D"/"d"/"S"/"P"/"s"/"K").
  2721. # The third is either tagged/flagged ("*"/"!"), or one of the characters
  2722. # Listed in $to_chars.
  2723. # %zc Message crypto flags
  2724. # %zs Message status flags
  2725. # %zt Message tag flags
  2726. # %@name@ insert and evaluate format-string from the matching
  2727. # "index-format-hook" command
  2728. # %{fmt} the date and time of the message is converted to sender's
  2729. # time zone, and "fmt" is expanded by the library function
  2730. # strftime(3); a leading bang disables locales
  2731. # %[fmt] the date and time of the message is converted to the local
  2732. # time zone, and "fmt" is expanded by the library function
  2733. # strftime(3); a leading bang disables locales
  2734. # %(fmt) the local date and time when the message was received.
  2735. # "fmt" is expanded by the library function strftime(3);
  2736. # a leading bang disables locales
  2737. # %>X right justify the rest of the string and pad with character "X"
  2738. # %|X pad to the end of the line with character "X"
  2739. # %*X soft-fill with character "X" as pad
  2740. #
  2741. #
  2742. # Date format expressions can be constructed based on relative dates. Using
  2743. # the date formatting operators along with nested conditionals, the date
  2744. # format can be modified based on how old a message is. See the section on
  2745. # "Conditional Dates" for an explanation and examples
  2746. #
  2747. # Note that for mbox/mmdf, "%l" applies to the unprocessed message, and
  2748. # for maildir/mh, the value comes from the "Lines:" header field when
  2749. # present (the meaning is normally the same). Thus the value depends on
  2750. # the encodings used in the different parts of the message and has little
  2751. # meaning in practice.
  2752. #
  2753. # "Soft-fill" deserves some explanation: Normal right-justification
  2754. # will print everything to the left of the "%>", displaying padding and
  2755. # whatever lies to the right only if there's room. By contrast,
  2756. # soft-fill gives priority to the right-hand side, guaranteeing space
  2757. # to display it and showing padding only if there's still room. If
  2758. # necessary, soft-fill will eat text leftwards to make room for
  2759. # rightward text.
  2760. #
  2761. # Note that these expandos are supported in
  2762. # "save-hook", "fcc-hook" and "fcc-save-hook", too.
  2763. #
  2764. #
  2765. # set inews=""
  2766. #
  2767. # Name: inews
  2768. # Type: command
  2769. # Default: ""
  2770. #
  2771. #
  2772. # If set, specifies the program and arguments used to deliver news posted
  2773. # by NeoMutt. Otherwise, NeoMutt posts article using current connection to
  2774. # news server. The following printf-style sequence is understood:
  2775. # %a account url
  2776. # %p port
  2777. # %P port if specified
  2778. # %s news server name
  2779. # %S url schema
  2780. # %u username
  2781. #
  2782. #
  2783. # Example:
  2784. # set inews="/usr/local/bin/inews -hS"
  2785. #
  2786. #
  2787. # set ispell="ispell"
  2788. #
  2789. # Name: ispell
  2790. # Type: command
  2791. # Default: "ispell"
  2792. #
  2793. #
  2794. # How to invoke ispell (GNU's spell-checking software).
  2795. #
  2796. #
  2797. # set keep_flagged=no
  2798. #
  2799. # Name: keep_flagged
  2800. # Type: boolean
  2801. # Default: no
  2802. #
  2803. #
  2804. # If set, read messages marked as flagged will not be moved
  2805. # from your spool mailbox to your $mbox mailbox, or as a result of
  2806. # a "mbox-hook" command.
  2807. #
  2808. #
  2809. # set mail_check=5
  2810. #
  2811. # Name: mail_check
  2812. # Type: number
  2813. # Default: 5
  2814. #
  2815. #
  2816. # This variable configures how often (in seconds) NeoMutt should look for
  2817. # new mail. Also see the $timeout variable.
  2818. #
  2819. #
  2820. # set mail_check_recent=yes
  2821. #
  2822. # Name: mail_check_recent
  2823. # Type: boolean
  2824. # Default: yes
  2825. #
  2826. #
  2827. # When set, NeoMutt will only notify you about new mail that has been received
  2828. # since the last time you opened the mailbox. When unset, NeoMutt will notify you
  2829. # if any new mail exists in the mailbox, regardless of whether you have visited it
  2830. # recently.
  2831. #
  2832. # When $mark_old is set, NeoMutt does not consider the mailbox to contain new
  2833. # mail if only old messages exist.
  2834. #
  2835. #
  2836. # set mail_check_stats=no
  2837. #
  2838. # Name: mail_check_stats
  2839. # Type: boolean
  2840. # Default: no
  2841. #
  2842. #
  2843. # When set, NeoMutt will periodically calculate message
  2844. # statistics of a mailbox while polling for new mail. It will
  2845. # check for unread, flagged, and total message counts. Because
  2846. # this operation is more performance intensive, it defaults to
  2847. # unset, and has a separate option, $mail_check_stats_interval, to
  2848. # control how often to update these counts.
  2849. #
  2850. # Message statistics can also be explicitly calculated by invoking the
  2851. # <check-stats> function.
  2852. #
  2853. #
  2854. # set mail_check_stats_interval=60
  2855. #
  2856. # Name: mail_check_stats_interval
  2857. # Type: number
  2858. # Default: 60
  2859. #
  2860. #
  2861. # When $mail_check_stats is set, this variable configures
  2862. # how often (in seconds) NeoMutt will update message counts.
  2863. #
  2864. #
  2865. # set mailcap_path="~/.mailcap:/usr/share/neomutt/mailcap:/etc/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap"
  2866. #
  2867. # Name: mailcap_path
  2868. # Type: string list
  2869. # Default: "~/.mailcap:/usr/share/neomutt/mailcap:/etc/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap"
  2870. #
  2871. #
  2872. # This variable specifies which files to consult when attempting to
  2873. # display MIME bodies not directly supported by NeoMutt. The default value
  2874. # is generated during startup: see the "mailcap" section of the manual.
  2875. #
  2876. # $mailcap_path is overridden by the environment variable $MAILCAPS.
  2877. #
  2878. # The default search path is from RFC1524.
  2879. #
  2880. #
  2881. # set mailcap_sanitize=yes
  2882. #
  2883. # Name: mailcap_sanitize
  2884. # Type: boolean
  2885. # Default: yes
  2886. #
  2887. #
  2888. # If set, NeoMutt will restrict possible characters in mailcap % expandos
  2889. # to a well-defined set of safe characters. This is the safe setting,
  2890. # but we are not sure it doesn't break some more advanced MIME stuff.
  2891. #
  2892. # DON'T CHANGE THIS SETTING UNLESS YOU ARE REALLY SURE WHAT YOU ARE
  2893. # DOING!
  2894. #
  2895. #
  2896. # set maildir_check_cur=no
  2897. #
  2898. # Name: maildir_check_cur
  2899. # Type: boolean
  2900. # Default: no
  2901. #
  2902. #
  2903. # If set, NeoMutt will poll both the new and cur directories of
  2904. # a maildir folder for new messages. This might be useful if other
  2905. # programs interacting with the folder (e.g. dovecot) are moving new
  2906. # messages to the cur directory. Note that setting this option may
  2907. # slow down polling for new messages in large folders, since NeoMutt has
  2908. # to scan all cur messages.
  2909. #
  2910. #
  2911. # set maildir_header_cache_verify=yes
  2912. #
  2913. # Name: maildir_header_cache_verify
  2914. # Type: boolean
  2915. # Default: yes
  2916. #
  2917. #
  2918. # Check for Maildir unaware programs other than NeoMutt having modified maildir
  2919. # files when the header cache is in use. This incurs one stat(2) per
  2920. # message every time the folder is opened (which can be very slow for NFS
  2921. # folders).
  2922. #
  2923. #
  2924. # set maildir_trash=no
  2925. #
  2926. # Name: maildir_trash
  2927. # Type: boolean
  2928. # Default: no
  2929. #
  2930. #
  2931. # If set, messages marked as deleted will be saved with the maildir
  2932. # trashed flag instead of unlinked. Note: this only applies
  2933. # to maildir-style mailboxes. Setting it will have no effect on other
  2934. # mailbox types.
  2935. #
  2936. #
  2937. # set mark_macro_prefix="'"
  2938. #
  2939. # Name: mark_macro_prefix
  2940. # Type: string
  2941. # Default: "'"
  2942. #
  2943. #
  2944. # Prefix for macros created using mark-message. A new macro
  2945. # automatically generated with <mark-message>a will be composed
  2946. # from this prefix and the letter a.
  2947. #
  2948. #
  2949. # set mark_old=yes
  2950. #
  2951. # Name: mark_old
  2952. # Type: boolean
  2953. # Default: yes
  2954. #
  2955. #
  2956. # Controls whether or not NeoMutt marks new unread
  2957. # messages as old if you exit a mailbox without reading them.
  2958. # With this option set, the next time you start NeoMutt, the messages
  2959. # will show up with an "O" next to them in the index menu,
  2960. # indicating that they are old.
  2961. #
  2962. #
  2963. # set markers=yes
  2964. #
  2965. # Name: markers
  2966. # Type: boolean
  2967. # Default: yes
  2968. #
  2969. #
  2970. # Controls the display of wrapped lines in the internal pager. If set, a
  2971. # "+" marker is displayed at the beginning of wrapped lines.
  2972. #
  2973. # Also see the $smart_wrap variable.
  2974. #
  2975. #
  2976. # set mask="!^\\.[^.]"
  2977. #
  2978. # Name: mask
  2979. # Type: regular expression
  2980. # Default: "!^\\.[^.]"
  2981. #
  2982. #
  2983. # A regular expression used in the file browser, optionally preceded by
  2984. # the not operator "!". Only files whose names match this mask
  2985. # will be shown. The match is always case-sensitive.
  2986. #
  2987. #
  2988. # set mbox="~/mbox"
  2989. #
  2990. # Name: mbox
  2991. # Type: mailbox
  2992. # Default: "~/mbox"
  2993. #
  2994. #
  2995. # This specifies the folder into which read mail in your $spoolfile
  2996. # folder will be appended.
  2997. #
  2998. # Also see the $move variable.
  2999. #
  3000. #
  3001. # set mbox_type=mbox
  3002. #
  3003. # Name: mbox_type
  3004. # Type: enumeration
  3005. # Default: mbox
  3006. #
  3007. #
  3008. # The default mailbox type used when creating new folders. May be any of
  3009. # "mbox", "MMDF", "MH" or "Maildir".
  3010. #
  3011. # This can also be set using the -m command-line option.
  3012. #
  3013. #
  3014. # set menu_context=0
  3015. #
  3016. # Name: menu_context
  3017. # Type: number
  3018. # Default: 0
  3019. #
  3020. #
  3021. # This variable controls the number of lines of context that are given
  3022. # when scrolling through menus. (Similar to $pager_context.)
  3023. #
  3024. #
  3025. # set menu_move_off=yes
  3026. #
  3027. # Name: menu_move_off
  3028. # Type: boolean
  3029. # Default: yes
  3030. #
  3031. #
  3032. # When unset, the bottom entry of menus will never scroll up past
  3033. # the bottom of the screen, unless there are less entries than lines.
  3034. # When set, the bottom entry may move off the bottom.
  3035. #
  3036. #
  3037. # set menu_scroll=no
  3038. #
  3039. # Name: menu_scroll
  3040. # Type: boolean
  3041. # Default: no
  3042. #
  3043. #
  3044. # When set, menus will be scrolled up or down one line when you
  3045. # attempt to move across a screen boundary. If unset, the screen
  3046. # is cleared and the next or previous page of the menu is displayed
  3047. # (useful for slow links to avoid many redraws).
  3048. #
  3049. #
  3050. # set message_cache_clean=no
  3051. #
  3052. # Name: message_cache_clean
  3053. # Type: boolean
  3054. # Default: no
  3055. #
  3056. #
  3057. # If set, NeoMutt will clean out obsolete entries from the message cache when
  3058. # the mailbox is synchronized. You probably only want to set it
  3059. # every once in a while, since it can be a little slow
  3060. # (especially for large folders).
  3061. #
  3062. #
  3063. # set message_cachedir=""
  3064. #
  3065. # Name: message_cachedir
  3066. # Type: path
  3067. # Default: ""
  3068. #
  3069. #
  3070. # Set this to a directory and NeoMutt will cache copies of messages from
  3071. # your IMAP and POP servers here. You are free to remove entries at any
  3072. # time.
  3073. #
  3074. # When setting this variable to a directory, NeoMutt needs to fetch every
  3075. # remote message only once and can perform regular expression searches
  3076. # as fast as for local folders.
  3077. #
  3078. # Also see the $message_cache_clean variable.
  3079. #
  3080. #
  3081. # set message_format="%s"
  3082. #
  3083. # Name: message_format
  3084. # Type: string
  3085. # Default: "%s"
  3086. #
  3087. #
  3088. # This is the string displayed in the "attachment" menu for
  3089. # attachments of type message/rfc822. For a full listing of defined
  3090. # printf(3)-like sequences see the section on $index_format.
  3091. #
  3092. #
  3093. # set meta_key=no
  3094. #
  3095. # Name: meta_key
  3096. # Type: boolean
  3097. # Default: no
  3098. #
  3099. #
  3100. # If set, forces NeoMutt to interpret keystrokes with the high bit (bit 8)
  3101. # set as if the user had pressed the Esc key and whatever key remains
  3102. # after having the high bit removed. For example, if the key pressed
  3103. # has an ASCII value of 0xf8, then this is treated as if the user had
  3104. # pressed Esc then "x". This is because the result of removing the
  3105. # high bit from 0xf8 is 0x78, which is the ASCII character
  3106. # "x".
  3107. #
  3108. #
  3109. # set metoo=no
  3110. #
  3111. # Name: metoo
  3112. # Type: boolean
  3113. # Default: no
  3114. #
  3115. #
  3116. # If unset, NeoMutt will remove your address (see the "alternates"
  3117. # command) from the list of recipients when replying to a message.
  3118. #
  3119. #
  3120. # set mh_purge=no
  3121. #
  3122. # Name: mh_purge
  3123. # Type: boolean
  3124. # Default: no
  3125. #
  3126. #
  3127. # When unset, NeoMutt will mimic mh's behavior and rename deleted messages
  3128. # to ,<old file name> in mh folders instead of really deleting
  3129. # them. This leaves the message on disk but makes programs reading the folder
  3130. # ignore it. If the variable is set, the message files will simply be
  3131. # deleted.
  3132. #
  3133. # This option is similar to $maildir_trash for Maildir folders.
  3134. #
  3135. #
  3136. # set mh_seq_flagged="flagged"
  3137. #
  3138. # Name: mh_seq_flagged
  3139. # Type: string
  3140. # Default: "flagged"
  3141. #
  3142. #
  3143. # The name of the MH sequence used for flagged messages.
  3144. #
  3145. #
  3146. # set mh_seq_replied="replied"
  3147. #
  3148. # Name: mh_seq_replied
  3149. # Type: string
  3150. # Default: "replied"
  3151. #
  3152. #
  3153. # The name of the MH sequence used to tag replied messages.
  3154. #
  3155. #
  3156. # set mh_seq_unseen="unseen"
  3157. #
  3158. # Name: mh_seq_unseen
  3159. # Type: string
  3160. # Default: "unseen"
  3161. #
  3162. #
  3163. # The name of the MH sequence used for unseen messages.
  3164. #
  3165. #
  3166. # set mime_forward=no
  3167. #
  3168. # Name: mime_forward
  3169. # Type: quadoption
  3170. # Default: no
  3171. #
  3172. #
  3173. # When set, the message you are forwarding will be attached as a
  3174. # separate message/rfc822 MIME part instead of included in the main body of the
  3175. # message. This is useful for forwarding MIME messages so the receiver
  3176. # can properly view the message as it was delivered to you. If you like
  3177. # to switch between MIME and not MIME from mail to mail, set this
  3178. # variable to "ask-no" or "ask-yes".
  3179. #
  3180. # Also see $forward_decode and $mime_forward_decode.
  3181. #
  3182. #
  3183. # set mime_forward_decode=no
  3184. #
  3185. # Name: mime_forward_decode
  3186. # Type: boolean
  3187. # Default: no
  3188. #
  3189. #
  3190. # Controls the decoding of complex MIME messages into text/plain when
  3191. # forwarding a message while $mime_forward is set. Otherwise
  3192. # $forward_decode is used instead.
  3193. #
  3194. #
  3195. # set mime_forward_rest=yes
  3196. #
  3197. # Name: mime_forward_rest
  3198. # Type: quadoption
  3199. # Default: yes
  3200. #
  3201. #
  3202. # When forwarding multiple attachments of a MIME message from the attachment
  3203. # menu, attachments which can't be decoded in a reasonable manner will
  3204. # be attached to the newly composed message if this option is set.
  3205. #
  3206. #
  3207. # set mime_subject=yes
  3208. #
  3209. # Name: mime_subject
  3210. # Type: boolean
  3211. # Default: yes
  3212. #
  3213. #
  3214. # If unset, 8-bit "subject:" line in article header will not be
  3215. # encoded according to RFC2047 to base64. This is useful when message
  3216. # is Usenet article, because MIME for news is nonstandard feature.
  3217. #
  3218. #
  3219. # set mime_type_query_command=""
  3220. #
  3221. # Name: mime_type_query_command
  3222. # Type: command
  3223. # Default: ""
  3224. #
  3225. #
  3226. # This specifies a command to run, to determine the mime type of a
  3227. # new attachment when composing a message. Unless
  3228. # $mime_type_query_first is set, this will only be run if the
  3229. # attachment's extension is not found in the mime.types file.
  3230. #
  3231. # The string may contain a "%s", which will be substituted with the
  3232. # attachment filename. NeoMutt will add quotes around the string substituted
  3233. # for "%s" automatically according to shell quoting rules, so you should
  3234. # avoid adding your own. If no "%s" is found in the string, NeoMutt will
  3235. # append the attachment filename to the end of the string.
  3236. #
  3237. # The command should output a single line containing the
  3238. # attachment's mime type.
  3239. #
  3240. # Suggested values are "xdg-mime query filetype" or
  3241. # "file -bi".
  3242. #
  3243. #
  3244. # set mime_type_query_first=no
  3245. #
  3246. # Name: mime_type_query_first
  3247. # Type: boolean
  3248. # Default: no
  3249. #
  3250. #
  3251. # When set, the $mime_type_query_command will be run before the
  3252. # mime.types lookup.
  3253. #
  3254. #
  3255. # set mix_entry_format="%4n %c %-16s %a"
  3256. #
  3257. # Name: mix_entry_format
  3258. # Type: string
  3259. # Default: "%4n %c %-16s %a"
  3260. #
  3261. #
  3262. # This variable describes the format of a remailer line on the mixmaster
  3263. # chain selection screen. The following printf(3)-like sequences are
  3264. # supported:
  3265. # %a The remailer's e-mail address
  3266. # %c Remailer capabilities
  3267. # %n The running number on the menu
  3268. # %s The remailer's short name
  3269. # %>X right justify the rest of the string and pad with character "X"
  3270. # %|X pad to the end of the line with character "X"
  3271. # %*X soft-fill with character "X" as pad
  3272. #
  3273. #
  3274. # set mixmaster="mixmaster"
  3275. #
  3276. # Name: mixmaster
  3277. # Type: command
  3278. # Default: "mixmaster"
  3279. #
  3280. #
  3281. # This variable contains the path to the Mixmaster binary on your
  3282. # system. It is used with various sets of parameters to gather the
  3283. # list of known remailers, and to finally send a message through the
  3284. # mixmaster chain.
  3285. #
  3286. # Note: On Debian systems, this option is set by default to
  3287. # ``mixmaster-filter'' in /etc/Muttrc.
  3288. #
  3289. #
  3290. # set move=no
  3291. #
  3292. # Name: move
  3293. # Type: quadoption
  3294. # Default: no
  3295. #
  3296. #
  3297. # Controls whether or not NeoMutt will move read messages
  3298. # from your spool mailbox to your $mbox mailbox, or as a result of
  3299. # a "mbox-hook" command.
  3300. #
  3301. #
  3302. # set narrow_tree=no
  3303. #
  3304. # Name: narrow_tree
  3305. # Type: boolean
  3306. # Default: no
  3307. #
  3308. #
  3309. # This variable, when set, makes the thread tree narrower, allowing
  3310. # deeper threads to fit on the screen.
  3311. #
  3312. #
  3313. # set new_mail_command=""
  3314. #
  3315. # Name: new_mail_command
  3316. # Type: command
  3317. # Default: ""
  3318. #
  3319. #
  3320. # If set, NeoMutt will call this command after a new message is received.
  3321. # See the $status_format documentation for the values that can be formatted
  3322. # into this command.
  3323. #
  3324. #
  3325. # set news_cache_dir="~/.neomutt"
  3326. #
  3327. # Name: news_cache_dir
  3328. # Type: path
  3329. # Default: "~/.neomutt"
  3330. #
  3331. #
  3332. # This variable pointing to directory where NeoMutt will save cached news
  3333. # articles and headers in. If unset, articles and headers will not be
  3334. # saved at all and will be reloaded from the server each time.
  3335. #
  3336. #
  3337. # set news_server=""
  3338. #
  3339. # Name: news_server
  3340. # Type: string
  3341. # Default: ""
  3342. #
  3343. #
  3344. # This variable specifies domain name or address of NNTP server.
  3345. #
  3346. # You can also specify username and an alternative port for each news server,
  3347. # e.g. [[s]news://][username[:password]@]server[:port]
  3348. #
  3349. # This option can also be set using the command line option "-g", the
  3350. # environment variable $NNTPSERVER, or putting the server name in the
  3351. # file "/etc/nntpserver".
  3352. #
  3353. #
  3354. # set newsgroups_charset="utf-8"
  3355. #
  3356. # Name: newsgroups_charset
  3357. # Type: string
  3358. # Default: "utf-8"
  3359. #
  3360. #
  3361. # Character set of newsgroups descriptions.
  3362. #
  3363. #
  3364. # set newsrc="~/.newsrc"
  3365. #
  3366. # Name: newsrc
  3367. # Type: path
  3368. # Default: "~/.newsrc"
  3369. #
  3370. #
  3371. # The file, containing info about subscribed newsgroups - names and
  3372. # indexes of read articles. The following printf-style sequence
  3373. # is understood:
  3374. # Expando Description Example
  3375. # %a Account url news:news.gmane.org
  3376. # %p Port 119
  3377. # %P Port if specified 10119
  3378. # %s News server name news.gmane.org
  3379. # %S Url schema news
  3380. # %u Username username
  3381. #
  3382. #
  3383. # set nm_db_limit=0
  3384. #
  3385. # Name: nm_db_limit
  3386. # Type: number
  3387. # Default: 0
  3388. #
  3389. #
  3390. # This variable specifies the default limit used in notmuch queries.
  3391. #
  3392. #
  3393. # set nm_default_url=""
  3394. #
  3395. # Name: nm_default_url
  3396. # Type: string
  3397. # Default: ""
  3398. #
  3399. #
  3400. # This variable specifies the default Notmuch database in format
  3401. # notmuch://<absolute path>.
  3402. #
  3403. #
  3404. # set nm_exclude_tags=""
  3405. #
  3406. # Name: nm_exclude_tags
  3407. # Type: string
  3408. # Default: ""
  3409. #
  3410. #
  3411. # The messages tagged with these tags are excluded and not loaded
  3412. # from notmuch DB to NeoMutt unless specified explicitly.
  3413. #
  3414. #
  3415. # set nm_flagged_tag="flagged"
  3416. #
  3417. # Name: nm_flagged_tag
  3418. # Type: string
  3419. # Default: "flagged"
  3420. #
  3421. #
  3422. # This variable specifies notmuch tag which is used for flagged messages. The
  3423. # variable is used to count flagged messages in DB and set the flagged flag when
  3424. # modifying tags. All other NeoMutt commands use standard (e.g. maildir) flags.
  3425. #
  3426. #
  3427. # set nm_open_timeout=5
  3428. #
  3429. # Name: nm_open_timeout
  3430. # Type: number
  3431. # Default: 5
  3432. #
  3433. #
  3434. # This variable specifies the timeout for database open in seconds.
  3435. #
  3436. #
  3437. # set nm_query_type="messages"
  3438. #
  3439. # Name: nm_query_type
  3440. # Type: string
  3441. # Default: "messages"
  3442. #
  3443. #
  3444. # This variable specifies the default query type (threads or messages) used in notmuch queries.
  3445. #
  3446. #
  3447. # set nm_query_window_current_position=0
  3448. #
  3449. # Name: nm_query_window_current_position
  3450. # Type: number
  3451. # Default: 0
  3452. #
  3453. #
  3454. # This variable contains the position of the current search for window based vfolder.
  3455. #
  3456. #
  3457. # set nm_query_window_current_search=""
  3458. #
  3459. # Name: nm_query_window_current_search
  3460. # Type: string
  3461. # Default: ""
  3462. #
  3463. #
  3464. # This variable contains the currently setup notmuch search for window based vfolder.
  3465. #
  3466. #
  3467. # set nm_query_window_duration=0
  3468. #
  3469. # Name: nm_query_window_duration
  3470. # Type: number
  3471. # Default: 0
  3472. #
  3473. #
  3474. # This variable sets the time duration of a windowed notmuch query.
  3475. # Accepted values all non negative integers. A value of 0 disables the feature.
  3476. #
  3477. #
  3478. # set nm_query_window_timebase="week"
  3479. #
  3480. # Name: nm_query_window_timebase
  3481. # Type: string
  3482. # Default: "week"
  3483. #
  3484. #
  3485. # This variable sets the time base of a windowed notmuch query.
  3486. # Accepted values are 'minute', 'hour', 'day', 'week', 'month', 'year'
  3487. #
  3488. #
  3489. # set nm_record=no
  3490. #
  3491. # Name: nm_record
  3492. # Type: boolean
  3493. # Default: no
  3494. #
  3495. #
  3496. # This variable specifies if the NeoMutt record should indexed by notmuch.
  3497. #
  3498. #
  3499. # set nm_record_tags=""
  3500. #
  3501. # Name: nm_record_tags
  3502. # Type: string
  3503. # Default: ""
  3504. #
  3505. #
  3506. # This variable specifies the default tags applied to messages stored to the NeoMutt record.
  3507. # When set to 0 this variable disable the window feature.
  3508. #
  3509. #
  3510. # set nm_replied_tag="replied"
  3511. #
  3512. # Name: nm_replied_tag
  3513. # Type: string
  3514. # Default: "replied"
  3515. #
  3516. #
  3517. # This variable specifies notmuch tag which is used for replied messages. The
  3518. # variable is used to set the replied flag when modifiying tags. All other NeoMutt
  3519. # commands use standard (e.g. maildir) flags.
  3520. #
  3521. #
  3522. # set nm_unread_tag="unread"
  3523. #
  3524. # Name: nm_unread_tag
  3525. # Type: string
  3526. # Default: "unread"
  3527. #
  3528. #
  3529. # This variable specifies notmuch tag which is used for unread messages. The
  3530. # variable is used to count unread messages in DB and set the unread flag when
  3531. # modifiying tags. All other NeoMutt commands use standard (e.g. maildir) flags.
  3532. #
  3533. #
  3534. # set nntp_authenticators=""
  3535. #
  3536. # Name: nntp_authenticators
  3537. # Type: string
  3538. # Default: ""
  3539. #
  3540. #
  3541. # This is a colon-delimited list of authentication methods NeoMutt may
  3542. # attempt to use to log in to a news server, in the order NeoMutt should
  3543. # try them. Authentication methods are either "user" or any
  3544. # SASL mechanism, e.g. "digest-md5", "gssapi" or "cram-md5".
  3545. # This option is case-insensitive. If it's unset (the default)
  3546. # NeoMutt will try all available methods, in order from most-secure to
  3547. # least-secure.
  3548. #
  3549. # Example:
  3550. # set nntp_authenticators="digest-md5:user"
  3551. #
  3552. # Note: NeoMutt will only fall back to other authentication methods if
  3553. # the previous methods are unavailable. If a method is available but
  3554. # authentication fails, NeoMutt will not connect to the IMAP server.
  3555. #
  3556. #
  3557. # set nntp_context=1000
  3558. #
  3559. # Name: nntp_context
  3560. # Type: number
  3561. # Default: 1000
  3562. #
  3563. #
  3564. # This variable defines number of articles which will be in index when
  3565. # newsgroup entered. If active newsgroup have more articles than this
  3566. # number, oldest articles will be ignored. Also controls how many
  3567. # articles headers will be saved in cache when you quit newsgroup.
  3568. #
  3569. #
  3570. # set nntp_listgroup=yes
  3571. #
  3572. # Name: nntp_listgroup
  3573. # Type: boolean
  3574. # Default: yes
  3575. #
  3576. #
  3577. # This variable controls whether or not existence of each article is
  3578. # checked when newsgroup is entered.
  3579. #
  3580. #
  3581. # set nntp_load_description=yes
  3582. #
  3583. # Name: nntp_load_description
  3584. # Type: boolean
  3585. # Default: yes
  3586. #
  3587. #
  3588. # This variable controls whether or not descriptions for each newsgroup
  3589. # must be loaded when newsgroup is added to list (first time list
  3590. # loading or new newsgroup adding).
  3591. #
  3592. #
  3593. # set nntp_pass=""
  3594. #
  3595. # Name: nntp_pass
  3596. # Type: string
  3597. # Default: ""
  3598. #
  3599. #
  3600. # Your password for NNTP account.
  3601. #
  3602. #
  3603. # set nntp_poll=60
  3604. #
  3605. # Name: nntp_poll
  3606. # Type: number
  3607. # Default: 60
  3608. #
  3609. #
  3610. # The time in seconds until any operations on newsgroup except post new
  3611. # article will cause recheck for new news. If set to 0, NeoMutt will
  3612. # recheck newsgroup on each operation in index (stepping, read article,
  3613. # etc.).
  3614. #
  3615. #
  3616. # set nntp_user=""
  3617. #
  3618. # Name: nntp_user
  3619. # Type: string
  3620. # Default: ""
  3621. #
  3622. #
  3623. # Your login name on the NNTP server. If unset and NNTP server requires
  3624. # authentication, NeoMutt will prompt you for your account name when you
  3625. # connect to news server.
  3626. #
  3627. #
  3628. # set pager="builtin"
  3629. #
  3630. # Name: pager
  3631. # Type: command
  3632. # Default: "builtin"
  3633. #
  3634. #
  3635. # This variable specifies which pager you would like to use to view
  3636. # messages. The value "builtin" means to use the built-in pager, otherwise this
  3637. # variable should specify the pathname of the external pager you would
  3638. # like to use.
  3639. #
  3640. # Using an external pager may have some disadvantages: Additional
  3641. # keystrokes are necessary because you can't call NeoMutt functions
  3642. # directly from the pager, and screen resizes cause lines longer than
  3643. # the screen width to be badly formatted in the help menu.
  3644. #
  3645. #
  3646. # set pager_context=0
  3647. #
  3648. # Name: pager_context
  3649. # Type: number
  3650. # Default: 0
  3651. #
  3652. #
  3653. # This variable controls the number of lines of context that are given
  3654. # when displaying the next or previous page in the internal pager. By
  3655. # default, NeoMutt will display the line after the last one on the screen
  3656. # at the top of the next page (0 lines of context).
  3657. #
  3658. # This variable also specifies the amount of context given for search
  3659. # results. If positive, this many lines will be given before a match,
  3660. # if 0, the match will be top-aligned.
  3661. #
  3662. #
  3663. # set pager_format="-%Z- %C/%m: %-20.20n %s%* -- (%P)"
  3664. #
  3665. # Name: pager_format
  3666. # Type: string
  3667. # Default: "-%Z- %C/%m: %-20.20n %s%* -- (%P)"
  3668. #
  3669. #
  3670. # This variable controls the format of the one-line message "status"
  3671. # displayed before each message in either the internal or an external
  3672. # pager. The valid sequences are listed in the $index_format
  3673. # section.
  3674. #
  3675. #
  3676. # set pager_index_lines=0
  3677. #
  3678. # Name: pager_index_lines
  3679. # Type: number
  3680. # Default: 0
  3681. #
  3682. #
  3683. # Determines the number of lines of a mini-index which is shown when in
  3684. # the pager. The current message, unless near the top or bottom of the
  3685. # folder, will be roughly one third of the way down this mini-index,
  3686. # giving the reader the context of a few messages before and after the
  3687. # message. This is useful, for example, to determine how many messages
  3688. # remain to be read in the current thread. A value of 0 results in no index
  3689. # being shown. If the number of messages in the current folder is less than
  3690. # $pager_index_lines, then the index will only use as many lines as it needs.
  3691. #
  3692. #
  3693. # set pager_stop=no
  3694. #
  3695. # Name: pager_stop
  3696. # Type: boolean
  3697. # Default: no
  3698. #
  3699. #
  3700. # When set, the internal-pager will not move to the next message
  3701. # when you are at the end of a message and invoke the <next-page>
  3702. # function.
  3703. #
  3704. #
  3705. # set pattern_format="%2n %-15e %d"
  3706. #
  3707. # Name: pattern_format
  3708. # Type: string
  3709. # Default: "%2n %-15e %d"
  3710. #
  3711. #
  3712. # This variable describes the format of the "pattern completion" menu. The
  3713. # following printf(3)-style sequences are understood:
  3714. # %d pattern description
  3715. # %e pattern expression
  3716. # %n index number
  3717. #
  3718. #
  3719. #
  3720. #
  3721. # set pgp_auto_decode=no
  3722. #
  3723. # Name: pgp_auto_decode
  3724. # Type: boolean
  3725. # Default: no
  3726. #
  3727. #
  3728. # If set, NeoMutt will automatically attempt to decrypt traditional PGP
  3729. # messages whenever the user performs an operation which ordinarily would
  3730. # result in the contents of the message being operated on. For example,
  3731. # if the user displays a pgp-traditional message which has not been manually
  3732. # checked with the <check-traditional-pgp> function, NeoMutt will automatically
  3733. # check the message for traditional pgp.
  3734. #
  3735. #
  3736. # set pgp_autoinline=no
  3737. #
  3738. # Name: pgp_autoinline
  3739. # Type: boolean
  3740. # Default: no
  3741. #
  3742. #
  3743. # This option controls whether NeoMutt generates old-style inline
  3744. # (traditional) PGP encrypted or signed messages under certain
  3745. # circumstances. This can be overridden by use of the pgp menu,
  3746. # when inline is not required. The GPGME backend does not support
  3747. # this option.
  3748. #
  3749. # Note that NeoMutt might automatically use PGP/MIME for messages
  3750. # which consist of more than a single MIME part. NeoMutt can be
  3751. # configured to ask before sending PGP/MIME messages when inline
  3752. # (traditional) would not work.
  3753. #
  3754. # Also see the $pgp_mime_auto variable.
  3755. #
  3756. # Also note that using the old-style PGP message format is strongly
  3757. # deprecated.
  3758. # (PGP only)
  3759. #
  3760. #
  3761. # set pgp_check_exit=yes
  3762. #
  3763. # Name: pgp_check_exit
  3764. # Type: boolean
  3765. # Default: yes
  3766. #
  3767. #
  3768. # If set, NeoMutt will check the exit code of the PGP subprocess when
  3769. # signing or encrypting. A non-zero exit code means that the
  3770. # subprocess failed.
  3771. # (PGP only)
  3772. #
  3773. #
  3774. # set pgp_check_gpg_decrypt_status_fd=yes
  3775. #
  3776. # Name: pgp_check_gpg_decrypt_status_fd
  3777. # Type: boolean
  3778. # Default: yes
  3779. #
  3780. #
  3781. # If set, NeoMutt will check the status file descriptor output
  3782. # of $pgp_decrypt_command and $pgp_decode_command for GnuPG status codes
  3783. # indicating successful decryption. This will check for the presence of
  3784. # DECRYPTION_OKAY, absence of DECRYPTION_FAILED, and that all
  3785. # PLAINTEXT occurs between the BEGIN_DECRYPTION and END_DECRYPTION
  3786. # status codes.
  3787. #
  3788. # If unset, NeoMutt will instead match the status fd output
  3789. # against $pgp_decryption_okay.
  3790. # (PGP only)
  3791. #
  3792. #
  3793. # set pgp_clearsign_command=""
  3794. #
  3795. # Name: pgp_clearsign_command
  3796. # Type: command
  3797. # Default: ""
  3798. #
  3799. #
  3800. # This format is used to create an old-style "clearsigned" PGP
  3801. # message. Note that the use of this format is strongly
  3802. # deprecated.
  3803. #
  3804. # This is a format string, see the $pgp_decode_command command for
  3805. # possible printf(3)-like sequences.
  3806. # Note that in this case, %r expands to the search string, which is a list of
  3807. # one or more quoted values such as email address, name, or keyid.
  3808. # (PGP only)
  3809. #
  3810. #
  3811. # set pgp_decode_command=""
  3812. #
  3813. # Name: pgp_decode_command
  3814. # Type: command
  3815. # Default: ""
  3816. #
  3817. #
  3818. # This format strings specifies a command which is used to decode
  3819. # application/pgp attachments.
  3820. #
  3821. # The PGP command formats have their own set of printf(3)-like sequences:
  3822. # %a The value of $pgp_sign_as if set, otherwise the value
  3823. # of $pgp_default_key.
  3824. # %f Expands to the name of a file containing a message.
  3825. # %p Expands to PGPPASSFD=0 when a pass phrase is needed, to an empty
  3826. # string otherwise. Note: This may be used with a %? construct.
  3827. # %r One or more key IDs (or fingerprints if available).
  3828. # %s Expands to the name of a file containing the signature part
  3829. # of a multipart/signed attachment when verifying it.
  3830. #
  3831. #
  3832. # For examples on how to configure these formats for the various versions
  3833. # of PGP which are floating around, see the pgp and gpg sample configuration files in
  3834. # the samples/ subdirectory which has been installed on your system
  3835. # alongside the documentation.
  3836. # (PGP only)
  3837. #
  3838. #
  3839. # set pgp_decrypt_command=""
  3840. #
  3841. # Name: pgp_decrypt_command
  3842. # Type: command
  3843. # Default: ""
  3844. #
  3845. #
  3846. # This command is used to decrypt a PGP encrypted message.
  3847. #
  3848. # This is a format string, see the $pgp_decode_command command for
  3849. # possible printf(3)-like sequences.
  3850. # (PGP only)
  3851. #
  3852. # Note: When decrypting messages using gpg, a pinentry program needs to
  3853. # be invoked unless the password is cached within gpg-agent.
  3854. # Currently, the pinentry-tty program (usually distributed with
  3855. # gpg) isn't suitable for being invoked by NeoMutt. You are encouraged
  3856. # to use a different pinentry-program when running NeoMutt in order to avoid
  3857. # problems.
  3858. #
  3859. # See also: https://github.com/neomutt/neomutt/issues/1014
  3860. #
  3861. #
  3862. # set pgp_decryption_okay=""
  3863. #
  3864. # Name: pgp_decryption_okay
  3865. # Type: regular expression
  3866. # Default: ""
  3867. #
  3868. #
  3869. # If you assign text to this variable, then an encrypted PGP
  3870. # message is only considered successfully decrypted if the output
  3871. # from $pgp_decrypt_command contains the text. This is used to
  3872. # protect against a spoofed encrypted message, with multipart/encrypted
  3873. # headers but containing a block that is not actually encrypted.
  3874. # (e.g. simply signed and ascii armored text).
  3875. #
  3876. # Note that if $pgp_check_gpg_decrypt_status_fd is set, this variable
  3877. # is ignored.
  3878. # (PGP only)
  3879. #
  3880. #
  3881. # set pgp_default_key=""
  3882. #
  3883. # Name: pgp_default_key
  3884. # Type: string
  3885. # Default: ""
  3886. #
  3887. #
  3888. # This is the default key-pair to use for PGP operations. It will be
  3889. # used for encryption (see $postpone_encrypt and $pgp_self_encrypt).
  3890. #
  3891. # It will also be used for signing unless $pgp_sign_as is set.
  3892. #
  3893. # The (now deprecated) pgp_self_encrypt_as is an alias for this
  3894. # variable, and should no longer be used.
  3895. # (PGP only)
  3896. #
  3897. #
  3898. # set pgp_encrypt_only_command=""
  3899. #
  3900. # Name: pgp_encrypt_only_command
  3901. # Type: command
  3902. # Default: ""
  3903. #
  3904. #
  3905. # This command is used to encrypt a body part without signing it.
  3906. #
  3907. # This is a format string, see the $pgp_decode_command command for
  3908. # possible printf(3)-like sequences.
  3909. # Note that in this case, %r expands to the search string, which is a list of
  3910. # one or more quoted values such as email address, name, or keyid.
  3911. # (PGP only)
  3912. #
  3913. #
  3914. # set pgp_encrypt_sign_command=""
  3915. #
  3916. # Name: pgp_encrypt_sign_command
  3917. # Type: command
  3918. # Default: ""
  3919. #
  3920. #
  3921. # This command is used to both sign and encrypt a body part.
  3922. #
  3923. # This is a format string, see the $pgp_decode_command command for
  3924. # possible printf(3)-like sequences.
  3925. # (PGP only)
  3926. #
  3927. #
  3928. # set pgp_entry_format="%4n %t%f %4l/0x%k %-4a %2c %u"
  3929. #
  3930. # Name: pgp_entry_format
  3931. # Type: string
  3932. # Default: "%4n %t%f %4l/0x%k %-4a %2c %u"
  3933. #
  3934. #
  3935. # This variable allows you to customize the PGP key selection menu to
  3936. # your personal taste. If $crypt_use_gpgme is set, then it applies
  3937. # to S/MIME key selection menu also. This string is similar to $index_format,
  3938. # but has its own set of printf(3)-like sequences:
  3939. # %a Algorithm
  3940. # %c Capabilities
  3941. # %f Flags
  3942. # %k Key id
  3943. # %l Key length
  3944. # %n Number
  3945. # %p Protocol
  3946. # %t Trust/validity of the key-uid association
  3947. # %u User id
  3948. # %[<s>] Date of the key where <s> is an strftime(3) expression
  3949. #
  3950. #
  3951. # (Crypto only) or (PGP only when GPGME disabled)
  3952. #
  3953. #
  3954. # set pgp_export_command=""
  3955. #
  3956. # Name: pgp_export_command
  3957. # Type: command
  3958. # Default: ""
  3959. #
  3960. #
  3961. # This command is used to export a public key from the user's
  3962. # key ring.
  3963. #
  3964. # This is a format string, see the $pgp_decode_command command for
  3965. # possible printf(3)-like sequences.
  3966. # (PGP only)
  3967. #
  3968. #
  3969. # set pgp_getkeys_command=""
  3970. #
  3971. # Name: pgp_getkeys_command
  3972. # Type: command
  3973. # Default: ""
  3974. #
  3975. #
  3976. # This command is invoked whenever NeoMutt needs to fetch the public key associated with
  3977. # an email address. Of the sequences supported by $pgp_decode_command, %r is
  3978. # the only printf(3)-like sequence used with this format. Note that
  3979. # in this case, %r expands to the email address, not the public key ID (the key ID is
  3980. # unknown, which is why NeoMutt is invoking this command).
  3981. # (PGP only)
  3982. #
  3983. #
  3984. # set pgp_good_sign=""
  3985. #
  3986. # Name: pgp_good_sign
  3987. # Type: regular expression
  3988. # Default: ""
  3989. #
  3990. #
  3991. # If you assign a text to this variable, then a PGP signature is only
  3992. # considered verified if the output from $pgp_verify_command contains
  3993. # the text. Use this variable if the exit code from the command is 0
  3994. # even for bad signatures.
  3995. # (PGP only)
  3996. #
  3997. #
  3998. # set pgp_ignore_subkeys=yes
  3999. #
  4000. # Name: pgp_ignore_subkeys
  4001. # Type: boolean
  4002. # Default: yes
  4003. #
  4004. #
  4005. # Setting this variable will cause NeoMutt to ignore OpenPGP subkeys. Instead,
  4006. # the principal key will inherit the subkeys' capabilities. Unset this
  4007. # if you want to play interesting key selection games.
  4008. # (PGP only)
  4009. #
  4010. #
  4011. # set pgp_import_command=""
  4012. #
  4013. # Name: pgp_import_command
  4014. # Type: command
  4015. # Default: ""
  4016. #
  4017. #
  4018. # This command is used to import a key from a message into
  4019. # the user's public key ring.
  4020. #
  4021. # This is a format string, see the $pgp_decode_command command for
  4022. # possible printf(3)-like sequences.
  4023. # (PGP only)
  4024. #
  4025. #
  4026. # set pgp_list_pubring_command=""
  4027. #
  4028. # Name: pgp_list_pubring_command
  4029. # Type: command
  4030. # Default: ""
  4031. #
  4032. #
  4033. # This command is used to list the public key ring's contents. The
  4034. # output format must be analogous to the one used by
  4035. # gpg --list-keys --with-colons --with-fingerprint
  4036. #
  4037. # Note: gpg's fixed-list-mode option should not be used. It
  4038. # produces a different date format which may result in NeoMutt showing
  4039. # incorrect key generation dates.
  4040. #
  4041. # This is a format string, see the $pgp_decode_command command for
  4042. # possible printf(3)-like sequences.
  4043. # (PGP only)
  4044. #
  4045. #
  4046. # set pgp_list_secring_command=""
  4047. #
  4048. # Name: pgp_list_secring_command
  4049. # Type: command
  4050. # Default: ""
  4051. #
  4052. #
  4053. # This command is used to list the secret key ring's contents. The
  4054. # output format must be analogous to the one used by:
  4055. # gpg --list-keys --with-colons --with-fingerprint
  4056. #
  4057. # Note: gpg's fixed-list-mode option should not be used. It
  4058. # produces a different date format which may result in NeoMutt showing
  4059. # incorrect key generation dates.
  4060. #
  4061. # This is a format string, see the $pgp_decode_command command for
  4062. # possible printf(3)-like sequences.
  4063. # (PGP only)
  4064. #
  4065. #
  4066. # set pgp_long_ids=yes
  4067. #
  4068. # Name: pgp_long_ids
  4069. # Type: boolean
  4070. # Default: yes
  4071. #
  4072. #
  4073. # If set, use 64 bit PGP key IDs, if unset use the normal 32 bit key IDs.
  4074. # NOTE: Internally, NeoMutt has transitioned to using fingerprints (or long key IDs
  4075. # as a fallback). This option now only controls the display of key IDs
  4076. # in the key selection menu and a few other places.
  4077. # (PGP only)
  4078. #
  4079. #
  4080. # set pgp_mime_auto=ask-yes
  4081. #
  4082. # Name: pgp_mime_auto
  4083. # Type: quadoption
  4084. # Default: ask-yes
  4085. #
  4086. #
  4087. # This option controls whether NeoMutt will prompt you for
  4088. # automatically sending a (signed/encrypted) message using
  4089. # PGP/MIME when inline (traditional) fails (for any reason).
  4090. #
  4091. # Also note that using the old-style PGP message format is strongly
  4092. # deprecated.
  4093. # (PGP only)
  4094. #
  4095. #
  4096. # set pgp_replyinline=no
  4097. #
  4098. # Name: pgp_replyinline
  4099. # Type: boolean
  4100. # Default: no
  4101. #
  4102. #
  4103. # Setting this variable will cause NeoMutt to always attempt to
  4104. # create an inline (traditional) message when replying to a
  4105. # message which is PGP encrypted/signed inline. This can be
  4106. # overridden by use of the pgp menu, when inline is not
  4107. # required. This option does not automatically detect if the
  4108. # (replied-to) message is inline; instead it relies on NeoMutt
  4109. # internals for previously checked/flagged messages.
  4110. #
  4111. # Note that NeoMutt might automatically use PGP/MIME for messages
  4112. # which consist of more than a single MIME part. NeoMutt can be
  4113. # configured to ask before sending PGP/MIME messages when inline
  4114. # (traditional) would not work.
  4115. #
  4116. # Also see the $pgp_mime_auto variable.
  4117. #
  4118. # Also note that using the old-style PGP message format is strongly
  4119. # deprecated.
  4120. # (PGP only)
  4121. #
  4122. #
  4123. # set pgp_retainable_sigs=no
  4124. #
  4125. # Name: pgp_retainable_sigs
  4126. # Type: boolean
  4127. # Default: no
  4128. #
  4129. #
  4130. # If set, signed and encrypted messages will consist of nested
  4131. # multipart/signed and multipart/encrypted body parts.
  4132. #
  4133. # This is useful for applications like encrypted and signed mailing
  4134. # lists, where the outer layer (multipart/encrypted) can be easily
  4135. # removed, while the inner multipart/signed part is retained.
  4136. # (PGP only)
  4137. #
  4138. #
  4139. # set pgp_self_encrypt=yes
  4140. #
  4141. # Name: pgp_self_encrypt
  4142. # Type: boolean
  4143. # Default: yes
  4144. #
  4145. #
  4146. # When set, PGP encrypted messages will also be encrypted
  4147. # using the key in $pgp_default_key.
  4148. # (PGP only)
  4149. #
  4150. #
  4151. # set pgp_show_unusable=yes
  4152. #
  4153. # Name: pgp_show_unusable
  4154. # Type: boolean
  4155. # Default: yes
  4156. #
  4157. #
  4158. # If set, NeoMutt will display non-usable keys on the PGP key selection
  4159. # menu. This includes keys which have been revoked, have expired, or
  4160. # have been marked as "disabled" by the user.
  4161. # (PGP only)
  4162. #
  4163. #
  4164. # set pgp_sign_as=""
  4165. #
  4166. # Name: pgp_sign_as
  4167. # Type: string
  4168. # Default: ""
  4169. #
  4170. #
  4171. # If you have a different key pair to use for signing, you should
  4172. # set this to the signing key. Most people will only need to set
  4173. # $pgp_default_key. It is recommended that you use the keyid form
  4174. # to specify your key (e.g. 0x00112233).
  4175. # (PGP only)
  4176. #
  4177. #
  4178. # set pgp_sign_command=""
  4179. #
  4180. # Name: pgp_sign_command
  4181. # Type: command
  4182. # Default: ""
  4183. #
  4184. #
  4185. # This command is used to create the detached PGP signature for a
  4186. # multipart/signed PGP/MIME body part.
  4187. #
  4188. # This is a format string, see the $pgp_decode_command command for
  4189. # possible printf(3)-like sequences.
  4190. # (PGP only)
  4191. #
  4192. #
  4193. # set pgp_sort_keys=address
  4194. #
  4195. # Name: pgp_sort_keys
  4196. # Type: sort order
  4197. # Default: address
  4198. #
  4199. #
  4200. # Specifies how the entries in the pgp menu are sorted. The
  4201. # following are legal values:
  4202. # address sort alphabetically by user id
  4203. # keyid sort alphabetically by key id
  4204. # date sort by key creation date
  4205. # trust sort by the trust of the key
  4206. #
  4207. #
  4208. # If you prefer reverse order of the above values, prefix it with
  4209. # "reverse-".
  4210. # (PGP only)
  4211. #
  4212. #
  4213. # set pgp_strict_enc=yes
  4214. #
  4215. # Name: pgp_strict_enc
  4216. # Type: boolean
  4217. # Default: yes
  4218. #
  4219. #
  4220. # If set, NeoMutt will automatically encode PGP/MIME signed messages as
  4221. # quoted-printable. Please note that unsetting this variable may
  4222. # lead to problems with non-verifyable PGP signatures, so only change
  4223. # this if you know what you are doing.
  4224. # (PGP only)
  4225. #
  4226. #
  4227. # set pgp_timeout=300
  4228. #
  4229. # Name: pgp_timeout
  4230. # Type: number (long)
  4231. # Default: 300
  4232. #
  4233. #
  4234. # The number of seconds after which a cached passphrase will expire if
  4235. # not used.
  4236. # (PGP only)
  4237. #
  4238. #
  4239. # set pgp_use_gpg_agent=yes
  4240. #
  4241. # Name: pgp_use_gpg_agent
  4242. # Type: boolean
  4243. # Default: yes
  4244. #
  4245. #
  4246. # If set, NeoMutt expects a gpg-agent(1) process will handle
  4247. # private key passphrase prompts. If unset, NeoMutt will prompt
  4248. # for the passphrase and pass it via stdin to the pgp command.
  4249. #
  4250. # Note that as of version 2.1, GnuPG automatically spawns an agent
  4251. # and requires the agent be used for passphrase management. Since
  4252. # that version is increasingly prevalent, this variable now
  4253. # defaults set.
  4254. #
  4255. # NeoMutt works with a GUI or curses pinentry program. A TTY pinentry
  4256. # should not be used.
  4257. #
  4258. # If you are using an older version of GnuPG without an agent running,
  4259. # or another encryption program without an agent, you will need to
  4260. # unset this variable.
  4261. # (PGP only)
  4262. #
  4263. #
  4264. # set pgp_verify_command=""
  4265. #
  4266. # Name: pgp_verify_command
  4267. # Type: command
  4268. # Default: ""
  4269. #
  4270. #
  4271. # This command is used to verify PGP signatures.
  4272. #
  4273. # This is a format string, see the $pgp_decode_command command for
  4274. # possible printf(3)-like sequences.
  4275. # (PGP only)
  4276. #
  4277. #
  4278. # set pgp_verify_key_command=""
  4279. #
  4280. # Name: pgp_verify_key_command
  4281. # Type: command
  4282. # Default: ""
  4283. #
  4284. #
  4285. # This command is used to verify key information from the key selection
  4286. # menu.
  4287. #
  4288. # This is a format string, see the $pgp_decode_command command for
  4289. # possible printf(3)-like sequences.
  4290. # (PGP only)
  4291. #
  4292. #
  4293. # set pipe_decode=no
  4294. #
  4295. # Name: pipe_decode
  4296. # Type: boolean
  4297. # Default: no
  4298. #
  4299. #
  4300. # Used in connection with the <pipe-message> function. When unset,
  4301. # NeoMutt will pipe the messages without any preprocessing. When set, NeoMutt
  4302. # will attempt to decode the messages first.
  4303. #
  4304. # Also see $pipe_decode_weed, which controls whether headers will
  4305. # be weeded when this is set.
  4306. #
  4307. #
  4308. # set pipe_decode_weed=yes
  4309. #
  4310. # Name: pipe_decode_weed
  4311. # Type: boolean
  4312. # Default: yes
  4313. #
  4314. #
  4315. # For <pipe-message>, when $pipe_decode is set, this further
  4316. # controls whether NeoMutt will weed headers.
  4317. #
  4318. #
  4319. # set pipe_sep="\n"
  4320. #
  4321. # Name: pipe_sep
  4322. # Type: string
  4323. # Default: "\n"
  4324. #
  4325. #
  4326. # The separator to add between messages when piping a list of tagged
  4327. # messages to an external Unix command.
  4328. #
  4329. #
  4330. # set pipe_split=no
  4331. #
  4332. # Name: pipe_split
  4333. # Type: boolean
  4334. # Default: no
  4335. #
  4336. #
  4337. # Used in connection with the <pipe-message> function following
  4338. # <tag-prefix>. If this variable is unset, when piping a list of
  4339. # tagged messages NeoMutt will concatenate the messages and will pipe them
  4340. # all concatenated. When set, NeoMutt will pipe the messages one by one.
  4341. # In both cases the messages are piped in the current sorted order,
  4342. # and the $pipe_sep separator is added after each message.
  4343. #
  4344. #
  4345. # set pop_auth_try_all=yes
  4346. #
  4347. # Name: pop_auth_try_all
  4348. # Type: boolean
  4349. # Default: yes
  4350. #
  4351. #
  4352. # If set, NeoMutt will try all available authentication methods.
  4353. # When unset, NeoMutt will only fall back to other authentication
  4354. # methods if the previous methods are unavailable. If a method is
  4355. # available but authentication fails, NeoMutt will not connect to the POP server.
  4356. #
  4357. #
  4358. # set pop_authenticators=""
  4359. #
  4360. # Name: pop_authenticators
  4361. # Type: string list
  4362. # Default: ""
  4363. #
  4364. #
  4365. # This is a colon-delimited list of authentication methods NeoMutt may
  4366. # attempt to use to log in to an POP server, in the order NeoMutt should
  4367. # try them. Authentication methods are either "user", "apop" or any
  4368. # SASL mechanism, e.g. "digest-md5", "gssapi" or "cram-md5".
  4369. # This option is case-insensitive. If this option is unset
  4370. # (the default) NeoMutt will try all available methods, in order from
  4371. # most-secure to least-secure.
  4372. #
  4373. # Example:
  4374. # set pop_authenticators="digest-md5:apop:user"
  4375. #
  4376. #
  4377. # set pop_checkinterval=60
  4378. #
  4379. # Name: pop_checkinterval
  4380. # Type: number
  4381. # Default: 60
  4382. #
  4383. #
  4384. # This variable configures how often (in seconds) NeoMutt should look for
  4385. # new mail in the currently selected mailbox if it is a POP mailbox.
  4386. #
  4387. #
  4388. # set pop_delete=ask-no
  4389. #
  4390. # Name: pop_delete
  4391. # Type: quadoption
  4392. # Default: ask-no
  4393. #
  4394. #
  4395. # If set, NeoMutt will delete successfully downloaded messages from the POP
  4396. # server when using the <fetch-mail> function. When unset, NeoMutt will
  4397. # download messages but also leave them on the POP server.
  4398. #
  4399. #
  4400. # set pop_host=""
  4401. #
  4402. # Name: pop_host
  4403. # Type: string
  4404. # Default: ""
  4405. #
  4406. #
  4407. # The name of your POP server for the <fetch-mail> function. You
  4408. # can also specify an alternative port, username and password, i.e.:
  4409. # [pop[s]://][username[:password]@]popserver[:port]
  4410. #
  4411. # where "[...]" denotes an optional part.
  4412. #
  4413. #
  4414. # set pop_last=no
  4415. #
  4416. # Name: pop_last
  4417. # Type: boolean
  4418. # Default: no
  4419. #
  4420. #
  4421. # If this variable is set, NeoMutt will try to use the "LAST" POP command
  4422. # for retrieving only unread messages from the POP server when using
  4423. # the <fetch-mail> function.
  4424. #
  4425. #
  4426. # set pop_oauth_refresh_command=""
  4427. #
  4428. # Name: pop_oauth_refresh_command
  4429. # Type: command
  4430. # Default: ""
  4431. #
  4432. #
  4433. # The command to run to generate an OAUTH refresh token for
  4434. # authorizing your connection to your POP server. This command will be
  4435. # run on every connection attempt that uses the OAUTHBEARER authentication
  4436. # mechanism. See "oauth" for details.
  4437. #
  4438. #
  4439. # set pop_pass=""
  4440. #
  4441. # Name: pop_pass
  4442. # Type: string
  4443. # Default: ""
  4444. #
  4445. #
  4446. # Specifies the password for your POP account. If unset, NeoMutt will
  4447. # prompt you for your password when you open a POP mailbox.
  4448. #
  4449. # Warning: you should only use this option when you are on a
  4450. # fairly secure machine, because the superuser can read your neomuttrc
  4451. # even if you are the only one who can read the file.
  4452. #
  4453. #
  4454. # set pop_reconnect=ask-yes
  4455. #
  4456. # Name: pop_reconnect
  4457. # Type: quadoption
  4458. # Default: ask-yes
  4459. #
  4460. #
  4461. # Controls whether or not NeoMutt will try to reconnect to the POP server if
  4462. # the connection is lost.
  4463. #
  4464. #
  4465. # set pop_user=""
  4466. #
  4467. # Name: pop_user
  4468. # Type: string
  4469. # Default: ""
  4470. #
  4471. #
  4472. # Your login name on the POP server.
  4473. #
  4474. # This variable defaults to your user name on the local machine.
  4475. #
  4476. #
  4477. # set post_indent_string=""
  4478. #
  4479. # Name: post_indent_string
  4480. # Type: string
  4481. # Default: ""
  4482. #
  4483. #
  4484. # Similar to the $attribution variable, NeoMutt will append this
  4485. # string after the inclusion of a message which is being replied to.
  4486. #
  4487. #
  4488. # set post_moderated=ask-yes
  4489. #
  4490. # Name: post_moderated
  4491. # Type: quadoption
  4492. # Default: ask-yes
  4493. #
  4494. #
  4495. # If set to yes, NeoMutt will post article to newsgroup that have
  4496. # not permissions to posting (e.g. moderated). Note: if news server
  4497. # does not support posting to that newsgroup or totally read-only, that
  4498. # posting will not have an effect.
  4499. #
  4500. #
  4501. # set postpone=ask-yes
  4502. #
  4503. # Name: postpone
  4504. # Type: quadoption
  4505. # Default: ask-yes
  4506. #
  4507. #
  4508. # Controls whether or not messages are saved in the $postponed
  4509. # mailbox when you elect not to send immediately. If set to
  4510. # ask-yes or ask-no, you will be prompted with "Save
  4511. # (postpone) draft message?" when quitting from the "compose"
  4512. # screen.
  4513. #
  4514. # Also see the $recall variable.
  4515. #
  4516. #
  4517. # set postpone_encrypt=no
  4518. #
  4519. # Name: postpone_encrypt
  4520. # Type: boolean
  4521. # Default: no
  4522. #
  4523. #
  4524. # When set, postponed messages that are marked for encryption will be
  4525. # self-encrypted. NeoMutt will first try to encrypt using the value specified
  4526. # in $pgp_default_key or $smime_default_key. If those are not
  4527. # set, it will try the deprecated $postpone_encrypt_as.
  4528. # (Crypto only)
  4529. #
  4530. #
  4531. # set postpone_encrypt_as=""
  4532. #
  4533. # Name: postpone_encrypt_as
  4534. # Type: string
  4535. # Default: ""
  4536. #
  4537. #
  4538. # This is a deprecated fall-back variable for $postpone_encrypt.
  4539. # Please use $pgp_default_key or $smime_default_key.
  4540. # (Crypto only)
  4541. #
  4542. #
  4543. # set postponed="~/postponed"
  4544. #
  4545. # Name: postponed
  4546. # Type: mailbox
  4547. # Default: "~/postponed"
  4548. #
  4549. #
  4550. # NeoMutt allows you to indefinitely "postpone sending a message" which
  4551. # you are editing. When you choose to postpone a message, NeoMutt saves it
  4552. # in the mailbox specified by this variable.
  4553. #
  4554. # Also see the $postpone variable.
  4555. #
  4556. #
  4557. # set preferred_languages=""
  4558. #
  4559. # Name: preferred_languages
  4560. # Type: string list
  4561. # Default: ""
  4562. #
  4563. #
  4564. # RFC8255 : user preferred languages to be search in parts and display
  4565. # Ex. : set preferred_languages="en,fr,de"
  4566. #
  4567. #
  4568. # set print=ask-no
  4569. #
  4570. # Name: print
  4571. # Type: quadoption
  4572. # Default: ask-no
  4573. #
  4574. #
  4575. # Controls whether or not NeoMutt really prints messages.
  4576. # This is set to "ask-no" by default, because some people
  4577. # accidentally hit "p" often.
  4578. #
  4579. #
  4580. # set print_command="lpr"
  4581. #
  4582. # Name: print_command
  4583. # Type: command
  4584. # Default: "lpr"
  4585. #
  4586. #
  4587. # This specifies the command pipe that should be used to print messages.
  4588. #
  4589. #
  4590. # set print_decode=yes
  4591. #
  4592. # Name: print_decode
  4593. # Type: boolean
  4594. # Default: yes
  4595. #
  4596. #
  4597. # Used in connection with the <print-message> function. If this
  4598. # option is set, the message is decoded before it is passed to the
  4599. # external command specified by $print_command. If this option
  4600. # is unset, no processing will be applied to the message when
  4601. # printing it. The latter setting may be useful if you are using
  4602. # some advanced printer filter which is able to properly format
  4603. # e-mail messages for printing.
  4604. #
  4605. # Also see $print_decode_weed, which controls whether headers will
  4606. # be weeded when this is set.
  4607. #
  4608. #
  4609. # set print_decode_weed=yes
  4610. #
  4611. # Name: print_decode_weed
  4612. # Type: boolean
  4613. # Default: yes
  4614. #
  4615. #
  4616. # For <print-message>, when $print_decode is set, this
  4617. # further controls whether NeoMutt will weed headers.
  4618. #
  4619. #
  4620. # set print_split=no
  4621. #
  4622. # Name: print_split
  4623. # Type: boolean
  4624. # Default: no
  4625. #
  4626. #
  4627. # Used in connection with the <print-message> function. If this option
  4628. # is set, the command specified by $print_command is executed once for
  4629. # each message which is to be printed. If this option is unset,
  4630. # the command specified by $print_command is executed only once, and
  4631. # all the messages are concatenated, with a form feed as the message
  4632. # separator.
  4633. #
  4634. # Those who use the enscript(1) program's mail-printing mode will
  4635. # most likely want to set this option.
  4636. #
  4637. #
  4638. # set prompt_after=yes
  4639. #
  4640. # Name: prompt_after
  4641. # Type: boolean
  4642. # Default: yes
  4643. #
  4644. #
  4645. # If you use an external $pager, setting this variable will
  4646. # cause NeoMutt to prompt you for a command when the pager exits rather
  4647. # than returning to the index menu. If unset, NeoMutt will return to the
  4648. # index menu when the external pager exits.
  4649. #
  4650. #
  4651. # set query_command=""
  4652. #
  4653. # Name: query_command
  4654. # Type: command
  4655. # Default: ""
  4656. #
  4657. #
  4658. # This specifies the command NeoMutt will use to make external address
  4659. # queries. The string may contain a "%s", which will be substituted
  4660. # with the query string the user types. NeoMutt will add quotes around the
  4661. # string substituted for "%s" automatically according to shell quoting
  4662. # rules, so you should avoid adding your own. If no "%s" is found in
  4663. # the string, NeoMutt will append the user's query to the end of the string.
  4664. # See "query" for more information.
  4665. #
  4666. #
  4667. # set query_format="%3c %t %-25.25n %-25.25a | %e"
  4668. #
  4669. # Name: query_format
  4670. # Type: string
  4671. # Default: "%3c %t %-25.25n %-25.25a | %e"
  4672. #
  4673. #
  4674. # This variable describes the format of the "query" menu. The
  4675. # following printf(3)-style sequences are understood:
  4676. # %a Destination address
  4677. # %c Current entry number
  4678. # %e * Extra information
  4679. # %n Destination name
  4680. # %t "*" if current entry is tagged, a space otherwise
  4681. # %>X Right justify the rest of the string and pad with "X"
  4682. # %|X Pad to the end of the line with "X"
  4683. # %*X Soft-fill with character "X" as pad
  4684. #
  4685. #
  4686. # For an explanation of "soft-fill", see the $index_format documentation.
  4687. #
  4688. # * = can be optionally printed if nonzero, see the $status_format documentation.
  4689. #
  4690. #
  4691. # set quit=yes
  4692. #
  4693. # Name: quit
  4694. # Type: quadoption
  4695. # Default: yes
  4696. #
  4697. #
  4698. # This variable controls whether "quit" and "exit" actually quit
  4699. # from NeoMutt. If this option is set, they do quit, if it is unset, they
  4700. # have no effect, and if it is set to ask-yes or ask-no, you are
  4701. # prompted for confirmation when you try to quit.
  4702. #
  4703. #
  4704. # set quote_regex="^([ \t]*[|>:}#])+"
  4705. #
  4706. # Name: quote_regex
  4707. # Type: regular expression
  4708. # Default: "^([ \t]*[|>:}#])+"
  4709. #
  4710. #
  4711. # A regular expression used in the internal pager to determine quoted
  4712. # sections of text in the body of a message. Quoted text may be filtered
  4713. # out using the <toggle-quoted> command, or colored according to the
  4714. # "color quoted" family of directives.
  4715. #
  4716. # Higher levels of quoting may be colored differently ("color quoted1",
  4717. # "color quoted2", etc.). The quoting level is determined by removing
  4718. # the last character from the matched text and recursively reapplying
  4719. # the regular expression until it fails to produce a match.
  4720. #
  4721. # Match detection may be overridden by the $smileys regular expression.
  4722. #
  4723. #
  4724. # set read_inc=10
  4725. #
  4726. # Name: read_inc
  4727. # Type: number
  4728. # Default: 10
  4729. #
  4730. #
  4731. # If set to a value greater than 0, NeoMutt will display which message it
  4732. # is currently on when reading a mailbox or when performing search actions
  4733. # such as search and limit. The message is printed after
  4734. # this many messages have been read or searched (e.g., if set to 25, NeoMutt will
  4735. # print a message when it is at message 25, and then again when it gets
  4736. # to message 50). This variable is meant to indicate progress when
  4737. # reading or searching large mailboxes which may take some time.
  4738. # When set to 0, only a single message will appear before the reading
  4739. # the mailbox.
  4740. #
  4741. # Also see the $write_inc, $net_inc and $time_inc variables and the
  4742. # "tuning" section of the manual for performance considerations.
  4743. #
  4744. #
  4745. # set read_only=no
  4746. #
  4747. # Name: read_only
  4748. # Type: boolean
  4749. # Default: no
  4750. #
  4751. #
  4752. # If set, all folders are opened in read-only mode.
  4753. #
  4754. #
  4755. # set realname=""
  4756. #
  4757. # Name: realname
  4758. # Type: string
  4759. # Default: ""
  4760. #
  4761. #
  4762. # This variable specifies what "real" or "personal" name should be used
  4763. # when sending messages.
  4764. #
  4765. # If not specified, then the user's "real name" will be read from /etc/passwd.
  4766. # This option will not be used, if "$from" is set.
  4767. #
  4768. #
  4769. # set recall=ask-yes
  4770. #
  4771. # Name: recall
  4772. # Type: quadoption
  4773. # Default: ask-yes
  4774. #
  4775. #
  4776. # Controls whether or not NeoMutt recalls postponed messages
  4777. # when composing a new message.
  4778. #
  4779. # Setting this variable to yes is not generally useful, and thus not
  4780. # recommended. Note that the <recall-message> function can be used
  4781. # to manually recall postponed messages.
  4782. #
  4783. # Also see $postponed variable.
  4784. #
  4785. #
  4786. # set record="~/sent"
  4787. #
  4788. # Name: record
  4789. # Type: mailbox
  4790. # Default: "~/sent"
  4791. #
  4792. #
  4793. # This specifies the file into which your outgoing messages should be
  4794. # appended. (This is meant as the primary method for saving a copy of
  4795. # your messages, but another way to do this is using the "my_hdr"
  4796. # command to create a "Bcc:" field with your email address in it.)
  4797. #
  4798. # The value of $record is overridden by the $force_name and
  4799. # $save_name variables, and the "fcc-hook" command. Also see $copy
  4800. # and $write_bcc.
  4801. #
  4802. #
  4803. # set reflow_space_quotes=yes
  4804. #
  4805. # Name: reflow_space_quotes
  4806. # Type: boolean
  4807. # Default: yes
  4808. #
  4809. #
  4810. # This option controls how quotes from format=flowed messages are displayed
  4811. # in the pager and when replying (with $text_flowed unset).
  4812. # When set, this option adds spaces after each level of quote marks, turning
  4813. # ">>>foo" into "> > > foo".
  4814. #
  4815. # Note: If $reflow_text is unset, this option has no effect.
  4816. # Also, this option does not affect replies when $text_flowed is set.
  4817. #
  4818. #
  4819. # set reflow_text=yes
  4820. #
  4821. # Name: reflow_text
  4822. # Type: boolean
  4823. # Default: yes
  4824. #
  4825. #
  4826. # When set, NeoMutt will reformat paragraphs in text/plain
  4827. # parts marked format=flowed. If unset, NeoMutt will display paragraphs
  4828. # unaltered from how they appear in the message body. See RFC3676 for
  4829. # details on the format=flowed format.
  4830. #
  4831. # Also see $reflow_wrap, and $wrap.
  4832. #
  4833. #
  4834. # set reflow_wrap=78
  4835. #
  4836. # Name: reflow_wrap
  4837. # Type: number
  4838. # Default: 78
  4839. #
  4840. #
  4841. # This variable controls the maximum paragraph width when reformatting text/plain
  4842. # parts when $reflow_text is set. When the value is 0, paragraphs will
  4843. # be wrapped at the terminal's right margin. A positive value sets the
  4844. # paragraph width relative to the left margin. A negative value set the
  4845. # paragraph width relative to the right margin.
  4846. #
  4847. # Also see $wrap.
  4848. #
  4849. #
  4850. # set reply_regex="^((re|aw|sv)(\\[[0-9]+\\])*:[ \t]*)*"
  4851. #
  4852. # Name: reply_regex
  4853. # Type: regular expression
  4854. # Default: "^((re|aw|sv)(\\[[0-9]+\\])*:[ \t]*)*"
  4855. #
  4856. #
  4857. # A regular expression used to recognize reply messages when threading
  4858. # and replying. The default value corresponds to the English "Re:", the
  4859. # German "Aw:" and the Swedish "Sv:".
  4860. #
  4861. #
  4862. # set reply_self=no
  4863. #
  4864. # Name: reply_self
  4865. # Type: boolean
  4866. # Default: no
  4867. #
  4868. #
  4869. # If unset and you are replying to a message sent by you, NeoMutt will
  4870. # assume that you want to reply to the recipients of that message rather
  4871. # than to yourself.
  4872. #
  4873. # Also see the "alternates" command.
  4874. #
  4875. #
  4876. # set reply_to=ask-yes
  4877. #
  4878. # Name: reply_to
  4879. # Type: quadoption
  4880. # Default: ask-yes
  4881. #
  4882. #
  4883. # If set, when replying to a message, NeoMutt will use the address listed
  4884. # in the Reply-to: header as the recipient of the reply. If unset,
  4885. # it will use the address in the From: header field instead. This
  4886. # option is useful for reading a mailing list that sets the Reply-To:
  4887. # header field to the list address and you want to send a private
  4888. # message to the author of a message.
  4889. #
  4890. #
  4891. # set reply_with_xorig=no
  4892. #
  4893. # Name: reply_with_xorig
  4894. # Type: boolean
  4895. # Default: no
  4896. #
  4897. #
  4898. # This variable provides a toggle. When active, the From: header will be
  4899. # extracted from the current mail's 'X-Original-To:' header. This setting
  4900. # does not have precedence over "reverse_realname".
  4901. #
  4902. # Assuming 'fast_reply' is disabled, this option will prompt the user with a
  4903. # prefilled From: header.
  4904. #
  4905. #
  4906. # set resolve=yes
  4907. #
  4908. # Name: resolve
  4909. # Type: boolean
  4910. # Default: yes
  4911. #
  4912. #
  4913. # When set, the cursor will be automatically advanced to the next
  4914. # (possibly undeleted) message whenever a command that modifies the
  4915. # current message is executed.
  4916. #
  4917. #
  4918. # set resume_draft_files=no
  4919. #
  4920. # Name: resume_draft_files
  4921. # Type: boolean
  4922. # Default: no
  4923. #
  4924. #
  4925. # If set, draft files (specified by -H on the command
  4926. # line) are processed similarly to when resuming a postponed
  4927. # message. Recipients are not prompted for; send-hooks are not
  4928. # evaluated; no alias expansion takes place; user-defined headers
  4929. # and signatures are not added to the message.
  4930. #
  4931. #
  4932. # set resume_edited_draft_files=yes
  4933. #
  4934. # Name: resume_edited_draft_files
  4935. # Type: boolean
  4936. # Default: yes
  4937. #
  4938. #
  4939. # If set, draft files previously edited (via -E -H on
  4940. # the command line) will have $resume_draft_files automatically
  4941. # set when they are used as a draft file again.
  4942. #
  4943. # The first time a draft file is saved, NeoMutt will add a header,
  4944. # X-Mutt-Resume-Draft to the saved file. The next time the draft
  4945. # file is read in, if NeoMutt sees the header, it will set
  4946. # $resume_draft_files.
  4947. #
  4948. # This option is designed to prevent multiple signatures,
  4949. # user-defined headers, and other processing effects from being
  4950. # made multiple times to the draft file.
  4951. #
  4952. #
  4953. # set reverse_alias=no
  4954. #
  4955. # Name: reverse_alias
  4956. # Type: boolean
  4957. # Default: no
  4958. #
  4959. #
  4960. # This variable controls whether or not NeoMutt will display the "personal"
  4961. # name from your aliases in the index menu if it finds an alias that
  4962. # matches the message's sender. For example, if you have the following
  4963. # alias:
  4964. # alias juser abd30425@somewhere.net (Joe User)
  4965. #
  4966. # and then you receive mail which contains the following header:
  4967. # From: abd30425@somewhere.net
  4968. #
  4969. # It would be displayed in the index menu as "Joe User" instead of
  4970. # "abd30425@somewhere.net." This is useful when the person's e-mail
  4971. # address is not human friendly.
  4972. #
  4973. #
  4974. # set reverse_name=no
  4975. #
  4976. # Name: reverse_name
  4977. # Type: boolean
  4978. # Default: no
  4979. #
  4980. #
  4981. # It may sometimes arrive that you receive mail to a certain machine,
  4982. # move the messages to another machine, and reply to some the messages
  4983. # from there. If this variable is set, the default From: line of
  4984. # the reply messages is built using the address where you received the
  4985. # messages you are replying to if that address matches your
  4986. # "alternates". If the variable is unset, or the address that would be
  4987. # used doesn't match your "alternates", the From: line will use
  4988. # your address on the current machine.
  4989. #
  4990. # Also see the "alternates" command and $reverse_realname.
  4991. #
  4992. #
  4993. # set reverse_realname=yes
  4994. #
  4995. # Name: reverse_realname
  4996. # Type: boolean
  4997. # Default: yes
  4998. #
  4999. #
  5000. # This variable fine-tunes the behavior of the $reverse_name feature.
  5001. #
  5002. # When it is unset, NeoMutt will remove the real name part of a
  5003. # matching address. This allows the use of the email address
  5004. # without having to also use what the sender put in the real name
  5005. # field.
  5006. #
  5007. # When it is set, NeoMutt will use the matching address as-is.
  5008. #
  5009. # In either case, a missing real name will be filled in afterwards
  5010. # using the value of $realname.
  5011. #
  5012. #
  5013. # set rfc2047_parameters=no
  5014. #
  5015. # Name: rfc2047_parameters
  5016. # Type: boolean
  5017. # Default: no
  5018. #
  5019. #
  5020. # When this variable is set, NeoMutt will decode RFC2047-encoded MIME
  5021. # parameters. You want to set this variable when NeoMutt suggests you
  5022. # to save attachments to files named like:
  5023. # =?iso-8859-1?Q?file=5F=E4=5F991116=2Ezip?=
  5024. # =?utf-8?Q?z=C4=99ta.png?=
  5025. #
  5026. # When this variable is set interactively, the change won't be
  5027. # active until you change folders.
  5028. #
  5029. # Note that this use of RFC2047's encoding is explicitly
  5030. # prohibited by the standard, but nevertheless encountered in the
  5031. # wild and produced by, e.g., Outlook.
  5032. #
  5033. # Also note that setting this parameter will not have the effect
  5034. # that NeoMutt generates this kind of encoding. Instead, NeoMutt will
  5035. # unconditionally use the encoding specified in RFC2231.
  5036. #
  5037. #
  5038. # set save_address=no
  5039. #
  5040. # Name: save_address
  5041. # Type: boolean
  5042. # Default: no
  5043. #
  5044. #
  5045. # If set, NeoMutt will take the sender's full address when choosing a
  5046. # default folder for saving a mail. If $save_name or $force_name
  5047. # is set too, the selection of the Fcc folder will be changed as well.
  5048. #
  5049. #
  5050. # set save_empty=yes
  5051. #
  5052. # Name: save_empty
  5053. # Type: boolean
  5054. # Default: yes
  5055. #
  5056. #
  5057. # When unset, mailboxes which contain no saved messages will be removed
  5058. # when closed (the exception is $spoolfile which is never removed).
  5059. # If set, mailboxes are never removed.
  5060. #
  5061. # Note: This only applies to mbox and MMDF folders, NeoMutt does not
  5062. # delete MH and Maildir directories.
  5063. #
  5064. #
  5065. # set save_history=0
  5066. #
  5067. # Name: save_history
  5068. # Type: number
  5069. # Default: 0
  5070. #
  5071. #
  5072. # This variable controls the size of the history (per category) saved in the
  5073. # $history_file file.
  5074. #
  5075. #
  5076. # set save_name=no
  5077. #
  5078. # Name: save_name
  5079. # Type: boolean
  5080. # Default: no
  5081. #
  5082. #
  5083. # This variable controls how copies of outgoing messages are saved.
  5084. # When set, a check is made to see if a mailbox specified by the
  5085. # recipient address exists (this is done by searching for a mailbox in
  5086. # the $folder directory with the username part of the
  5087. # recipient address). If the mailbox exists, the outgoing message will
  5088. # be saved to that mailbox, otherwise the message is saved to the
  5089. # $record mailbox.
  5090. #
  5091. # Also see the $force_name variable.
  5092. #
  5093. #
  5094. # set save_unsubscribed=no
  5095. #
  5096. # Name: save_unsubscribed
  5097. # Type: boolean
  5098. # Default: no
  5099. #
  5100. #
  5101. # When set, info about unsubscribed newsgroups will be saved into
  5102. # "newsrc" file and into cache.
  5103. #
  5104. #
  5105. # set score=yes
  5106. #
  5107. # Name: score
  5108. # Type: boolean
  5109. # Default: yes
  5110. #
  5111. #
  5112. # When this variable is unset, scoring is turned off. This can
  5113. # be useful to selectively disable scoring for certain folders when the
  5114. # $score_threshold_delete variable and related are used.
  5115. #
  5116. #
  5117. # set score_threshold_delete=-1
  5118. #
  5119. # Name: score_threshold_delete
  5120. # Type: number
  5121. # Default: -1
  5122. #
  5123. #
  5124. # Messages which have been assigned a score equal to or lower than the value
  5125. # of this variable are automatically marked for deletion by NeoMutt. Since
  5126. # NeoMutt scores are always greater than or equal to zero, the default setting
  5127. # of this variable will never mark a message for deletion.
  5128. #
  5129. #
  5130. # set score_threshold_flag=9999
  5131. #
  5132. # Name: score_threshold_flag
  5133. # Type: number
  5134. # Default: 9999
  5135. #
  5136. #
  5137. # Messages which have been assigned a score greater than or equal to this
  5138. # variable's value are automatically marked "flagged".
  5139. #
  5140. #
  5141. # set score_threshold_read=-1
  5142. #
  5143. # Name: score_threshold_read
  5144. # Type: number
  5145. # Default: -1
  5146. #
  5147. #
  5148. # Messages which have been assigned a score equal to or lower than the value
  5149. # of this variable are automatically marked as read by NeoMutt. Since
  5150. # NeoMutt scores are always greater than or equal to zero, the default setting
  5151. # of this variable will never mark a message read.
  5152. #
  5153. #
  5154. # set search_context=0
  5155. #
  5156. # Name: search_context
  5157. # Type: number
  5158. # Default: 0
  5159. #
  5160. #
  5161. # For the pager, this variable specifies the number of lines shown
  5162. # before search results. By default, search results will be top-aligned.
  5163. #
  5164. #
  5165. # set send_charset="us-ascii:iso-8859-1:utf-8"
  5166. #
  5167. # Name: send_charset
  5168. # Type: string
  5169. # Default: "us-ascii:iso-8859-1:utf-8"
  5170. #
  5171. #
  5172. # A colon-delimited list of character sets for outgoing messages. NeoMutt will use the
  5173. # first character set into which the text can be converted exactly.
  5174. # If your $charset is not "iso-8859-1" and recipients may not
  5175. # understand "UTF-8", it is advisable to include in the list an
  5176. # appropriate widely used standard character set (such as
  5177. # "iso-8859-2", "koi8-r" or "iso-2022-jp") either instead of or after
  5178. # "iso-8859-1".
  5179. #
  5180. # In case the text can't be converted into one of these exactly,
  5181. # NeoMutt uses $charset as a fallback.
  5182. #
  5183. #
  5184. # set sendmail="/usr/sbin/sendmail -oem -oi"
  5185. #
  5186. # Name: sendmail
  5187. # Type: command
  5188. # Default: "/usr/sbin/sendmail -oem -oi"
  5189. #
  5190. #
  5191. # Specifies the program and arguments used to deliver mail sent by NeoMutt.
  5192. # NeoMutt expects that the specified program interprets additional
  5193. # arguments as recipient addresses. NeoMutt appends all recipients after
  5194. # adding a -- delimiter (if not already present). Additional
  5195. # flags, such as for $use_8bitmime, $use_envelope_from,
  5196. # $dsn_notify, or $dsn_return will be added before the delimiter.
  5197. #
  5198. # See also: $write_bcc.
  5199. #
  5200. #
  5201. # set sendmail_wait=0
  5202. #
  5203. # Name: sendmail_wait
  5204. # Type: number
  5205. # Default: 0
  5206. #
  5207. #
  5208. # Specifies the number of seconds to wait for the $sendmail process
  5209. # to finish before giving up and putting delivery in the background.
  5210. #
  5211. # NeoMutt interprets the value of this variable as follows:
  5212. # >0 number of seconds to wait for sendmail to finish before continuing
  5213. # 0 wait forever for sendmail to finish
  5214. # <0 always put sendmail in the background without waiting
  5215. #
  5216. #
  5217. # Note that if you specify a value other than 0, the output of the child
  5218. # process will be put in a temporary file. If there is some error, you
  5219. # will be informed as to where to find the output.
  5220. #
  5221. #
  5222. # set shell="/bin/sh"
  5223. #
  5224. # Name: shell
  5225. # Type: command
  5226. # Default: "/bin/sh"
  5227. #
  5228. #
  5229. # Command to use when spawning a subshell.
  5230. # If not specified, then the user's login shell from /etc/passwd is used.
  5231. #
  5232. #
  5233. # set show_multipart_alternative=""
  5234. #
  5235. # Name: show_multipart_alternative
  5236. # Type: string
  5237. # Default: ""
  5238. #
  5239. #
  5240. # When set to info, the multipart/alternative information is shown.
  5241. # When set to inline, all of the alternatives are displayed.
  5242. # When not set, the default behavior is to show only the chosen alternative.
  5243. #
  5244. #
  5245. # set show_new_news=yes
  5246. #
  5247. # Name: show_new_news
  5248. # Type: boolean
  5249. # Default: yes
  5250. #
  5251. #
  5252. # If set, news server will be asked for new newsgroups on entering
  5253. # the browser. Otherwise, it will be done only once for a news server.
  5254. # Also controls whether or not number of new articles of subscribed
  5255. # newsgroups will be then checked.
  5256. #
  5257. #
  5258. # set show_only_unread=no
  5259. #
  5260. # Name: show_only_unread
  5261. # Type: boolean
  5262. # Default: no
  5263. #
  5264. #
  5265. # If set, only subscribed newsgroups that contain unread articles
  5266. # will be displayed in browser.
  5267. #
  5268. #
  5269. # set sidebar_component_depth=0
  5270. #
  5271. # Name: sidebar_component_depth
  5272. # Type: number
  5273. # Default: 0
  5274. #
  5275. #
  5276. # By default the sidebar will show the mailbox's path, relative to the
  5277. # $folder variable. This specifies the number of parent directories to hide
  5278. # from display in the sidebar. For example: If a maildir is normally
  5279. # displayed in the sidebar as dir1/dir2/dir3/maildir, setting
  5280. # sidebar_component_depth=2 will display it as dir3/maildir, having
  5281. # truncated the 2 highest directories.
  5282. #
  5283. # See also: $sidebar_short_path
  5284. #
  5285. #
  5286. # set sidebar_delim_chars="/."
  5287. #
  5288. # Name: sidebar_delim_chars
  5289. # Type: string
  5290. # Default: "/."
  5291. #
  5292. #
  5293. # This contains the list of characters which you would like to treat
  5294. # as folder separators for displaying paths in the sidebar.
  5295. #
  5296. # Local mail is often arranged in directories: 'dir1/dir2/mailbox'.
  5297. # set sidebar_delim_chars='/'
  5298. #
  5299. # IMAP mailboxes are often named: 'folder1.folder2.mailbox'.
  5300. # set sidebar_delim_chars='.'
  5301. #
  5302. # See also: $sidebar_short_path, $sidebar_folder_indent, $sidebar_indent_string.
  5303. #
  5304. #
  5305. # set sidebar_divider_char=""
  5306. #
  5307. # Name: sidebar_divider_char
  5308. # Type: string
  5309. # Default: ""
  5310. #
  5311. #
  5312. # This specifies the characters to be drawn between the sidebar (when
  5313. # visible) and the other NeoMutt panels. ASCII and Unicode line-drawing
  5314. # characters are supported.
  5315. #
  5316. #
  5317. # set sidebar_folder_indent=no
  5318. #
  5319. # Name: sidebar_folder_indent
  5320. # Type: boolean
  5321. # Default: no
  5322. #
  5323. #
  5324. # Set this to indent mailboxes in the sidebar.
  5325. #
  5326. # See also: $sidebar_short_path, $sidebar_indent_string, $sidebar_delim_chars.
  5327. #
  5328. #
  5329. # set sidebar_format="%D%* %n"
  5330. #
  5331. # Name: sidebar_format
  5332. # Type: string
  5333. # Default: "%D%* %n"
  5334. #
  5335. #
  5336. # This variable allows you to customize the sidebar display. This string is
  5337. # similar to $index_format, but has its own set of printf(3)-like
  5338. # sequences:
  5339. # %B Name of the mailbox
  5340. # %d * @ Number of deleted messages in the mailbox
  5341. # %D Descriptive name of the mailbox
  5342. # %F * Number of flagged messages in the mailbox
  5343. # %L * @ Number of messages after limiting
  5344. # %n 'N' if mailbox has new mail, ' ' (space) otherwise
  5345. # %N * Number of unread messages in the mailbox (seen or unseen)
  5346. # %o * Number of old messages in the mailbox (unread, seen)
  5347. # %r * Number of read messages in the mailbox (read, seen)
  5348. # %S * Size of mailbox (total number of messages)
  5349. # %t * @ Number of tagged messages in the mailbox
  5350. # %Z * Number of new messages in the mailbox (unread, unseen)
  5351. # %! "!" : one flagged message;
  5352. # "!!" : two flagged messages;
  5353. # "n!" : n flagged messages (for n > 2).
  5354. # Otherwise prints nothing.
  5355. # %>X Right justify the rest of the string and pad with "X"
  5356. # %|X Pad to the end of the line with "X"
  5357. # %*X Soft-fill with character "X" as pad
  5358. #
  5359. #
  5360. # * = Can be optionally printed if nonzero
  5361. #
  5362. # @ = Only applicable to the current folder
  5363. #
  5364. # In order to use %S, %N, %F, and %!, $mail_check_stats must
  5365. # be set. When thus set, a suggested value for this option is
  5366. # "%B%?F? [%F]?%* %?N?%N/?%S".
  5367. #
  5368. #
  5369. # set sidebar_indent_string=" "
  5370. #
  5371. # Name: sidebar_indent_string
  5372. # Type: string
  5373. # Default: " "
  5374. #
  5375. #
  5376. # This specifies the string that is used to indent mailboxes in the sidebar.
  5377. # It defaults to two spaces.
  5378. #
  5379. # See also: $sidebar_short_path, $sidebar_folder_indent, $sidebar_delim_chars.
  5380. #
  5381. #
  5382. # set sidebar_new_mail_only=no
  5383. #
  5384. # Name: sidebar_new_mail_only
  5385. # Type: boolean
  5386. # Default: no
  5387. #
  5388. #
  5389. # When set, the sidebar will only display mailboxes containing new, or
  5390. # flagged, mail.
  5391. #
  5392. # See also: $sidebar_whitelist, $sidebar_non_empty_mailbox_only.
  5393. #
  5394. #
  5395. # set sidebar_next_new_wrap=no
  5396. #
  5397. # Name: sidebar_next_new_wrap
  5398. # Type: boolean
  5399. # Default: no
  5400. #
  5401. #
  5402. # When set, the <sidebar-next-new> command will not stop and the end of
  5403. # the list of mailboxes, but wrap around to the beginning. The
  5404. # <sidebar-prev-new> command is similarly affected, wrapping around to
  5405. # the end of the list.
  5406. #
  5407. #
  5408. # set sidebar_non_empty_mailbox_only=no
  5409. #
  5410. # Name: sidebar_non_empty_mailbox_only
  5411. # Type: boolean
  5412. # Default: no
  5413. #
  5414. #
  5415. # When set, the sidebar will only display mailboxes that contain one or more mails.
  5416. #
  5417. # See also: $sidebar_new_mail_only, $sidebar_whitelist.
  5418. #
  5419. #
  5420. # set sidebar_on_right=no
  5421. #
  5422. # Name: sidebar_on_right
  5423. # Type: boolean
  5424. # Default: no
  5425. #
  5426. #
  5427. # When set, the sidebar will appear on the right-hand side of the screen.
  5428. #
  5429. #
  5430. # set sidebar_short_path=no
  5431. #
  5432. # Name: sidebar_short_path
  5433. # Type: boolean
  5434. # Default: no
  5435. #
  5436. #
  5437. # By default the sidebar will show the mailbox's path, relative to the
  5438. # $folder variable. Setting sidebar_shortpath=yes will shorten the
  5439. # names relative to the previous name. Here's an example:
  5440. # shortpath=no shortpath=yes shortpath=yes, folderindent=yes, indentstr=".."
  5441. # fruit fruit fruit
  5442. # fruit.apple apple ..apple
  5443. # fruit.banana banana ..banana
  5444. # fruit.cherry cherry ..cherry
  5445. #
  5446. #
  5447. # See also: $sidebar_delim_chars, $sidebar_folder_indent,
  5448. # $sidebar_indent_string, $sidebar_component_depth.
  5449. #
  5450. #
  5451. # set sidebar_sort_method=order
  5452. #
  5453. # Name: sidebar_sort_method
  5454. # Type: sort order
  5455. # Default: order
  5456. #
  5457. #
  5458. # Specifies how to sort mailbox entries in the sidebar. By default, the
  5459. # entries are sorted alphabetically. Valid values:
  5460. # - path (alphabetically)
  5461. # - count (all message count)
  5462. # - flagged (flagged message count)
  5463. # - new (unread message count)
  5464. # - unread (unread message count)
  5465. # - unsorted
  5466. #
  5467. #
  5468. # You may optionally use the "reverse-" prefix to specify reverse sorting
  5469. # order (example: "set sidebar_sort_method=reverse-alpha").
  5470. #
  5471. # The "alpha" and "name" values are synonyms for "path".
  5472. #
  5473. #
  5474. # set sidebar_visible=no
  5475. #
  5476. # Name: sidebar_visible
  5477. # Type: boolean
  5478. # Default: no
  5479. #
  5480. #
  5481. # This specifies whether or not to show sidebar. The sidebar shows a list of
  5482. # all your mailboxes.
  5483. #
  5484. # See also: $sidebar_format, $sidebar_width
  5485. #
  5486. #
  5487. # set sidebar_width=30
  5488. #
  5489. # Name: sidebar_width
  5490. # Type: number
  5491. # Default: 30
  5492. #
  5493. #
  5494. # This controls the width of the sidebar. It is measured in screen columns.
  5495. # For example: sidebar_width=20 could display 20 ASCII characters, or 10
  5496. # Chinese characters.
  5497. #
  5498. #
  5499. # set sig_dashes=yes
  5500. #
  5501. # Name: sig_dashes
  5502. # Type: boolean
  5503. # Default: yes
  5504. #
  5505. #
  5506. # If set, a line containing "-- " (note the trailing space) will be inserted before your
  5507. # $signature. It is strongly recommended that you not unset
  5508. # this variable unless your signature contains just your name. The
  5509. # reason for this is because many software packages use "-- \n" to
  5510. # detect your signature. For example, NeoMutt has the ability to highlight
  5511. # the signature in a different color in the built-in pager.
  5512. #
  5513. #
  5514. # set sig_on_top=no
  5515. #
  5516. # Name: sig_on_top
  5517. # Type: boolean
  5518. # Default: no
  5519. #
  5520. #
  5521. # If set, the signature will be included before any quoted or forwarded
  5522. # text. It is strongly recommended that you do not set this variable
  5523. # unless you really know what you are doing, and are prepared to take
  5524. # some heat from netiquette guardians.
  5525. #
  5526. #
  5527. # set signature="~/.signature"
  5528. #
  5529. # Name: signature
  5530. # Type: path
  5531. # Default: "~/.signature"
  5532. #
  5533. #
  5534. # Specifies the filename of your signature, which is appended to all
  5535. # outgoing messages. If the filename ends with a pipe ("|"), it is
  5536. # assumed that filename is a shell command and input should be read from
  5537. # its standard output.
  5538. #
  5539. #
  5540. # set simple_search="~f %s | ~s %s"
  5541. #
  5542. # Name: simple_search
  5543. # Type: string
  5544. # Default: "~f %s | ~s %s"
  5545. #
  5546. #
  5547. # Specifies how NeoMutt should expand a simple search into a real search
  5548. # pattern. A simple search is one that does not contain any of the "~" pattern
  5549. # operators. See "patterns" for more information on search patterns.
  5550. #
  5551. # For example, if you simply type "joe" at a search or limit prompt, NeoMutt
  5552. # will automatically expand it to the value specified by this variable by
  5553. # replacing "%s" with the supplied string.
  5554. # For the default value, "joe" would be expanded to: "~f joe | ~s joe".
  5555. #
  5556. #
  5557. # set size_show_bytes=no
  5558. #
  5559. # Name: size_show_bytes
  5560. # Type: boolean
  5561. # Default: no
  5562. #
  5563. #
  5564. # If set, message sizes will display bytes for values less than
  5565. # 1 kilobyte. See formatstrings-size.
  5566. #
  5567. #
  5568. # set size_show_fractions=yes
  5569. #
  5570. # Name: size_show_fractions
  5571. # Type: boolean
  5572. # Default: yes
  5573. #
  5574. #
  5575. # If set, message sizes will be displayed with a single decimal value
  5576. # for sizes from 0 to 10 kilobytes and 1 to 10 megabytes.
  5577. # See formatstrings-size.
  5578. #
  5579. #
  5580. # set size_show_mb=yes
  5581. #
  5582. # Name: size_show_mb
  5583. # Type: boolean
  5584. # Default: yes
  5585. #
  5586. #
  5587. # If set, message sizes will display megabytes for values greater than
  5588. # or equal to 1 megabyte. See formatstrings-size.
  5589. #
  5590. #
  5591. # set size_units_on_left=no
  5592. #
  5593. # Name: size_units_on_left
  5594. # Type: boolean
  5595. # Default: no
  5596. #
  5597. #
  5598. # If set, message sizes units will be displayed to the left of the number.
  5599. # See formatstrings-size.
  5600. #
  5601. #
  5602. # set skip_quoted_offset=0
  5603. #
  5604. # Name: skip_quoted_offset
  5605. # Type: number
  5606. # Default: 0
  5607. #
  5608. #
  5609. # Lines of quoted text that are displayed before the unquoted text after
  5610. # "skip to quoted" command (S)
  5611. #
  5612. #
  5613. # set sleep_time=1
  5614. #
  5615. # Name: sleep_time
  5616. # Type: number
  5617. # Default: 1
  5618. #
  5619. #
  5620. # Specifies time, in seconds, to pause while displaying certain informational
  5621. # messages, while moving from folder to folder and after expunging
  5622. # messages from the current folder. The default is to pause one second, so
  5623. # a value of zero for this option suppresses the pause.
  5624. #
  5625. #
  5626. # set smart_wrap=yes
  5627. #
  5628. # Name: smart_wrap
  5629. # Type: boolean
  5630. # Default: yes
  5631. #
  5632. #
  5633. # Controls the display of lines longer than the screen width in the
  5634. # internal pager. If set, long lines are wrapped at a word boundary. If
  5635. # unset, lines are simply wrapped at the screen edge. Also see the
  5636. # $markers variable.
  5637. #
  5638. #
  5639. # set smileys="(>From )|(:[-^]?[][)(><}{|/DP])"
  5640. #
  5641. # Name: smileys
  5642. # Type: regular expression
  5643. # Default: "(>From )|(:[-^]?[][)(><}{|/DP])"
  5644. #
  5645. #
  5646. # The pager uses this variable to catch some common false
  5647. # positives of $quote_regex, most notably smileys and not consider
  5648. # a line quoted text if it also matches $smileys. This mostly
  5649. # happens at the beginning of a line.
  5650. #
  5651. #
  5652. # set smime_ask_cert_label=yes
  5653. #
  5654. # Name: smime_ask_cert_label
  5655. # Type: boolean
  5656. # Default: yes
  5657. #
  5658. #
  5659. # This flag controls whether you want to be asked to enter a label
  5660. # for a certificate about to be added to the database or not. It is
  5661. # set by default.
  5662. # (S/MIME only)
  5663. #
  5664. #
  5665. # set smime_ca_location=""
  5666. #
  5667. # Name: smime_ca_location
  5668. # Type: path
  5669. # Default: ""
  5670. #
  5671. #
  5672. # This variable contains the name of either a directory, or a file which
  5673. # contains trusted certificates for use with OpenSSL.
  5674. # (S/MIME only)
  5675. #
  5676. #
  5677. # set smime_certificates=""
  5678. #
  5679. # Name: smime_certificates
  5680. # Type: path
  5681. # Default: ""
  5682. #
  5683. #
  5684. # Since for S/MIME there is no pubring/secring as with PGP, NeoMutt has to handle
  5685. # storage and retrieval of keys by itself. This is very basic right
  5686. # now, and keys and certificates are stored in two different
  5687. # directories, both named as the hash-value retrieved from
  5688. # OpenSSL. There is an index file which contains mailbox-address
  5689. # keyid pairs, and which can be manually edited. This option points to
  5690. # the location of the certificates.
  5691. # (S/MIME only)
  5692. #
  5693. #
  5694. # set smime_decrypt_command=""
  5695. #
  5696. # Name: smime_decrypt_command
  5697. # Type: command
  5698. # Default: ""
  5699. #
  5700. #
  5701. # This format string specifies a command which is used to decrypt
  5702. # application/x-pkcs7-mime attachments.
  5703. #
  5704. # The OpenSSL command formats have their own set of printf(3)-like sequences
  5705. # similar to PGP's:
  5706. # %f Expands to the name of a file containing a message.
  5707. # %s Expands to the name of a file containing the signature part
  5708. # of a multipart/signed attachment when verifying it.
  5709. # %k The key-pair specified with $smime_default_key
  5710. # %i Intermediate certificates
  5711. # %c One or more certificate IDs.
  5712. # %a The algorithm used for encryption.
  5713. # %d The message digest algorithm specified with $smime_sign_digest_alg.
  5714. # %C CA location: Depending on whether $smime_ca_location
  5715. # points to a directory or file, this expands to
  5716. # "-CApath $smime_ca_location" or "-CAfile $smime_ca_location".
  5717. #
  5718. #
  5719. # For examples on how to configure these formats, see the smime.rc in
  5720. # the samples/ subdirectory which has been installed on your system
  5721. # alongside the documentation.
  5722. # (S/MIME only)
  5723. #
  5724. #
  5725. # set smime_decrypt_use_default_key=yes
  5726. #
  5727. # Name: smime_decrypt_use_default_key
  5728. # Type: boolean
  5729. # Default: yes
  5730. #
  5731. #
  5732. # If set (default) this tells NeoMutt to use the default key for decryption. Otherwise,
  5733. # if managing multiple certificate-key-pairs, NeoMutt will try to use the mailbox-address
  5734. # to determine the key to use. It will ask you to supply a key, if it can't find one.
  5735. # (S/MIME only)
  5736. #
  5737. #
  5738. # set smime_default_key=""
  5739. #
  5740. # Name: smime_default_key
  5741. # Type: string
  5742. # Default: ""
  5743. #
  5744. #
  5745. # This is the default key-pair to use for S/MIME operations, and must be
  5746. # set to the keyid (the hash-value that OpenSSL generates) to work properly.
  5747. #
  5748. # It will be used for encryption (see $postpone_encrypt and
  5749. # $smime_self_encrypt).
  5750. #
  5751. # It will be used for decryption unless $smime_decrypt_use_default_key
  5752. # is unset.
  5753. #
  5754. # It will also be used for signing unless $smime_sign_as is set.
  5755. #
  5756. # The (now deprecated) smime_self_encrypt_as is an alias for this
  5757. # variable, and should no longer be used.
  5758. # (S/MIME only)
  5759. #
  5760. #
  5761. # set smime_encrypt_command=""
  5762. #
  5763. # Name: smime_encrypt_command
  5764. # Type: command
  5765. # Default: ""
  5766. #
  5767. #
  5768. # This command is used to create encrypted S/MIME messages.
  5769. #
  5770. # This is a format string, see the $smime_decrypt_command command for
  5771. # possible printf(3)-like sequences.
  5772. # (S/MIME only)
  5773. #
  5774. # Encrypt the message to $smime_default_key too.
  5775. # (S/MIME only)
  5776. # Note: On Debian systems, this defaults to the first existing file in
  5777. # the following list: ~/.smime/ca-certificates.crt ~/.smime/ca-bundle.crt
  5778. # /etc/ssl/certs/ca-certificates.crt.
  5779. #
  5780. #
  5781. # set smime_encrypt_with="aes256"
  5782. #
  5783. # Name: smime_encrypt_with
  5784. # Type: string
  5785. # Default: "aes256"
  5786. #
  5787. #
  5788. # This sets the algorithm that should be used for encryption.
  5789. # Valid choices are "aes128", "aes192", "aes256", "des", "des3", "rc2-40", "rc2-64", "rc2-128".
  5790. # (S/MIME only)
  5791. #
  5792. #
  5793. # set smime_get_cert_command=""
  5794. #
  5795. # Name: smime_get_cert_command
  5796. # Type: command
  5797. # Default: ""
  5798. #
  5799. #
  5800. # This command is used to extract X509 certificates from a PKCS7 structure.
  5801. #
  5802. # This is a format string, see the $smime_decrypt_command command for
  5803. # possible printf(3)-like sequences.
  5804. # (S/MIME only)
  5805. #
  5806. #
  5807. # set smime_get_cert_email_command=""
  5808. #
  5809. # Name: smime_get_cert_email_command
  5810. # Type: command
  5811. # Default: ""
  5812. #
  5813. #
  5814. # This command is used to extract the mail address(es) used for storing
  5815. # X509 certificates, and for verification purposes (to check whether the
  5816. # certificate was issued for the sender's mailbox).
  5817. #
  5818. # This is a format string, see the $smime_decrypt_command command for
  5819. # possible printf(3)-like sequences.
  5820. # (S/MIME only)
  5821. #
  5822. #
  5823. # set smime_get_signer_cert_command=""
  5824. #
  5825. # Name: smime_get_signer_cert_command
  5826. # Type: command
  5827. # Default: ""
  5828. #
  5829. #
  5830. # This command is used to extract only the signers X509 certificate from a S/MIME
  5831. # signature, so that the certificate's owner may get compared to the
  5832. # email's "From:" field.
  5833. #
  5834. # This is a format string, see the $smime_decrypt_command command for
  5835. # possible printf(3)-like sequences.
  5836. # (S/MIME only)
  5837. #
  5838. #
  5839. # set smime_import_cert_command=""
  5840. #
  5841. # Name: smime_import_cert_command
  5842. # Type: command
  5843. # Default: ""
  5844. #
  5845. #
  5846. # This command is used to import a certificate via smime_keys.
  5847. #
  5848. # This is a format string, see the $smime_decrypt_command command for
  5849. # possible printf(3)-like sequences. NOTE: %c and %k will default
  5850. # to $smime_sign_as if set, otherwise $smime_default_key.
  5851. # (S/MIME only)
  5852. #
  5853. #
  5854. # set smime_is_default=no
  5855. #
  5856. # Name: smime_is_default
  5857. # Type: boolean
  5858. # Default: no
  5859. #
  5860. #
  5861. # The default behavior of NeoMutt is to use PGP on all auto-sign/encryption
  5862. # operations. To override and to use OpenSSL instead this must be set.
  5863. # However, this has no effect while replying, since NeoMutt will automatically
  5864. # select the same application that was used to sign/encrypt the original
  5865. # message. (Note that this variable can be overridden by unsetting $crypt_autosmime.)
  5866. # (S/MIME only)
  5867. #
  5868. #
  5869. # set smime_keys=""
  5870. #
  5871. # Name: smime_keys
  5872. # Type: path
  5873. # Default: ""
  5874. #
  5875. #
  5876. # Since for S/MIME there is no pubring/secring as with PGP, NeoMutt has to handle
  5877. # storage and retrieval of keys/certs by itself. This is very basic right now,
  5878. # and stores keys and certificates in two different directories, both
  5879. # named as the hash-value retrieved from OpenSSL. There is an index file
  5880. # which contains mailbox-address keyid pair, and which can be manually
  5881. # edited. This option points to the location of the private keys.
  5882. # (S/MIME only)
  5883. #
  5884. #
  5885. # set smime_pk7out_command=""
  5886. #
  5887. # Name: smime_pk7out_command
  5888. # Type: command
  5889. # Default: ""
  5890. #
  5891. #
  5892. # This command is used to extract PKCS7 structures of S/MIME signatures,
  5893. # in order to extract the public X509 certificate(s).
  5894. #
  5895. # This is a format string, see the $smime_decrypt_command command for
  5896. # possible printf(3)-like sequences.
  5897. # (S/MIME only)
  5898. #
  5899. #
  5900. # set smime_self_encrypt=yes
  5901. #
  5902. # Name: smime_self_encrypt
  5903. # Type: boolean
  5904. # Default: yes
  5905. #
  5906. #
  5907. # When set, S/MIME encrypted messages will also be encrypted
  5908. # using the certificate in $smime_default_key.
  5909. # (S/MIME only)
  5910. #
  5911. #
  5912. # set smime_sign_as=""
  5913. #
  5914. # Name: smime_sign_as
  5915. # Type: string
  5916. # Default: ""
  5917. #
  5918. #
  5919. # If you have a separate key to use for signing, you should set this
  5920. # to the signing key. Most people will only need to set $smime_default_key.
  5921. # (S/MIME only)
  5922. #
  5923. #
  5924. # set smime_sign_command=""
  5925. #
  5926. # Name: smime_sign_command
  5927. # Type: command
  5928. # Default: ""
  5929. #
  5930. #
  5931. # This command is used to created S/MIME signatures of type
  5932. # multipart/signed, which can be read by all mail clients.
  5933. #
  5934. # This is a format string, see the $smime_decrypt_command command for
  5935. # possible printf(3)-like sequences.
  5936. # (S/MIME only)
  5937. #
  5938. #
  5939. # set smime_sign_digest_alg="sha256"
  5940. #
  5941. # Name: smime_sign_digest_alg
  5942. # Type: string
  5943. # Default: "sha256"
  5944. #
  5945. #
  5946. # This sets the algorithm that should be used for the signature message digest.
  5947. # Valid choices are "md5", "sha1", "sha224", "sha256", "sha384", "sha512".
  5948. # (S/MIME only)
  5949. #
  5950. #
  5951. # set smime_timeout=300
  5952. #
  5953. # Name: smime_timeout
  5954. # Type: number
  5955. # Default: 300
  5956. #
  5957. #
  5958. # The number of seconds after which a cached passphrase will expire if
  5959. # not used.
  5960. # (S/MIME only)
  5961. #
  5962. #
  5963. # set smime_verify_command=""
  5964. #
  5965. # Name: smime_verify_command
  5966. # Type: command
  5967. # Default: ""
  5968. #
  5969. #
  5970. # This command is used to verify S/MIME signatures of type multipart/signed.
  5971. #
  5972. # This is a format string, see the $smime_decrypt_command command for
  5973. # possible printf(3)-like sequences.
  5974. # (S/MIME only)
  5975. #
  5976. #
  5977. # set smime_verify_opaque_command=""
  5978. #
  5979. # Name: smime_verify_opaque_command
  5980. # Type: command
  5981. # Default: ""
  5982. #
  5983. #
  5984. # This command is used to verify S/MIME signatures of type
  5985. # application/x-pkcs7-mime.
  5986. #
  5987. # This is a format string, see the $smime_decrypt_command command for
  5988. # possible printf(3)-like sequences.
  5989. # (S/MIME only)
  5990. #
  5991. #
  5992. # set smtp_authenticators=""
  5993. #
  5994. # Name: smtp_authenticators
  5995. # Type: string list
  5996. # Default: ""
  5997. #
  5998. #
  5999. # This is a colon-delimited list of authentication methods NeoMutt may
  6000. # attempt to use to log in to an SMTP server, in the order NeoMutt should
  6001. # try them. Authentication methods are any SASL mechanism, e.g. "plain",
  6002. # "digest-md5", "gssapi" or "cram-md5".
  6003. # This option is case-insensitive. If it is "unset"
  6004. # (the default) NeoMutt will try all available methods, in order from
  6005. # most-secure to least-secure. Support for the "plain" mechanism is
  6006. # bundled; other mechanisms are provided by an external SASL library (look
  6007. # for +USE_SASL in the output of neomutt -v).
  6008. #
  6009. # Example:
  6010. # set smtp_authenticators="digest-md5:cram-md5"
  6011. #
  6012. #
  6013. # set smtp_oauth_refresh_command=""
  6014. #
  6015. # Name: smtp_oauth_refresh_command
  6016. # Type: command
  6017. # Default: ""
  6018. #
  6019. #
  6020. # The command to run to generate an OAUTH refresh token for
  6021. # authorizing your connection to your SMTP server. This command will be
  6022. # run on every connection attempt that uses the OAUTHBEARER authentication
  6023. # mechanism. See "oauth" for details.
  6024. #
  6025. #
  6026. # set smtp_pass=""
  6027. #
  6028. # Name: smtp_pass
  6029. # Type: string
  6030. # Default: ""
  6031. #
  6032. #
  6033. # Specifies the password for your SMTP account. If unset, NeoMutt will
  6034. # prompt you for your password when you first send mail via SMTP.
  6035. # See $smtp_url to configure NeoMutt to send mail via SMTP.
  6036. #
  6037. # Warning: you should only use this option when you are on a
  6038. # fairly secure machine, because the superuser can read your neomuttrc even
  6039. # if you are the only one who can read the file.
  6040. #
  6041. #
  6042. # set smtp_url=""
  6043. #
  6044. # Name: smtp_url
  6045. # Type: string
  6046. # Default: ""
  6047. #
  6048. #
  6049. # Defines the SMTP smarthost where sent messages should relayed for
  6050. # delivery. This should take the form of an SMTP URL, e.g.:
  6051. # smtp[s]://[user[:pass]@]host[:port]
  6052. #
  6053. # where "[...]" denotes an optional part.
  6054. # Setting this variable overrides the value of the $sendmail
  6055. # variable.
  6056. #
  6057. # Also see $write_bcc.
  6058. #
  6059. #
  6060. # set smtp_user=""
  6061. #
  6062. # Name: smtp_user
  6063. # Type: string
  6064. # Default: ""
  6065. #
  6066. #
  6067. # The username for the SMTP server.
  6068. #
  6069. # This variable defaults to your user name on the local machine.
  6070. #
  6071. #
  6072. # set sort=date
  6073. #
  6074. # Name: sort
  6075. # Type: sort order
  6076. # Default: date
  6077. #
  6078. #
  6079. # Specifies how to sort messages in the "index" menu. Valid values
  6080. # are:
  6081. # - date
  6082. # - date-received
  6083. # - from
  6084. # - score
  6085. # - size
  6086. # - spam
  6087. # - subject
  6088. # - threads
  6089. # - to
  6090. # - unsorted
  6091. #
  6092. #
  6093. # You may optionally use the "reverse-" prefix to specify reverse sorting
  6094. # order.
  6095. #
  6096. # The "date-sent" value is a synonym for "date". The "mailbox-order" value is
  6097. # a synonym for "unsorted".
  6098. #
  6099. # Example:
  6100. # set sort=reverse-date-sent
  6101. #
  6102. #
  6103. # set sort_alias=alias
  6104. #
  6105. # Name: sort_alias
  6106. # Type: sort order
  6107. # Default: alias
  6108. #
  6109. #
  6110. # Specifies how the entries in the "alias" menu are sorted. The
  6111. # following are legal values:
  6112. # - address (sort alphabetically by email address)
  6113. # - alias (sort alphabetically by alias name)
  6114. # - unsorted (leave in order specified in .neomuttrc)
  6115. #
  6116. #
  6117. # Note: This also affects the entries of the address query menu, thus
  6118. # potentially overruling the order of entries as generated by $query_command.
  6119. #
  6120. #
  6121. # set sort_aux=date
  6122. #
  6123. # Name: sort_aux
  6124. # Type: sort order
  6125. # Default: date
  6126. #
  6127. #
  6128. # This provides a secondary sort for messages in the "index" menu, used
  6129. # when the $sort value is equal for two messages.
  6130. #
  6131. # When sorting by threads, this variable controls how threads are sorted
  6132. # in relation to other threads, and how the branches of the thread trees
  6133. # are sorted. This can be set to any value that $sort can, except
  6134. # "threads" (in that case, NeoMutt will just use "date"). You can also
  6135. # specify the "last-" prefix in addition to the "reverse-" prefix, but "last-"
  6136. # must come after "reverse-". The "last-" prefix causes messages to be
  6137. # sorted against its siblings by which has the last descendant, using
  6138. # the rest of $sort_aux as an ordering. For instance,
  6139. # set sort_aux=last-date-received
  6140. #
  6141. # would mean that if a new message is received in a
  6142. # thread, that thread becomes the last one displayed (or the first, if
  6143. # you have "set sort=reverse-threads".)
  6144. #
  6145. # Note: For reversed-threads $sort
  6146. # order, $sort_aux is reversed again (which is not the right thing to do,
  6147. # but kept to not break any existing configuration setting).
  6148. #
  6149. #
  6150. # set sort_browser=alpha
  6151. #
  6152. # Name: sort_browser
  6153. # Type: sort order
  6154. # Default: alpha
  6155. #
  6156. #
  6157. # Specifies how to sort entries in the file browser. By default, the
  6158. # entries are sorted alphabetically. Valid values:
  6159. # - alpha (alphabetically)
  6160. # - count (all message count)
  6161. # - date
  6162. # - desc (description)
  6163. # - new (new message count)
  6164. # - size
  6165. # - unsorted
  6166. #
  6167. #
  6168. # You may optionally use the "reverse-" prefix to specify reverse sorting
  6169. # order (example: "set sort_browser=reverse-date").
  6170. #
  6171. # The "unread" value is a synonym for "new".
  6172. #
  6173. #
  6174. # set sort_re=yes
  6175. #
  6176. # Name: sort_re
  6177. # Type: boolean
  6178. # Default: yes
  6179. #
  6180. #
  6181. # This variable is only useful when sorting by mailboxes in sidebar. By default,
  6182. # entries are unsorted. Valid values:
  6183. # - count (all message count)
  6184. # - desc (virtual mailbox description)
  6185. # - new (new message count)
  6186. # - path
  6187. # - unsorted
  6188. #
  6189. #
  6190. # set spam_separator=","
  6191. #
  6192. # Name: spam_separator
  6193. # Type: string
  6194. # Default: ","
  6195. #
  6196. #
  6197. # This variable controls what happens when multiple spam headers
  6198. # are matched: if unset, each successive header will overwrite any
  6199. # previous matches value for the spam label. If set, each successive
  6200. # match will append to the previous, using this variable's value as a
  6201. # separator.
  6202. #
  6203. #
  6204. # set spoolfile=""
  6205. #
  6206. # Name: spoolfile
  6207. # Type: mailbox
  6208. # Default: ""
  6209. #
  6210. #
  6211. # If your spool mailbox is in a non-default place where NeoMutt can't find
  6212. # it, you can specify its location with this variable. The description from
  6213. # "named-mailboxes" or "virtual-mailboxes" may be used for the spoolfile.
  6214. #
  6215. # If not specified, then the environment variables $MAIL and
  6216. # $MAILDIR will be checked.
  6217. #
  6218. #
  6219. # set ssl_ca_certificates_file=""
  6220. #
  6221. # Name: ssl_ca_certificates_file
  6222. # Type: path
  6223. # Default: ""
  6224. #
  6225. #
  6226. # This variable specifies a file containing trusted CA certificates.
  6227. # Any server certificate that is signed with one of these CA
  6228. # certificates is also automatically accepted. (GnuTLS only)
  6229. #
  6230. # Example:
  6231. # set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
  6232. #
  6233. # Note: On Debian systems, this option is set by default to
  6234. # ``threads'' in /etc/Muttrc.
  6235. #
  6236. #
  6237. # set ssl_ciphers=""
  6238. #
  6239. # Name: ssl_ciphers
  6240. # Type: string
  6241. # Default: ""
  6242. #
  6243. #
  6244. # Contains a colon-separated list of ciphers to use when using SSL.
  6245. # For OpenSSL, see ciphers(1) for the syntax of the string.
  6246. #
  6247. # For GnuTLS, this option will be used in place of "NORMAL" at the
  6248. # start of the priority string. See gnutls_priority_init(3) for the
  6249. # syntax and more details. (Note: GnuTLS version 2.1.7 or higher is
  6250. # required.)
  6251. #
  6252. #
  6253. # set ssl_client_cert=""
  6254. #
  6255. # Name: ssl_client_cert
  6256. # Type: path
  6257. # Default: ""
  6258. #
  6259. #
  6260. # The file containing a client certificate and its associated private
  6261. # key.
  6262. #
  6263. #
  6264. # set ssl_force_tls=no
  6265. #
  6266. # Name: ssl_force_tls
  6267. # Type: boolean
  6268. # Default: no
  6269. #
  6270. #
  6271. # If this variable is set, NeoMutt will require that all connections
  6272. # to remote servers be encrypted. Furthermore it will attempt to
  6273. # negotiate TLS even if the server does not advertise the capability,
  6274. # since it would otherwise have to abort the connection anyway. This
  6275. # option supersedes $ssl_starttls.
  6276. #
  6277. #
  6278. # set ssl_min_dh_prime_bits=0
  6279. #
  6280. # Name: ssl_min_dh_prime_bits
  6281. # Type: number
  6282. # Default: 0
  6283. #
  6284. #
  6285. # This variable specifies the minimum acceptable prime size (in bits)
  6286. # for use in any Diffie-Hellman key exchange. A value of 0 will use
  6287. # the default from the GNUTLS library. (GnuTLS only)
  6288. #
  6289. #
  6290. # set ssl_starttls=yes
  6291. #
  6292. # Name: ssl_starttls
  6293. # Type: quadoption
  6294. # Default: yes
  6295. #
  6296. #
  6297. # If set (the default), NeoMutt will attempt to use STARTTLS on servers
  6298. # advertising the capability. When unset, NeoMutt will not attempt to
  6299. # use STARTTLS regardless of the server's capabilities.
  6300. #
  6301. # Note that STARTTLS is subject to many kinds of
  6302. # attacks, including the ability of a machine-in-the-middle to
  6303. # suppress the advertising of support. Setting $ssl_force_tls is
  6304. # recommended if you rely on STARTTLS.
  6305. #
  6306. #
  6307. # set ssl_use_sslv3=no
  6308. #
  6309. # Name: ssl_use_sslv3
  6310. # Type: boolean
  6311. # Default: no
  6312. #
  6313. #
  6314. # If set , NeoMutt will use SSLv3 when communicating with servers that
  6315. # request it. N.B. As of 2015, SSLv3 is considered insecure, and using
  6316. # it is inadvisable. See https://tools.ietf.org/html/rfc7525 .
  6317. #
  6318. #
  6319. # set ssl_use_tlsv1=no
  6320. #
  6321. # Name: ssl_use_tlsv1
  6322. # Type: boolean
  6323. # Default: no
  6324. #
  6325. #
  6326. # If set , NeoMutt will use TLSv1.0 when communicating with servers that
  6327. # request it. N.B. As of 2015, TLSv1.0 is considered insecure, and using
  6328. # it is inadvisable. See https://tools.ietf.org/html/rfc7525 .
  6329. #
  6330. #
  6331. # set ssl_use_tlsv1_1=no
  6332. #
  6333. # Name: ssl_use_tlsv1_1
  6334. # Type: boolean
  6335. # Default: no
  6336. #
  6337. #
  6338. # If set , NeoMutt will use TLSv1.1 when communicating with servers that
  6339. # request it. N.B. As of 2015, TLSv1.1 is considered insecure, and using
  6340. # it is inadvisable. See https://tools.ietf.org/html/rfc7525 .
  6341. #
  6342. #
  6343. # set ssl_use_tlsv1_2=yes
  6344. #
  6345. # Name: ssl_use_tlsv1_2
  6346. # Type: boolean
  6347. # Default: yes
  6348. #
  6349. #
  6350. # If set , NeoMutt will use TLSv1.2 when communicating with servers that
  6351. # request it.
  6352. #
  6353. #
  6354. # set ssl_use_tlsv1_3=yes
  6355. #
  6356. # Name: ssl_use_tlsv1_3
  6357. # Type: boolean
  6358. # Default: yes
  6359. #
  6360. #
  6361. # If set , NeoMutt will use TLSv1.3 when communicating with servers that
  6362. # request it.
  6363. #
  6364. #
  6365. # set ssl_verify_dates=yes
  6366. #
  6367. # Name: ssl_verify_dates
  6368. # Type: boolean
  6369. # Default: yes
  6370. #
  6371. #
  6372. # If set (the default), NeoMutt will not automatically accept a server
  6373. # certificate that is either not yet valid or already expired. You should
  6374. # only unset this for particular known hosts, using the
  6375. # <account-hook> function.
  6376. #
  6377. #
  6378. # set ssl_verify_host=yes
  6379. #
  6380. # Name: ssl_verify_host
  6381. # Type: boolean
  6382. # Default: yes
  6383. #
  6384. #
  6385. # If set (the default), NeoMutt will not automatically accept a server
  6386. # certificate whose host name does not match the host used in your folder
  6387. # URL. You should only unset this for particular known hosts, using
  6388. # the <account-hook> function.
  6389. #
  6390. #
  6391. # set status_chars="-*%A"
  6392. #
  6393. # Name: status_chars
  6394. # Type: character string
  6395. # Default: "-*%A"
  6396. #
  6397. #
  6398. # Controls the characters used by the "%r" indicator in $status_format.
  6399. # Character Default Description
  6400. # 1 - Mailbox is unchanged
  6401. # 2 * Mailbox has been changed and needs to be resynchronized
  6402. # 3 % Mailbox is read-only, or will not be written when exiting.
  6403. # (You can toggle whether to write changes to a mailbox
  6404. # with the <toggle-write> operation, bound by default
  6405. # to "%")
  6406. # 4 A Folder opened in attach-message mode.
  6407. # (Certain operations like composing a new mail, replying,
  6408. # forwarding, etc. are not permitted in this mode)
  6409. #
  6410. #
  6411. # set status_format="-%r-NeoMutt: %D [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---"
  6412. #
  6413. # Name: status_format
  6414. # Type: string
  6415. # Default: "-%r-NeoMutt: %D [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---"
  6416. #
  6417. #
  6418. # Controls the format of the status line displayed in the "index"
  6419. # menu. This string is similar to $index_format, but has its own
  6420. # set of printf(3)-like sequences:
  6421. # %b * Number of mailboxes with new mail
  6422. # %d * Number of deleted messages
  6423. # %D Description of the mailbox
  6424. # %f The full pathname of the current mailbox
  6425. # %F * Number of flagged messages
  6426. # %h Local hostname
  6427. # %l * Size (in bytes) of the current mailbox (see formatstrings-size)
  6428. # %L * Size (in bytes) of the messages shown
  6429. # (i.e., which match the current limit) (see formatstrings-size)
  6430. # %m * The number of messages in the mailbox
  6431. # %M * The number of messages shown (i.e., which match the current limit)
  6432. # %n * Number of new messages in the mailbox (unread, unseen)
  6433. # %o * Number of old messages in the mailbox (unread, seen)
  6434. # %p * Number of postponed messages
  6435. # %P Percentage of the way through the index
  6436. # %r Modified/read-only/won't-write/attach-message indicator,
  6437. # According to $status_chars
  6438. # %R * Number of read messages in the mailbox (read, seen)
  6439. # %s Current sorting mode ($sort)
  6440. # %S Current aux sorting method ($sort_aux)
  6441. # %t * Number of tagged messages in the mailbox
  6442. # %u * Number of unread messages in the mailbox (seen or unseen)
  6443. # %v NeoMutt version string
  6444. # %V * Currently active limit pattern, if any
  6445. # %>X Right justify the rest of the string and pad with "X"
  6446. # %|X Pad to the end of the line with "X"
  6447. # %*X Soft-fill with character "X" as pad
  6448. #
  6449. #
  6450. # For an explanation of "soft-fill", see the $index_format documentation.
  6451. #
  6452. # * = can be optionally printed if nonzero
  6453. #
  6454. # Some of the above sequences can be used to optionally print a string
  6455. # if their value is nonzero. For example, you may only want to see the
  6456. # number of flagged messages if such messages exist, since zero is not
  6457. # particularly meaningful. To optionally print a string based upon one
  6458. # of the above sequences, the following construct is used:
  6459. #
  6460. # %?<sequence_char>?<optional_string>?
  6461. #
  6462. # where sequence_char is a character from the table above, and
  6463. # optional_string is the string you would like printed if
  6464. # sequence_char is nonzero. optional_string may contain
  6465. # other sequences as well as normal text, but you may not nest
  6466. # optional strings.
  6467. #
  6468. # Here is an example illustrating how to optionally print the number of
  6469. # new messages in a mailbox:
  6470. #
  6471. # %?n?%n new messages.?
  6472. #
  6473. # You can also switch between two strings using the following construct:
  6474. #
  6475. # %?<sequence_char>?<if_string>&<else_string>?
  6476. #
  6477. # If the value of sequence_char is non-zero, if_string will
  6478. # be expanded, otherwise else_string will be expanded.
  6479. #
  6480. # You can force the result of any printf(3)-like sequence to be lowercase
  6481. # by prefixing the sequence character with an underscore ("_") sign.
  6482. # For example, if you want to display the local hostname in lowercase,
  6483. # you would use: "%_h".
  6484. #
  6485. # If you prefix the sequence character with a colon (":") character, NeoMutt
  6486. # will replace any dots in the expansion by underscores. This might be helpful
  6487. # with IMAP folders that don't like dots in folder names.
  6488. #
  6489. #
  6490. # set status_on_top=no
  6491. #
  6492. # Name: status_on_top
  6493. # Type: boolean
  6494. # Default: no
  6495. #
  6496. #
  6497. # Setting this variable causes the "status bar" to be displayed on
  6498. # the first line of the screen rather than near the bottom. If $help
  6499. # is set, too it'll be placed at the bottom.
  6500. #
  6501. #
  6502. # set strict_threads=no
  6503. #
  6504. # Name: strict_threads
  6505. # Type: boolean
  6506. # Default: no
  6507. #
  6508. #
  6509. # If set, threading will only make use of the "In-Reply-To" and
  6510. # "References:" fields when you $sort by message threads. By
  6511. # default, messages with the same subject are grouped together in
  6512. # "pseudo threads.". This may not always be desirable, such as in a
  6513. # personal mailbox where you might have several unrelated messages with
  6514. # the subjects like "hi" which will get grouped together. See also
  6515. # $sort_re for a less drastic way of controlling this
  6516. # behavior.
  6517. #
  6518. #
  6519. # set suspend=yes
  6520. #
  6521. # Name: suspend
  6522. # Type: boolean
  6523. # Default: yes
  6524. #
  6525. #
  6526. # When unset, NeoMutt won't stop when the user presses the terminal's
  6527. # susp key, usually "^Z". This is useful if you run NeoMutt
  6528. # inside an xterm using a command like "xterm -e neomutt".
  6529. #
  6530. #
  6531. # set text_flowed=no
  6532. #
  6533. # Name: text_flowed
  6534. # Type: boolean
  6535. # Default: no
  6536. #
  6537. #
  6538. # When set, NeoMutt will generate "format=flowed" bodies with a content type
  6539. # of "text/plain; format=flowed".
  6540. # This format is easier to handle for some mailing software, and generally
  6541. # just looks like ordinary text. To actually make use of this format's
  6542. # features, you'll need support in your editor.
  6543. #
  6544. # The option only controls newly composed messages. Postponed messages,
  6545. # resent messages, and draft messages (via -H on the command line) will
  6546. # use the content-type of the source message.
  6547. #
  6548. # Note that $indent_string is ignored when this option is set.
  6549. #
  6550. #
  6551. # set thorough_search=yes
  6552. #
  6553. # Name: thorough_search
  6554. # Type: boolean
  6555. # Default: yes
  6556. #
  6557. #
  6558. # Affects the ~b and ~h search operations described in
  6559. # section "patterns". If set, the headers and body/attachments of
  6560. # messages to be searched are decoded before searching. If unset,
  6561. # messages are searched as they appear in the folder.
  6562. #
  6563. # Users searching attachments or for non-ASCII characters should set
  6564. # this value because decoding also includes MIME parsing/decoding and possible
  6565. # character set conversions. Otherwise NeoMutt will attempt to match against the
  6566. # raw message received (for example quoted-printable encoded or with encoded
  6567. # headers) which may lead to incorrect search results.
  6568. #
  6569. #
  6570. # set thread_received=no
  6571. #
  6572. # Name: thread_received
  6573. # Type: boolean
  6574. # Default: no
  6575. #
  6576. #
  6577. # When set, NeoMutt uses the date received rather than the date sent
  6578. # to thread messages by subject.
  6579. #
  6580. #
  6581. # set tilde=no
  6582. #
  6583. # Name: tilde
  6584. # Type: boolean
  6585. # Default: no
  6586. #
  6587. #
  6588. # When set, the internal-pager will pad blank lines to the bottom of the
  6589. # screen with a tilde ("~").
  6590. #
  6591. #
  6592. # set time_inc=0
  6593. #
  6594. # Name: time_inc
  6595. # Type: number
  6596. # Default: 0
  6597. #
  6598. #
  6599. # Along with $read_inc, $write_inc, and $net_inc, this
  6600. # variable controls the frequency with which progress updates are
  6601. # displayed. It suppresses updates less than $time_inc milliseconds
  6602. # apart. This can improve throughput on systems with slow terminals,
  6603. # or when running NeoMutt on a remote system.
  6604. #
  6605. # Also see the "tuning" section of the manual for performance considerations.
  6606. #
  6607. #
  6608. # set timeout=600
  6609. #
  6610. # Name: timeout
  6611. # Type: number
  6612. # Default: 600
  6613. #
  6614. #
  6615. # When NeoMutt is waiting for user input either idling in menus or
  6616. # in an interactive prompt, NeoMutt would block until input is
  6617. # present. Depending on the context, this would prevent certain
  6618. # operations from working, like checking for new mail or keeping
  6619. # an IMAP connection alive.
  6620. #
  6621. # This variable controls how many seconds NeoMutt will at most wait
  6622. # until it aborts waiting for input, performs these operations and
  6623. # continues to wait for input.
  6624. #
  6625. # A value of zero or less will cause NeoMutt to never time out.
  6626. #
  6627. #
  6628. # set tmpdir="/tmp"
  6629. #
  6630. # Name: tmpdir
  6631. # Type: path
  6632. # Default: "/tmp"
  6633. #
  6634. #
  6635. # This variable allows you to specify where NeoMutt will place its
  6636. # temporary files needed for displaying and composing messages.
  6637. #
  6638. # If this variable is not set, the environment variable $TMPDIR is
  6639. # used. Failing that, then "/tmp" is used.
  6640. #
  6641. #
  6642. # set to_chars=" +TCFLR"
  6643. #
  6644. # Name: to_chars
  6645. # Type: character string
  6646. # Default: " +TCFLR"
  6647. #
  6648. #
  6649. # Controls the character used to indicate mail addressed to you.
  6650. # Character Default Description
  6651. # 1 <space> The mail is not addressed to your address.
  6652. # 2 + You are the only recipient of the message.
  6653. # 3 T Your address appears in the "To:" header field, but you are not the only recipient of the message.
  6654. # 4 C Your address is specified in the "Cc:" header field, but you are not the only recipient.
  6655. # 5 F Indicates the mail that was sent by you.
  6656. # 6 L Indicates the mail was sent to a mailing-list you subscribe to.
  6657. # 7 R Your address appears in the "Reply-To:" header field but none of the above applies.
  6658. #
  6659. #
  6660. # set toggle_quoted_show_levels=0
  6661. #
  6662. # Name: toggle_quoted_show_levels
  6663. # Type: number
  6664. # Default: 0
  6665. #
  6666. #
  6667. # Quoted text may be filtered out using the <toggle-quoted> command.
  6668. # If set to a number greater than 0, then the <toggle-quoted>
  6669. # command will only filter out quote levels above this number.
  6670. #
  6671. #
  6672. # set trash=""
  6673. #
  6674. # Name: trash
  6675. # Type: mailbox
  6676. # Default: ""
  6677. #
  6678. #
  6679. # If set, this variable specifies the path of the trash folder where the
  6680. # mails marked for deletion will be moved, instead of being irremediably
  6681. # purged.
  6682. #
  6683. # NOTE: When you delete a message in the trash folder, it is really
  6684. # deleted, so that you have a way to clean the trash.
  6685. #
  6686. #
  6687. # set ts_enabled=no
  6688. #
  6689. # Name: ts_enabled
  6690. # Type: boolean
  6691. # Default: no
  6692. #
  6693. #
  6694. # Controls whether NeoMutt tries to set the terminal status line and icon name.
  6695. # Most terminal emulators emulate the status line in the window title.
  6696. #
  6697. #
  6698. # set ts_icon_format="M%?n?AIL&ail?"
  6699. #
  6700. # Name: ts_icon_format
  6701. # Type: string
  6702. # Default: "M%?n?AIL&ail?"
  6703. #
  6704. #
  6705. # Controls the format of the icon title, as long as "$ts_enabled" is set.
  6706. # This string is identical in formatting to the one used by
  6707. # "$status_format".
  6708. #
  6709. #
  6710. # set ts_status_format="NeoMutt with %?m?%m messages&no messages?%?n? [%n NEW]?"
  6711. #
  6712. # Name: ts_status_format
  6713. # Type: string
  6714. # Default: "NeoMutt with %?m?%m messages&no messages?%?n? [%n NEW]?"
  6715. #
  6716. #
  6717. # Controls the format of the terminal status line (or window title),
  6718. # provided that "$ts_enabled" has been set. This string is identical in
  6719. # formatting to the one used by "$status_format".
  6720. #
  6721. #
  6722. # set uncollapse_jump=no
  6723. #
  6724. # Name: uncollapse_jump
  6725. # Type: boolean
  6726. # Default: no
  6727. #
  6728. #
  6729. # When set, NeoMutt will jump to the next unread message, if any,
  6730. # when the current thread is uncollapsed.
  6731. #
  6732. #
  6733. # set uncollapse_new=yes
  6734. #
  6735. # Name: uncollapse_new
  6736. # Type: boolean
  6737. # Default: yes
  6738. #
  6739. #
  6740. # When set, NeoMutt will automatically uncollapse any collapsed thread
  6741. # that receives a new message. When unset, collapsed threads will
  6742. # remain collapsed. the presence of the new message will still affect
  6743. # index sorting, though.
  6744. #
  6745. #
  6746. # set use_8bitmime=no
  6747. #
  6748. # Name: use_8bitmime
  6749. # Type: boolean
  6750. # Default: no
  6751. #
  6752. #
  6753. # Warning: do not set this variable unless you are using a version
  6754. # of sendmail which supports the -B8BITMIME flag (such as sendmail
  6755. # 8.8.x) or you may not be able to send mail.
  6756. #
  6757. # When set, NeoMutt will invoke $sendmail with the -B8BITMIME
  6758. # flag when sending 8-bit messages to enable ESMTP negotiation.
  6759. #
  6760. #
  6761. # set use_domain=yes
  6762. #
  6763. # Name: use_domain
  6764. # Type: boolean
  6765. # Default: yes
  6766. #
  6767. #
  6768. # When set, NeoMutt will qualify all local addresses (ones without the
  6769. # "@host" portion) with the value of $hostname. If unset, no
  6770. # addresses will be qualified.
  6771. #
  6772. #
  6773. # set use_envelope_from=no
  6774. #
  6775. # Name: use_envelope_from
  6776. # Type: boolean
  6777. # Default: no
  6778. #
  6779. #
  6780. # When set, NeoMutt will set the envelope sender of the message.
  6781. # If $envelope_from_address is set, it will be used as the sender
  6782. # address. If unset, NeoMutt will attempt to derive the sender from the
  6783. # "From:" header.
  6784. #
  6785. # Note that this information is passed to sendmail command using the
  6786. # -f command line switch. Therefore setting this option is not useful
  6787. # if the $sendmail variable already contains -f or if the
  6788. # executable pointed to by $sendmail doesn't support the -f switch.
  6789. #
  6790. #
  6791. # set use_from=yes
  6792. #
  6793. # Name: use_from
  6794. # Type: boolean
  6795. # Default: yes
  6796. #
  6797. #
  6798. # When set, NeoMutt will generate the "From:" header field when
  6799. # sending messages. If unset, no "From:" header field will be
  6800. # generated unless the user explicitly sets one using the "my_hdr"
  6801. # command.
  6802. #
  6803. #
  6804. # set use_ipv6=yes
  6805. #
  6806. # Name: use_ipv6
  6807. # Type: boolean
  6808. # Default: yes
  6809. #
  6810. #
  6811. # When set, NeoMutt will look for IPv6 addresses of hosts it tries to
  6812. # contact. If this option is unset, NeoMutt will restrict itself to IPv4 addresses.
  6813. # Normally, the default should work.
  6814. #
  6815. #
  6816. # set user_agent=no
  6817. #
  6818. # Name: user_agent
  6819. # Type: boolean
  6820. # Default: no
  6821. #
  6822. #
  6823. # When set, NeoMutt will add a "User-Agent:" header to outgoing
  6824. # messages, indicating which version of NeoMutt was used for composing
  6825. # them.
  6826. #
  6827. #
  6828. # set vfolder_format="%2C %?n?%4n/& ?%4m %f"
  6829. #
  6830. # Name: vfolder_format
  6831. # Type: string
  6832. # Default: "%2C %?n?%4n/& ?%4m %f"
  6833. #
  6834. #
  6835. # This variable allows you to customize the file browser display for virtual
  6836. # folders to your personal taste. This string uses many of the same
  6837. # expandos as $folder_format.
  6838. #
  6839. #
  6840. # set virtual_spoolfile=no
  6841. #
  6842. # Name: virtual_spoolfile
  6843. # Type: boolean
  6844. # Default: no
  6845. #
  6846. #
  6847. # When set, NeoMutt will use the first defined virtual mailbox (see
  6848. # virtual-mailboxes) as a spool file.
  6849. #
  6850. # This command is now unnecessary. $spoolfile has been extended to support
  6851. # mailbox descriptions as a value.
  6852. #
  6853. #
  6854. # set visual="vi"
  6855. #
  6856. # Name: visual
  6857. # Type: command
  6858. # Default: "vi"
  6859. #
  6860. #
  6861. # Specifies the visual editor to invoke when the "~v" command is
  6862. # given in the built-in editor.
  6863. #
  6864. # $visual is overridden by the environment variable $VISUAL or $EDITOR.
  6865. #
  6866. #
  6867. # set wait_key=yes
  6868. #
  6869. # Name: wait_key
  6870. # Type: boolean
  6871. # Default: yes
  6872. #
  6873. #
  6874. # Controls whether NeoMutt will ask you to press a key after an external command
  6875. # has been invoked by these functions: <shell-escape>,
  6876. # <pipe-message>, <pipe-entry>, <print-message>,
  6877. # and <print-entry> commands.
  6878. #
  6879. # It is also used when viewing attachments with "auto_view", provided
  6880. # that the corresponding mailcap entry has a needsterminal flag,
  6881. # and the external program is interactive.
  6882. #
  6883. # When set, NeoMutt will always ask for a key. When unset, NeoMutt will wait
  6884. # for a key only if the external command returned a non-zero status.
  6885. #
  6886. #
  6887. # set weed=yes
  6888. #
  6889. # Name: weed
  6890. # Type: boolean
  6891. # Default: yes
  6892. #
  6893. #
  6894. # When set, NeoMutt will weed headers when displaying, forwarding,
  6895. # or replying to messages.
  6896. #
  6897. # Also see $copy_decode_weed, $pipe_decode_weed, $print_decode_weed.
  6898. #
  6899. #
  6900. # set wrap=0
  6901. #
  6902. # Name: wrap
  6903. # Type: number
  6904. # Default: 0
  6905. #
  6906. #
  6907. # When set to a positive value, NeoMutt will wrap text at $wrap characters.
  6908. # When set to a negative value, NeoMutt will wrap text so that there are $wrap
  6909. # characters of empty space on the right side of the terminal. Setting it
  6910. # to zero makes NeoMutt wrap at the terminal width.
  6911. #
  6912. # Also see $reflow_wrap.
  6913. #
  6914. #
  6915. # set wrap_headers=78
  6916. #
  6917. # Name: wrap_headers
  6918. # Type: number
  6919. # Default: 78
  6920. #
  6921. #
  6922. # This option specifies the number of characters to use for wrapping
  6923. # an outgoing message's headers. Allowed values are between 78 and 998
  6924. # inclusive.
  6925. #
  6926. # Note: This option usually shouldn't be changed. RFC5233
  6927. # recommends a line length of 78 (the default), so please only change
  6928. # this setting when you know what you're doing.
  6929. #
  6930. #
  6931. # set wrap_search=yes
  6932. #
  6933. # Name: wrap_search
  6934. # Type: boolean
  6935. # Default: yes
  6936. #
  6937. #
  6938. # Controls whether searches wrap around the end.
  6939. #
  6940. # When set, searches will wrap around the first (or last) item. When
  6941. # unset, incremental searches will not wrap.
  6942. #
  6943. #
  6944. # set write_bcc=no
  6945. #
  6946. # Name: write_bcc
  6947. # Type: boolean
  6948. # Default: no
  6949. #
  6950. #
  6951. # Controls whether NeoMutt writes out the "Bcc:" header when
  6952. # preparing messages to be sent. Some MTAs, such as Exim and
  6953. # Courier, do not strip the "Bcc:" header; so it is advisable to
  6954. # leave this unset unless you have a particular need for the header
  6955. # to be in the sent message.
  6956. #
  6957. # If NeoMutt is set to deliver directly via SMTP(see $smtp_url),
  6958. # this option does nothing: NeoMutt will never write out the "Bcc:"
  6959. # header in this case.
  6960. #
  6961. # Note this option only affects the sending of messages. Fcc'ed
  6962. # copies of a message will always contain the "Bcc:" header if
  6963. # one exists.
  6964. #
  6965. # Note: On Debian systems, exim4 and postfix strip BCC headers by
  6966. # default. The above warning applies to exim3 users, see /etc/Muttrc.
  6967. #
  6968. #
  6969. # set write_inc=10
  6970. #
  6971. # Name: write_inc
  6972. # Type: number
  6973. # Default: 10
  6974. #
  6975. #
  6976. # When writing a mailbox, a message will be printed every
  6977. # $write_inc messages to indicate progress. If set to 0, only a
  6978. # single message will be displayed before writing a mailbox.
  6979. #
  6980. # Also see the $read_inc, $net_inc and $time_inc variables and the
  6981. # "tuning" section of the manual for performance considerations.
  6982. #
  6983. #
  6984. # set x_comment_to=no
  6985. #
  6986. # Name: x_comment_to
  6987. # Type: boolean
  6988. # Default: no
  6989. #
  6990. #
  6991. # If set, NeoMutt will add "X-Comment-To:" field (that contains full
  6992. # name of original article author) to article that followuped to newsgroup.
  6993. #
  6994. #