From d168b9909acc66510bd24b3e74f6828f47939f75 Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 8 Sep 2009 11:51:49 +0000 Subject: - managesieve: Fix handling of "true" as "anyof (true)" test --- plugins/managesieve/lib/rcube_sieve.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/managesieve/lib/rcube_sieve.php') diff --git a/plugins/managesieve/lib/rcube_sieve.php b/plugins/managesieve/lib/rcube_sieve.php index 59f7cfcf4..2ab30c54d 100644 --- a/plugins/managesieve/lib/rcube_sieve.php +++ b/plugins/managesieve/lib/rcube_sieve.php @@ -442,7 +442,7 @@ class rcube_sieve_script { $result = NULL; - if (preg_match('/^(if|elsif|else)\s+((allof|anyof|exists|header|not|size)\s+(.*))\s+\{(.*)\}$/sm', trim($content), $matches)) + if (preg_match('/^(if|elsif|else)\s+((true|not\s+true|allof|anyof|exists|header|not|size)(.*))\s+\{(.*)\}$/sm', trim($content), $matches)) { list($tests, $join) = $this->_parse_tests(trim($matches[2])); $actions = $this->_parse_actions(trim($matches[5])); @@ -454,7 +454,7 @@ class rcube_sieve_script 'join' => $join, ); } - + return $result; } -- cgit v1.2.3