diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-20 11:12:24 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-20 11:12:24 +0100 |
commit | 1aca4cb3ae688a7ccf887cfea0a7ae62505631d6 (patch) | |
tree | 3a5dfefa6d72c42d0d754ec3ffeab8656d7e2237 /program/lib/Roundcube | |
parent | 24607ceb801e5b30f3338a4458ad6ea3ba8d204f (diff) |
Improve format=flowed text unfolding, add test for signature separator handling
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_mime.php | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/program/lib/Roundcube/rcube_mime.php b/program/lib/Roundcube/rcube_mime.php index d5fb35bcd..fd91ca979 100644 --- a/program/lib/Roundcube/rcube_mime.php +++ b/program/lib/Roundcube/rcube_mime.php @@ -476,14 +476,18 @@ class rcube_mime $q_level = 0; foreach ($text as $idx => $line) { - if ($line[0] == '>' && preg_match('/^(>+\s*)/', $line, $regs)) { - $q = strlen(str_replace(' ', '', $regs[0])); - $line = substr($line, strlen($regs[0])); - + if ($line[0] == '>') { + $len = strlen($line); + $line = preg_replace('/^>+ {0,1}/', '', $line); + $q = $len - strlen($line); + + // The same paragraph (We join current line with the previous one) when: + // - the same level of quoting + // - previous line was flowed + // - previous line contains more than only one single space (and quote char(s)) if ($q == $q_level - && strlen($line[$last]) > 1 // don't hit if line only consist of one single white space - && isset($text[$last]) - && $text[$last][strlen($text[$last])-1] == ' ' + && isset($text[$last]) && $text[$last][strlen($text[$last])-1] == ' ' + && !preg_match('/^>+ {0,1}$/', $text[$last]) ) { $text[$last] .= $line; unset($text[$idx]); |