Changeset 6c6bb09 in github
- Timestamp:
- Oct 6, 2010 3:23:17 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- d24b845
- Parents:
- 50baa6c
- Files:
-
- 6 edited
-
config/main.inc.php.dist (modified) (1 diff)
-
installer/config.php (modified) (1 diff)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/localization/pl_PL/labels.inc (modified) (2 diffs)
-
program/steps/mail/show.inc (modified) (2 diffs)
-
program/steps/settings/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
config/main.inc.php.dist
r76ee6ca r6c6bb09 338 338 // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask) 339 339 // 3 = send automatically if sender is in addressbook, otherwise ask the user 340 // 4 = send automatically if sender is in addressbook, otherwise ignore 340 341 $rcmail_config['mdn_requests'] = 0; 341 342 -
installer/config.php
r50baa6c r6c6bb09 575 575 0 => 'ask the user', 576 576 1 => 'send automatically', 577 3 => 'send receipt to user contacts only', 577 3 => 'send receipt to user contacts, otherwise ask the user', 578 4 => 'send receipt to user contacts, otherwise ignore', 578 579 2 => 'ignore', 579 580 ); -
program/localization/en_US/labels.inc
re25a357 r6c6bb09 327 327 $labels['askuser'] = 'ask me'; 328 328 $labels['autosend'] = 'send receipt'; 329 $labels['autosendknown'] = 'send receipt to my contacts only'; 329 $labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; 330 $labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; 330 331 $labels['ignore'] = 'ignore'; 331 332 $labels['readwhendeleted'] = 'Mark the message as read on delete'; -
program/localization/pl_PL/labels.inc
rb3660bb r6c6bb09 299 299 $labels['askuser'] = 'pytaj mnie'; 300 300 $labels['autosend'] = 'wyÅlij potwierdzenie'; 301 $labels['autosendknown'] = 'wyÅlij potwierdzenie tylko do moich kontaktów'; 301 $labels['autosendknown'] = 'wyÅlij potwierdzenie tylko do moich kontaktów, pytaj o pozostaÅe'; 302 $labels['autosendknownignore'] = 'wyÅlij potwierdzenie tylko do moich kontaktów, pozostaÅe ignoruj'; 302 303 $labels['ignore'] = 'ignoruj'; 303 304 $labels['readwhendeleted'] = 'Podczas usuwania oznacz wiadomoÅÄ jako przeczytanÄ … … 400 401 $labels['contacts'] = 'Kontakty'; 401 402 $labels['messageoptions'] = 'Opcje wiadomoÅci...'; 403 $labels['mailreplyto'] = 'Mail-Reply-To'; 404 $labels['mailfollowupto'] = 'Mail-Followup-To'; 405 $labels['mailreply-to'] = 'Mail-Reply-To'; 406 $labels['mailfollowup-to'] = 'Mail-Followup-To'; 407 $labels['replyall'] = 'Odpowiedz wszystkim'; 408 $labels['replylist'] = 'Odpowiedz na listÄ'; 409 $labels['editidents'] = 'Edytuj toÅŒsamoÅci'; 410 $labels['addmailreplyto'] = 'Dodaj Mail-Reply-To'; 411 $labels['addmailfollowupto'] = 'Dodaj Mail-Followup-To'; 402 412 403 413 ?> -
program/steps/mail/show.inc
re25a357 r6c6bb09 77 77 $mdn_cfg = intval($CONFIG['mdn_requests']); 78 78 79 if ($mdn_cfg == 1 || ( $mdn_cfg == 3&& rcmail_contact_exists($MESSAGE->sender['mailto']))) {79 if ($mdn_cfg == 1 || (($mdn_cfg == 3 || $mdn_cfg == 4) && rcmail_contact_exists($MESSAGE->sender['mailto']))) { 80 80 // Send MDN 81 81 if (rcmail_send_mdn($MESSAGE, $smtp_error)) … … 83 83 else if ($smtp_error) 84 84 $OUTPUT->show_message($smtp_error['label'], 'error', $smtp_error['vars']); 85 else 85 else 86 86 $OUTPUT->show_message('errorsendingreceipt', 'error'); 87 87 } 88 else if ($mdn_cfg != 2 ) {88 else if ($mdn_cfg != 2 && $mdn_cfg != 4) { 89 89 // Ask user 90 90 $OUTPUT->add_label('mdnrequest'); -
program/steps/settings/func.inc
rb3660bb r6c6bb09 325 325 $select_mdn_requests->add(rcube_label('autosend'), 1); 326 326 $select_mdn_requests->add(rcube_label('autosendknown'), 3); 327 $select_mdn_requests->add(rcube_label('autosendknownignore'), 4); 327 328 $select_mdn_requests->add(rcube_label('ignore'), 2); 328 329
Note: See TracChangeset
for help on using the changeset viewer.
