diff options
author | thomascube <thomas@roundcube.net> | 2010-05-20 21:28:30 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-05-20 21:28:30 +0000 |
commit | 6b6f2e83de0e5b48ba48583206bd456508554540 (patch) | |
tree | 4d687f9dbd86fb24a1c86703340c19aa7927fc28 /config/main.inc.php.dist | |
parent | e93c72d9a378903502fa51452d6db3fffc3a9b28 (diff) |
Display and send messages with format=flowed (#1484370), fixes word wrapping issues (#1486543)
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 07f18730e..8af724817 100644 --- a/config/main.inc.php.dist +++ b/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'] = ''; |