CHANGELOG | ●●●●● patch | view | raw | blame | history | |
program/js/app.js | ●●●●● patch | view | raw | blame | history | |
program/steps/mail/folders.inc | ●●●●● patch | view | raw | blame | history | |
skins/default/common.css | ●●●●● patch | view | raw | blame | history | |
skins/default/mail.css | ●●●●● patch | view | raw | blame | history |
CHANGELOG
@@ -6,7 +6,9 @@ - Fix regular expression for checking e-mail address (#1484710) - Make sending of read receipts configurable - Respect config when localize folder names (#1484707) - Aplied patch for updating page title (#1484727, #1484650) - Applied patch for updating page title (#1484727, #1484650) - Applied patch to prevent from purging inbox by uberlinuxguy (#1484449) - Add CSS hack for Safari 2008/02/02 (thomasb) ---------- program/js/app.js
@@ -3495,10 +3495,7 @@ this.check_for_recent = function() { if (this.busy) { this.send_keep_alive(); return; } this.set_busy(true, 'checkingmail'); this.http_request('check-recent', (this.env.search_request ? '_search='+this.env.search_request+'&' : '') + '_t='+(new Date().getTime()), true); program/steps/mail/folders.inc
@@ -39,18 +39,22 @@ // clear mailbox else if ($_action=='purge' && ($mbox = get_input_value('_mbox', RCUBE_INPUT_POST))) { $success = $IMAP->clear_mailbox($mbox); if ($success && !empty($_REQUEST['_reload'])) // we should only be purging trash and junk if($mbox == $CONFIG['trash_mbox'] || $mbox == $CONFIG['junk_mbox']) { $OUTPUT->set_env('messagecount', 0); $OUTPUT->set_env('pagecount', 0); $OUTPUT->command('message_list.clear'); $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text()); $OUTPUT->command('set_unread_count', $mbox_name, 0); $success = $IMAP->clear_mailbox($mbox); if ($success && !empty($_REQUEST['_reload'])) { $OUTPUT->set_env('messagecount', 0); $OUTPUT->set_env('pagecount', 0); $OUTPUT->command('message_list.clear'); $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text()); $OUTPUT->command('set_unread_count', $mbox_name, 0); } else $commands = "// purged: $success"; } else $commands = "// purged: $success"; } $OUTPUT->send($commands); skins/default/common.css
@@ -10,6 +10,7 @@ body.iframe { margin: 0px; background-color: #FFF; } body.extwin skins/default/mail.css
@@ -331,6 +331,10 @@ width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px'); } /* safari hack \*/ html>body*#messagelist[id$="messagelist"]:not([class="none"]) { table-layout: auto; } /**/ #messagelist thead tr td { height: 20px;