diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-05-20 21:28:30 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-05-20 21:28:30 +0000 |
| commit | 83b297e2b198bd9034fb82d942353be51d003dea (patch) | |
| tree | 0217411e199512df81188a1a75d64f7b0a8fc96c /roundcubemail/config | |
| parent | 36077f1171371c85657d646c7fc34485ff0a5ce0 (diff) | |
Display and send messages with format=flowed (#1484370), fixes word wrapping issues (#1486543)
git-svn-id: https://svn.roundcube.net/trunk@3644 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 07f18730e..8af724817 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -5,7 +5,7 @@ | Main configuration file | | | | This file is part of the RoundCube Webmail client | - | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland | + | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland | | Licensed under the GNU GPL | | | +-----------------------------------------------------------------------+ @@ -188,10 +188,10 @@ $rcmail_config['max_recipients'] = 0; $rcmail_config['max_group_members'] = 0; // add this user-agent to message headers when sending -$rcmail_config['useragent'] = 'RoundCube Webmail/'.RCMAIL_VERSION; +$rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION; // use this name to compose page titles -$rcmail_config['product_name'] = 'RoundCube Webmail'; +$rcmail_config['product_name'] = 'Roundcube Webmail'; // try to load host-specific configuration // see http://trac.roundcube.net/wiki/Howto_Config for more details @@ -214,6 +214,13 @@ $rcmail_config['http_received_header_encrypt'] = false; // leave empty for auto-detection $rcmail_config['mail_header_delimiter'] = NULL; +// number of chars allowed for line when wrapping text. +// text wrapping is done when composing/sending messages +$rcmail_config['line_length'] = 66; + +// send plaintext messages as format=flowed +$rcmail_config['send_format_flowed'] = true; + // session domain: .example.org $rcmail_config['session_domain'] = ''; |
