alecpl
2010-09-04 272a7e5a24b9f9cb2748809f90be247d4f171465
- Don't use mail_header_delimiter when saving mail in IMAP


2 files modified
15 ■■■■ changed files
program/include/rcube_imap.php 7 ●●●● patch | view | raw | blame | history
program/include/rcube_imap_generic.php 8 ●●●●● patch | view | raw | blame | history
program/include/rcube_imap.php
@@ -2239,11 +2239,8 @@
        // make sure mailbox exists
        if ($this->mailbox_exists($mbox_name, true)) {
            if ($is_file) {
                $separator = rcmail::get_instance()->config->header_delimiter();
                $saved = $this->conn->appendFromFile($mailbox, $message,
                    $headers, $separator.$separator);
            }
            if ($is_file)
                $saved = $this->conn->appendFromFile($mailbox, $message, $headers);
            else
                $saved = $this->conn->append($mailbox, $message);
        }
program/include/rcube_imap_generic.php
@@ -1996,7 +1996,7 @@
        return false;
    }
    function appendFromFile($folder, $path, $headers=null, $separator="\n\n")
    function appendFromFile($folder, $path, $headers=null)
    {
        if (!$folder) {
            return false;
@@ -2012,14 +2012,16 @@
            return false;
        }
        $body_separator = "\r\n\r\n";
        $len = filesize($path);
        if (!$len) {
            return false;
        }
        if ($headers) {
            $headers = preg_replace('/[\r\n]+$/', '', $headers);
            $len += strlen($headers) + strlen($separator);
            $len += strlen($headers) + strlen($body_separator);
        }
        // send APPEND command
@@ -2035,7 +2037,7 @@
            // send headers with body separator
            if ($headers) {
                $this->putLine($headers . $separator, false);
                $this->putLine($headers . $body_separator, false);
            }
            // send file