mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-21 15:26:58 +01:00
29 lines
515 B
PHP
29 lines
515 B
PHP
--TEST--
|
|
Test of Sieve vacation extension (RFC5232)
|
|
--SKIPIF--
|
|
--FILE--
|
|
<?php
|
|
include '../lib/rcube_sieve_script.php';
|
|
|
|
$txt = '
|
|
require ["imapflags"];
|
|
# rule:[imapflags]
|
|
if header :matches "Subject" "^Test$" {
|
|
setflag "\\\\Seen";
|
|
addflag ["\\\\Answered","\\\\Deleted"];
|
|
}
|
|
';
|
|
|
|
$s = new rcube_sieve_script($txt, array('imapflags'));
|
|
echo $s->as_text();
|
|
|
|
?>
|
|
--EXPECT--
|
|
require ["imapflags"];
|
|
# rule:[imapflags]
|
|
if header :matches "Subject" "^Test$"
|
|
{
|
|
setflag "\\Seen";
|
|
addflag ["\\Answered","\\Deleted"];
|
|
}
|