1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
From: Antonio Radici <antonio@debian.org>
Date: Thu, 27 Feb 2014 16:19:30 +0100
Subject: document_debian_defaults
Some customization of the options which are straying
from the default only on Debian systems.
Forwarded: not-needed
Last-update: 2023-12-30
---
docs/config.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/docs/config.c b/docs/config.c
index ca650b6..50fbde6 100644
--- a/docs/config.c
+++ b/docs/config.c
@@ -478,6 +478,9 @@
** .pp
** When this variable is \fIset\fP, NeoMutt will include Delivered-To headers when
** bouncing messages. Postfix users may wish to \fIunset\fP this variable.
+** .pp
+** \fBNote:\fP On Debian systems, this option is unset by default in
+** /etc/neomuttrc.
*/
{ "braille_friendly", DT_BOOL, false },
@@ -1884,6 +1887,9 @@
** Optionally, NeoMutt can be compiled with a fixed domain name.
** .pp
** Also see $$use_domain and $$hidden_host.
+** .pp
+** \fBNote:\fP On Debian systems, the default for this variable is obtained
+** from /etc/mailname when NeoMutt starts.
*/
#ifdef HAVE_LIBIDN
@@ -4727,6 +4733,10 @@
** .pp
** Encrypt the message to $$smime_default_key too.
** (S/MIME only)
+** .pp
+** \fBNote:\fP On Debian systems, this defaults to the first existing file in
+** the following list: ~/.smime/ca-certificates.crt ~/.smime/ca-bundle.crt
+** /etc/ssl/certs/ca-certificates.crt.
*/
#endif
@@ -5647,6 +5657,9 @@
** .pp
** See the "Use Threads Feature" section for further explanation and
** examples.
+** .pp
+** \fBNote:\fP On Debian systems, this option is set by default to
+** ``threads'' in /etc/neomuttrc.
*/
{ "user_agent", DT_BOOL, false },
@@ -5742,6 +5755,9 @@
** Note this option only affects the sending of messages. Fcc'ed
** copies of a message will always contain the "Bcc:" header if
** one exists.
+** .pp
+** \fBNote:\fP On Debian systems, exim4 and postfix strip BCC headers by
+** default. The above warning applies to exim3 users, see /etc/neomuttrc.
*/
{ "write_inc", DT_NUMBER, 10 },
|