]> granicus.if.org Git - neomutt/commitdiff
More liberally apply MIME encodings to non-text body parts when
authorThomas Roessler <roessler@does-not-exist.org>
Fri, 24 Aug 2001 08:01:38 +0000 (08:01 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Fri, 24 Aug 2001 08:01:38 +0000 (08:01 +0000)
there's a ^From_ line.

sendlib.c

index 1930818b28f5ef371a116dd921e29e357832f007..03adda66b9264bba0e9c4e63d07c704d61fee2d2 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -1196,7 +1196,7 @@ static void mutt_set_encoding (BODY *b, CONTENT *info)
       b->encoding = ENC7BIT;
   }
   else if (info->lobin || info->hibin || info->binary || info->linemax > 990
-          || info->cr || (option (OPTENCODEFROM) && info->from))
+          || info->cr || (/* option (OPTENCODEFROM) && */ info->from))
   {
     /* Determine which encoding is smaller  */
     if (1.33 * (float)(info->lobin+info->hibin+info->ascii) <