diff options
author | alecpl <alec@alec.pl> | 2008-09-29 07:38:16 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-29 07:38:16 +0000 |
commit | ffae15e5fcde50cf8c1b168fa313f4ec3454a693 (patch) | |
tree | 88f81d19eb5ebc41710fb9a161b054881ba5e3bd /config | |
parent | 29e697b24a68d7fca600f88ebc913b3ba5240f50 (diff) |
- Added 'mime_param_folding' option with possibility to choose
long/non-ascii attachment names encoding eg. to be readable
in MS Outlook/OE (#1485320)
- Added "advanced options" feature in User Preferences
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 2ac713f58..19785cba6 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -377,5 +377,11 @@ $rcmail_config['logout_expunge'] = FALSE; // Display attached images below the message body $rcmail_config['inline_images'] = TRUE; +// Encoding of long/non-ascii attachment names: +// 0 - Full RFC 2231 compatible +// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default) +// 2 - Full 2047 compatible +$rcmail_config['mime_param_folding'] = 0; + // end of config file ?> |