Changeset 47ad83f in github
- Timestamp:
- Mar 2, 2010 8:08:12 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 3704b78
- Parents:
- d5ffb587
- Files:
-
- 7 edited
-
CHANGELOG (modified) (1 diff)
-
config/main.inc.php.dist (modified) (1 diff)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/localization/pl_PL/labels.inc (modified) (1 diff)
-
program/steps/mail/sendmail.inc (modified) (1 diff)
-
program/steps/settings/func.inc (modified) (1 diff)
-
program/steps/settings/save_prefs.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rd5ffb587 r47ad83f 2 2 =========================== 3 3 4 - Added force_7bit option to force MIME encoding of plain/text messages (#1486510) 4 5 - Use case sensitive check when checking for default folders (#1486346) 5 6 - Fix checking for new mail: now checks unseen count of inbox (#1485794) -
config/main.inc.php.dist
r64608bf r47ad83f 473 473 $rcmail_config['sig_above'] = FALSE; 474 474 475 // Use MIME encoding (quoted-printable) for 8bit characters in message body 476 $rcmail_config['force_7bit'] = FALSE; 477 475 478 // end of config file 476 479 ?> -
program/localization/en_US/labels.inc
r655bd9a r47ad83f 303 303 $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; 304 304 $labels['2047folding'] = 'Full RFC 2047 (other)'; 305 $labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; 305 306 $labels['advancedoptions'] = 'Advanced options'; 306 307 $labels['focusonnewmessage'] = 'Focus browser window on new message'; -
program/localization/pl_PL/labels.inc
r6ed9d98 r47ad83f 260 260 $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; 261 261 $labels['2047folding'] = 'RFC 2047 (przestarzaÅe)'; 262 $labels['force7bit'] = 'UÅŒywaj kodowania MIME dla znaków 8-bitowych'; 262 263 $labels['advancedoptions'] = 'opcje zaawansowane'; 263 264 $labels['readwhendeleted'] = 'Podczas usuwania oznacz wiadomoÅÄ jako przeczytanÄ -
program/steps/mail/sendmail.inc
r3d0ec76 r47ad83f 457 457 // choose transfer encoding for plain/text body 458 458 if (preg_match('/[^\x00-\x7F]/', $MAIL_MIME->getTXTBody())) 459 $transfer_encoding = '8bit';459 $transfer_encoding = $RCMAIL->config->get('force_7bit') ? 'quoted-printable' : '8bit'; 460 460 else 461 461 $transfer_encoding = '7bit'; -
program/steps/settings/func.inc
r47d8d39 r47ad83f 450 450 ); 451 451 } 452 452 453 if (!isset($no_override['force_7bit'])) { 454 $field_id = 'rcmfd_force_7bit'; 455 $input_7bit = new html_checkbox(array('name' => '_force_7bit', 'id' => $field_id, 'value' => 1)); 456 457 $blocks['main']['options']['force_7bit'] = array( 458 'title' => html::label($field_id, Q(rcube_label('force7bit'))), 459 'content' => $input_7bit->show($config['force_7bit']?1:0), 460 ); 461 } 462 453 463 if (!isset($no_override['top_posting'])) { 454 464 $field_id = 'rcmfd_top_posting'; -
program/steps/settings/save_prefs.inc
r655bd9a r47ad83f 63 63 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0, 64 64 'mime_param_folding' => isset($_POST['_mime_param_folding']) ? intval($_POST['_mime_param_folding']) : 0, 65 'force_7bit' => isset($_POST['_force_7bit']) ? TRUE : FALSE, 65 66 'show_sig' => isset($_POST['_show_sig']) ? intval($_POST['_show_sig']) : 1, 66 67 'top_posting' => !empty($_POST['_top_posting']),
Note: See TracChangeset
for help on using the changeset viewer.
