You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
680 B
Plaintext
39 lines
680 B
Plaintext
13 years ago
|
--TEST--
|
||
|
Test of Sieve subaddress extension (RFC5233)
|
||
|
--SKIPIF--
|
||
|
--FILE--
|
||
|
<?php
|
||
|
include '../lib/rcube_sieve_script.php';
|
||
|
|
||
|
$txt = '
|
||
|
require ["envelope","subaddress","fileinto"];
|
||
|
if envelope :user "To" "postmaster"
|
||
|
{
|
||
|
fileinto "postmaster";
|
||
|
stop;
|
||
|
}
|
||
|
if envelope :detail :is "To" "mta-filters"
|
||
|
{
|
||
|
fileinto "mta-filters";
|
||
|
stop;
|
||
|
}
|
||
|
';
|
||
|
|
||
|
$s = new rcube_sieve_script($txt);
|
||
|
echo $s->as_text();
|
||
|
|
||
|
// -------------------------------------------------------------------------------
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
require ["envelope","subaddress","fileinto"];
|
||
|
if envelope :user "To" "postmaster"
|
||
|
{
|
||
|
fileinto "postmaster";
|
||
|
stop;
|
||
|
}
|
||
|
if envelope :detail :is "To" "mta-filters"
|
||
|
{
|
||
|
fileinto "mta-filters";
|
||
|
stop;
|
||
|
}
|