diff options
author | Jeremy White <jwhite@codeweavers.com> | 2009-02-12 08:58:12 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-15 00:32:57 -0800 |
commit | c64d84f1452ec56fd1586493a0b0707bf7442c42 (patch) | |
tree | 917d4a6d4e90b98c8d999c8d0a65a08264392cc5 /Documentation/git-imap-send.txt | |
parent | e9cc02f0e41fd5d2f51e3c3f2b4f8cfa9e434432 (diff) | |
download | git-c64d84f1452ec56fd1586493a0b0707bf7442c42.tar.gz |
imap.preformattedHTML to tell Thunderbird to send non-flowed text
Many e-mail based development communities require non-flowed text to carry
patches to prevent whitespaces from getting mangled, but there is no easy
way to tell Thunderbird MUA not to use format=flowed, unless you configure
it to do so unconditionally for all outgoing mails.
A workaround for users who use git-imap-send is to wrap the patch in "pre"
element in the draft folder as an HTML message, and tell Thunderbird to
send "text only". Thunderbird turns such a message into a non-flowed
plain text when sending it out, which is what we want for patch e-mails.
Signed-off-by: Jeremy White <jwhite@codeweavers.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-imap-send.txt')
-rw-r--r-- | Documentation/git-imap-send.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap-send.txt index 1685f04efe..024084b8b7 100644 --- a/Documentation/git-imap-send.txt +++ b/Documentation/git-imap-send.txt @@ -64,6 +64,13 @@ imap.sslverify:: used by the SSL/TLS connection. Default is `true`. Ignored when imap.tunnel is set. +imap.preformattedHTML:: + A boolean to enable/disable the use of html encoding when sending + a patch. An html encoded patch will be bracketed with <pre> + and have a content type of text/html. Ironically, enabling this + option causes Thunderbird to send the patch as a plain/text, + format=fixed email. Default is `false`. + Examples ~~~~~~~~ |