thomascube
2010-05-20 c769c6699f50cf834aa004fb3d1f4fa5ff966c7c
Default line length is 72

2 files modified
4 ■■■■ changed files
config/main.inc.php.dist 2 ●●● patch | view | raw | blame | history
program/steps/mail/sendmail.inc 2 ●●● patch | view | raw | blame | history
config/main.inc.php.dist
@@ -216,7 +216,7 @@
// number of chars allowed for line when wrapping text.
// text wrapping is done when composing/sending messages
$rcmail_config['line_length'] = 66;
$rcmail_config['line_length'] = 72;
// send plaintext messages as format=flowed
$rcmail_config['send_format_flowed'] = true;
program/steps/mail/sendmail.inc
@@ -396,7 +396,7 @@
}
// set line length for body wrapping
$LINE_LENGTH = $RCMAIL->config->get('line_length', 75);
$LINE_LENGTH = $RCMAIL->config->get('line_length', 72);
// Since we can handle big messages with disk usage, we need more time to work
@set_time_limit(0);