Commit 683e91cbd0582cb8e63daaf0429e0a62be9cc421

Authored by Kirill Korotaev
Committed by Linus Torvalds
1 parent 03cbc358aa

[PATCH] SubmittingPatches: add a note about "format=flowed" when sending patches

Add a note about "format=flowed" when sending patches and explain how to
fix mozilla.  Thunderbird has the similar options.

Signed-off-by: Kirill Korotaev <dev@openvz.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 13 additions and 0 deletions Side-by-side Diff

Documentation/SubmittingPatches
... ... @@ -209,6 +209,19 @@
209 209 you to re-send them using MIME.
210 210  
211 211  
  212 +WARNING: Some mailers like Mozilla send your messages with
  213 +---- message header ----
  214 +Content-Type: text/plain; charset=us-ascii; format=flowed
  215 +---- message header ----
  216 +The problem is that "format=flowed" makes some of the mailers
  217 +on receiving side to replace TABs with spaces and do similar
  218 +changes. Thus the patches from you can look corrupted.
  219 +
  220 +To fix this just make your mozilla defaults/pref/mailnews.js file to look like:
  221 +pref("mailnews.send_plaintext_flowed", false); // RFC 2646=======
  222 +pref("mailnews.display.disable_format_flowed_support", true);
  223 +
  224 +
212 225  
213 226 7) E-mail size.
214 227