--- pine4.64/pine/init.c +++ pine4.64/pine/init.c @@ -2926,6 +2926,9 @@ #endif {"quell-charset-warning", F_QUELL_CHARSET_WARNING, h_config_quell_charset_warning, PREF_VIEW}, + {"quell-displaying-flowed-text", + F_QUELL_DISPLAYING_FLOWED_TEXT, h_config_quell_displaying_flowed_text, + PREF_VIEW}, /* News */ {"compose-sets-newsgroup-without-confirm", --- pine4.64/pine/mailview.c +++ pine4.64/pine/mailview.c @@ -6184,7 +6184,8 @@ && !strucmp(att->body->subtype, "plain") && (parmval = rfc2231_get_param(att->body->parameter, "format", NULL, NULL))){ - if(!strucmp(parmval, "flowed")) + if(!strucmp(parmval, "flowed") && + F_OFF(F_QUELL_DISPLAYING_FLOWED_TEXT, ps_global)) is_flowed_msg = 1; fs_give((void **) &parmval); --- pine4.64/pine/pine.h +++ pine4.64/pine/pine.h @@ -1431,6 +1431,7 @@ F_SORT_DEFAULT_FCC_ALPHA, F_SORT_DEFAULT_SAVE_ALPHA, F_QUOTE_REPLACE_NOFLOW, + F_QUELL_DISPLAYING_FLOWED_TEXT, #ifdef _WINDOWS F_ENABLE_TRAYICON, F_QUELL_SSL_LARGEBLOCKS, --- pine4.64/pine/pine.hlp +++ pine4.64/pine/pine.hlp @@ -3323,6 +3323,7 @@
  • FEATURE: Quell-Charset-Warning
  • FEATURE: Quell-Content-ID
  • FEATURE: Quell-Dead-Letter-On-Cancel +
  • FEATURE: Quell-Displaying-Flowed-Text
  • FEATURE: Quell-Empty-Directories
  • FEATURE: Quell-Extra-Post-Prompt
  • FEATURE: Quell-Filtering-Done-Message @@ -28615,6 +28616,26 @@ <End of help on this topic> +====== h_config_quell_displaying_flowed_text ===== + + +FEATURE: Quell-Displaying-Flowed-Text + + +

    FEATURE: Quell-Displaying-Flowed-Text

    + +Beginning with version 4.60, Pine displays flowed text where possible. The +method for viewing flowed text is defined by +RFC 2646; for more +information, see Quell-Flowed-Text. +

    +If this option is set, then Pine will not display flowed text when viewing +messages. + +

    +<End of help on this topic> + + ====== h_config_prefer_plain_text =====