diff options
author | Robin Jarry <robin@jarry.cc> | 2023-01-25 01:11:52 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-01-26 00:21:16 +0100 |
commit | 1367fd4246716e3f693f8a1d70630c438489ce03 (patch) | |
tree | 19e46557bfa17167c9ba96142969dd9ff5ec0463 /config/aerc.conf | |
parent | 63f0e0cbc9a5f072d8915717c89d7ab4f4ff94af (diff) | |
download | aerc-1367fd4246716e3f693f8a1d70630c438489ce03.tar.gz |
compose: allow sending format=flowed messages
Allow composing and sending messages with:
Content-Type: text/plain; Format=Flowed
This requires additional configuration in the text editor to actually
produce the required trailing spaces at the end of lines that are part
of the same paragraph. For example, with vim:
"~/.vim/ftplugin/mail.vim
setlocal textwidth=72
setlocal formatoptions=1jnwtcql
setlocal comments+=nb:>
Link: https://www.rfc-editor.org/rfc/rfc3676.html
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'config/aerc.conf')
-rw-r--r-- | config/aerc.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index b09a7ab7..5f58ceb2 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -386,6 +386,15 @@ # #no-attachment-warning= +# +# When set, aerc will generate "format=flowed" bodies with a content type of +# "text/plain; format=flowed" as described in RFC3676. This format is easier to +# handle for some mailing software, and generally just looks like ordinary +# text. To actually make use of this format's features, you'll need support in +# your editor. +# +#format-flowed=false + [multipart-converters] # # Converters allow to generate multipart/alternative messages by converting the |