diff options
| author | Aleksander Machniak <alec@alec.pl> | 2012-09-20 12:23:44 +0200 | 
|---|---|---|
| committer | Aleksander Machniak <alec@alec.pl> | 2012-09-20 12:23:44 +0200 | 
| commit | eb1ee0803e51fbbdd3f8966c511b5212aed91524 (patch) | |
| tree | 8ed0cf83ae9273fecb08cc1d1ec91889f17292f8 | |
| parent | 14467750970bff0c1e207e97b71850520ca9db9a (diff) | |
Support old notify extension
| -rw-r--r-- | plugins/managesieve/Changelog | 1 | ||||
| -rw-r--r-- | plugins/managesieve/lib/rcube_sieve_script.php | 33 | ||||
| -rw-r--r-- | plugins/managesieve/package.xml | 4 | ||||
| -rw-r--r-- | plugins/managesieve/tests/src/parser_notify_a | 7 | ||||
| -rw-r--r-- | plugins/managesieve/tests/src/parser_notify_b | 5 | 
5 files changed, 31 insertions, 19 deletions
| diff --git a/plugins/managesieve/Changelog b/plugins/managesieve/Changelog index 482cff0ca..32eb3cb14 100644 --- a/plugins/managesieve/Changelog +++ b/plugins/managesieve/Changelog @@ -1,4 +1,5 @@  - Fixed issue with DBMail bug [http://pear.php.net/bugs/bug.php?id=19077] (#1488594) +- Added support for enotify/notify (RFC5435, RFC5436, draft-ietf-sieve-notify-04)  * version 5.2 [2012-07-24]  ----------------------------------------------------------- diff --git a/plugins/managesieve/lib/rcube_sieve_script.php b/plugins/managesieve/lib/rcube_sieve_script.php index debe9c124..fe63141fe 100644 --- a/plugins/managesieve/lib/rcube_sieve_script.php +++ b/plugins/managesieve/lib/rcube_sieve_script.php @@ -41,7 +41,9 @@ class rcube_sieve_script          'variables',                // RFC5229          'body',                     // RFC5173          'subaddress',               // RFC5233 -        // @TODO: enotify/notify, spamtest+virustest, mailbox, date +        'enotify',                  // RFC5435 +        'notify',                   // draft-ietf-sieve-notify-04 +        // @TODO: spamtest+virustest, mailbox, date      );      /** @@ -198,6 +200,9 @@ class rcube_sieve_script              }          } +        $imapflags = in_array('imap4flags', $this->supported) ? 'imap4flags' : 'imapflags'; +        $notify    = in_array('enotify', $this->supported) ? 'enotify' : 'notify'; +          // rules          foreach ($this->content as $rule) {              $extension = ''; @@ -370,11 +375,7 @@ class rcube_sieve_script                      case 'addflag':                      case 'setflag':                      case 'removeflag': -                        if (in_array('imap4flags', $this->supported)) -                            array_push($exts, 'imap4flags'); -                        else -                            array_push($exts, 'imapflags'); - +                        array_push($exts, $imapflags);                          $action_script .= $action['type'].' '                              . self::escape_string($action['target']);                          break; @@ -404,8 +405,9 @@ class rcube_sieve_script                          break;                      case 'notify': -                        array_push($exts, 'enotify'); +                        array_push($exts, $notify);                          $action_script .= 'notify'; +                          foreach (array('from', 'importance', 'options', 'message') as $n_tag) {                              if (!empty($action[$n_tag])) {                                  $action_script .= " :$n_tag " . self::escape_string($action[$n_tag]); @@ -420,7 +422,12 @@ class rcube_sieve_script                          else {                              $method = $action['method'];                          } -                        $action_script .= " " . self::escape_string($method); + +                        // method is optional in notify extension +                        if (!empty($method)) { +                            $action_script .= ($notify == 'notify' ? " :method " : " ") . self::escape_string($method); +                        } +                          break;                      case 'vacation': @@ -861,15 +868,21 @@ class rcube_sieve_script                  break;              case 'notify': -                $notify = array('type' => 'notify', 'method' => array_pop($tokens)); +                $notify = array('type' => 'notify');                  // Parameters: :from, :importance, :options, :message +                //     additional (optional) :method parameter for notify extension                  for ($i=0, $len=count($tokens); $i<$len; $i++) {                      $tok = strtolower($tokens[$i]);                      if ($tok[0] == ':') { -                        $notify[substr($tok, 1)] = $tokens[$i+1]; +                        $notify[substr($tok, 1)] = $tokens[++$i]; +                    } +                    else { +                        // unnamed parameter is a :method in enotify extension +                        $notify['method'] = $tokens[$i];                      }                  } +                  $method_components = parse_url($notify['method']);                  if ($method_components['scheme'] == 'mailto') {                      $notify['address'] = $method_components['path']; diff --git a/plugins/managesieve/package.xml b/plugins/managesieve/package.xml index cde78c9a3..20fec7895 100644 --- a/plugins/managesieve/package.xml +++ b/plugins/managesieve/package.xml @@ -17,9 +17,9 @@  		<email>alec@alec.pl</email>  		<active>yes</active>  	</lead> -	<date>2012-06-21</date> +	<date>2012-07-24</date>  	<version> -		<release>5.1</release> +		<release>5.2</release>  		<api>5.0</api>  	</version>  	<stability> diff --git a/plugins/managesieve/tests/src/parser_notify_a b/plugins/managesieve/tests/src/parser_notify_a index 68a9ef5cc..a8b44c583 100644 --- a/plugins/managesieve/tests/src/parser_notify_a +++ b/plugins/managesieve/tests/src/parser_notify_a @@ -1,8 +1,8 @@ -require ["enotify","variables"]; +require ["notify","variables"];  # rule:[notify1]  if header :contains "from" "boss@example.org"  { -	notify :importance "1" :message "This is probably very important" "mailto:alm@example.com"; +	notify :importance "1" :message "This is probably very important";  	stop;  }  # rule:[subject] @@ -14,6 +14,5 @@ if header :matches "Subject" "*"  if header :matches "From" "*"  {  	set "from" "${1}"; -	notify :importance "3" :message "${from}: ${subject}" "mailto:alm@example.com"; +	notify :importance "3" :message "${from}: ${subject}" :method "mailto:test@example.org";  } - diff --git a/plugins/managesieve/tests/src/parser_notify_b b/plugins/managesieve/tests/src/parser_notify_b index 8854658f4..cf80a9701 100644 --- a/plugins/managesieve/tests/src/parser_notify_b +++ b/plugins/managesieve/tests/src/parser_notify_b @@ -1,4 +1,4 @@ -require ["envelope","variables","enotify"]; +require ["envelope","variables","notify"];  # rule:[from]  if envelope :all :matches "from" "*"  { @@ -13,6 +13,5 @@ if header :matches "Subject" "*"  if address :all :matches "from" "*"  {  	set "from_addr" "${1}"; -	notify :message "${from_addr}${env_from}: ${subject}" "mailto:alm@example.com"; +	notify :message "${from_addr}${env_from}: ${subject}" :method "sms:1234567890";  } - | 
