Changeset 6204390 in github
- Timestamp:
- May 1, 2006 10:47:27 AM (7 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 4b3af37
- Parents:
- a4bafb4
- Files:
-
- 8 edited
-
program/include/main.inc (modified) (2 diffs)
-
program/localization/de_CH/labels.inc (modified) (1 diff)
-
program/localization/de_DE/labels.inc (modified) (1 diff)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (1 diff)
-
program/steps/mail/sendmail.inc (modified) (1 diff)
-
skins/default/mail.css (modified) (1 diff)
-
skins/default/templates/compose.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/main.inc
r86f1721 r6204390 190 190 191 191 // set root dir from config 192 if ( strlen($CONFIG['imap_root']))192 if (!empty($CONFIG['imap_root'])) 193 193 $IMAP->set_rootdir($CONFIG['imap_root']); 194 194 195 if ( strlen($_SESSION['mbox']))195 if (!empty($_SESSION['mbox'])) 196 196 $IMAP->set_mailbox($_SESSION['mbox']); 197 197 198 198 if (isset($_SESSION['page'])) 199 199 $IMAP->set_page($_SESSION['page']); … … 1150 1150 'charsetselector' => 'rcmail_charset_selector', 1151 1151 'searchform' => 'rcmail_search_form', 1152 'receiptcheckbox' => 'rcmail_receipt_checkbox', 1152 1153 1153 1154 // ADDRESS BOOK -
program/localization/de_CH/labels.inc
rf3704e1 r6204390 124 124 $labels['addattachment'] = 'Datei anfÌgen'; 125 125 $labels['charset'] = 'Zeichensatz'; 126 $labels['returnreceipt'] = 'EmpfangsbestÀtigung'; 126 127 127 128 $labels['attachments'] = 'AnhÀnge'; -
program/localization/de_DE/labels.inc
rf3704e1 r6204390 125 125 $labels['addattachment'] = 'Datei anfÌgen'; 126 126 $labels['charset'] = 'Zeichensatz'; 127 $labels['returnreceipt'] = 'EmpfangsbestÀtigung'; 127 128 128 129 $labels['attachments'] = 'AnhÀnge'; -
program/localization/en_US/labels.inc
rf3704e1 r6204390 124 124 $labels['addattachment'] = 'Attach a file'; 125 125 $labels['charset'] = 'Charset'; 126 $labels['returnreceipt'] = 'Return receipt'; 126 127 127 128 $labels['attachments'] = 'Attachments'; -
program/steps/mail/compose.inc
rf8d0a5c r6204390 568 568 569 569 570 function rcmail_receipt_checkbox($attrib) 571 { 572 list($form_start, $form_end) = get_form_tags($attrib); 573 unset($attrib['form']); 574 575 $attrib['name'] = '_receipt'; 576 $checkbox = new checkbox(array('name' => '_receipt', 'id' => 'receipt', 'value' => 1)); 577 578 $out = $form_start ? "$form_start\n" : ''; 579 $out .= $checkbox->show(0); 580 $out .= $form_end ? "\n$form_end" : ''; 581 582 return $out; 583 } 584 585 570 586 function get_form_tags($attrib) 571 587 { -
program/steps/mail/sendmail.inc
r4647e1b r6204390 137 137 } 138 138 139 if (!empty($_POST['_receipt'])) 140 { 141 $headers['Return-Receipt-To'] = $identity_arr['string']; 142 $headers['Disposition-Notification-To'] = $identity_arr['string']; 143 } 139 144 140 145 // additional headers -
skins/default/mail.css
r88f9e2f r6204390 643 643 { 644 644 position: absolute; 645 left: 200px; 645 left: 180px; 646 top: 10px; 647 } 648 649 #receipt-selector 650 { 651 position: absolute; 652 left: 350px; 646 653 top: 10px; 647 654 } -
skins/default/templates/compose.html
redf7622 r6204390 38 38 <div id="priority-selector"> 39 39 <roundcube:label name="priority" />: <roundcube:object name="prioritySelector" form="form" /> 40 </div> 41 42 <div id="receipt-selector"> 43 <roundcube:object name="receiptCheckBox" form="form" /> <roundcube:label name="returnreceipt" /> 40 44 </div> 41 45
Note: See TracChangeset
for help on using the changeset viewer.
