Applied patch to prevent from purging inbox (#1484449) + CSS hack for Safari
| | |
| | | - 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) |
| | | ---------- |
| | |
| | | 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); |
| | |
| | | // clear mailbox |
| | | else if ($_action=='purge' && ($mbox = get_input_value('_mbox', RCUBE_INPUT_POST))) |
| | | { |
| | | // we should only be purging trash and junk |
| | | if($mbox == $CONFIG['trash_mbox'] || $mbox == $CONFIG['junk_mbox']) |
| | | { |
| | | $success = $IMAP->clear_mailbox($mbox); |
| | | |
| | | if ($success && !empty($_REQUEST['_reload'])) |
| | |
| | | else |
| | | $commands = "// purged: $success"; |
| | | } |
| | | } |
| | | |
| | | $OUTPUT->send($commands); |
| | | ?> |
| | |
| | | body.iframe |
| | | { |
| | | margin: 0px; |
| | | background-color: #FFF; |
| | | } |
| | | |
| | | body.extwin |
| | |
| | | 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; |