Show spam aliases #
This commit is contained in:
23
data/web/rc/plugins/managesieve/tests/Managesieve.php
Normal file
23
data/web/rc/plugins/managesieve/tests/Managesieve.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
class Managesieve_Plugin extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../managesieve.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin object construction test
|
||||
*/
|
||||
function test_constructor()
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
$plugin = new managesieve($rcube->api);
|
||||
|
||||
$this->assertInstanceOf('managesieve', $plugin);
|
||||
$this->assertInstanceOf('rcube_plugin', $plugin);
|
||||
}
|
||||
}
|
||||
|
62
data/web/rc/plugins/managesieve/tests/Parser.php
Normal file
62
data/web/rc/plugins/managesieve/tests/Parser.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
class Parser extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../lib/Roundcube/rcube_sieve_script.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Sieve script parsing
|
||||
*
|
||||
* @dataProvider data_parser
|
||||
*/
|
||||
function test_parser($input, $output, $message)
|
||||
{
|
||||
// get capabilities list from the script
|
||||
$caps = array();
|
||||
if (preg_match('/require \[([a-z0-9", ]+)\]/', $input, $m)) {
|
||||
foreach (explode(',', $m[1]) as $cap) {
|
||||
$caps[] = trim($cap, '" ');
|
||||
}
|
||||
}
|
||||
|
||||
$script = new rcube_sieve_script($input, $caps);
|
||||
$result = $script->as_text();
|
||||
|
||||
$this->assertEquals(trim($result), trim($output), $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider for test_parser()
|
||||
*/
|
||||
function data_parser()
|
||||
{
|
||||
$dir_path = realpath(__DIR__ . '/src');
|
||||
$dir = opendir($dir_path);
|
||||
$result = array();
|
||||
|
||||
while ($file = readdir($dir)) {
|
||||
if (preg_match('/^[a-z0-9_]+$/', $file)) {
|
||||
$input = file_get_contents($dir_path . '/' . $file);
|
||||
|
||||
if (file_exists($dir_path . '/' . $file . '.out')) {
|
||||
$output = file_get_contents($dir_path . '/' . $file . '.out');
|
||||
}
|
||||
else {
|
||||
$output = $input;
|
||||
}
|
||||
|
||||
$result[] = array(
|
||||
'input' => $input,
|
||||
'output' => $output,
|
||||
'message' => "Error in parsing '$file' file",
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
33
data/web/rc/plugins/managesieve/tests/Tokenizer.php
Normal file
33
data/web/rc/plugins/managesieve/tests/Tokenizer.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
class Tokenizer extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../lib/Roundcube/rcube_sieve_script.php';
|
||||
}
|
||||
|
||||
function data_tokenizer()
|
||||
{
|
||||
return array(
|
||||
array(1, "text: #test\nThis is test ; message;\nMulti line\n.\n;\n", '"This is test ; message;\nMulti line"'),
|
||||
array(0, '["test1","test2"]', '[["test1","test2"]]'),
|
||||
array(1, '["test"]', '["test"]'),
|
||||
array(1, '"te\\"st"', '"te\\"st"'),
|
||||
array(0, 'test #comment', '["test"]'),
|
||||
array(0, "text:\ntest\n.\ntext:\ntest\n.\n", '["test","test"]'),
|
||||
array(1, '"\\a\\\\\\"a"', '"a\\\\\\"a"'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider data_tokenizer
|
||||
*/
|
||||
function test_tokenizer($num, $input, $output)
|
||||
{
|
||||
$res = json_encode(rcube_sieve_script::tokenize($input, $num));
|
||||
|
||||
$this->assertEquals(trim($res), trim($output));
|
||||
}
|
||||
}
|
66
data/web/rc/plugins/managesieve/tests/Vacation.php
Normal file
66
data/web/rc/plugins/managesieve/tests/Vacation.php
Normal file
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
class Managesieve_Vacation extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../lib/Roundcube/rcube_sieve_engine.php';
|
||||
include_once __DIR__ . '/../lib/Roundcube/rcube_sieve_vacation.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin object construction test
|
||||
*/
|
||||
function test_constructor()
|
||||
{
|
||||
$vacation = new rcube_sieve_vacation(true);
|
||||
|
||||
$this->assertInstanceOf('rcube_sieve_vacation', $vacation);
|
||||
}
|
||||
|
||||
function test_build_regexp_tests()
|
||||
{
|
||||
$tests = rcube_sieve_vacation::build_regexp_tests('2014-02-20', '2014-03-05', $error);
|
||||
|
||||
$this->assertCount(2, $tests);
|
||||
$this->assertSame('header', $tests[0]['test']);
|
||||
$this->assertSame('regex', $tests[0]['type']);
|
||||
$this->assertSame('received', $tests[0]['arg1']);
|
||||
$this->assertSame('(20|21|22|23|24|25|26|27|28) Feb 2014', $tests[0]['arg2']);
|
||||
$this->assertSame('header', $tests[1]['test']);
|
||||
$this->assertSame('regex', $tests[1]['type']);
|
||||
$this->assertSame('received', $tests[1]['arg1']);
|
||||
$this->assertSame('([ 0]1|[ 0]2|[ 0]3|[ 0]4|[ 0]5) Mar 2014', $tests[1]['arg2']);
|
||||
|
||||
$tests = rcube_sieve_vacation::build_regexp_tests('2014-02-20', '2014-01-05', $error);
|
||||
|
||||
$this->assertSame(null, $tests);
|
||||
$this->assertSame('managesieve.invaliddateformat', $error);
|
||||
}
|
||||
|
||||
function test_parse_regexp_tests()
|
||||
{
|
||||
$tests = array(
|
||||
array(
|
||||
'test' => 'header',
|
||||
'type' => 'regex',
|
||||
'arg1' => 'received',
|
||||
'arg2' => '(20|21|22|23|24|25|26|27|28) Feb 2014',
|
||||
),
|
||||
array(
|
||||
'test' => 'header',
|
||||
'type' => 'regex',
|
||||
'arg1' => 'received',
|
||||
'arg2' => '([ 0]1|[ 0]2|[ 0]3|[ 0]4|[ 0]5) Mar 2014',
|
||||
)
|
||||
);
|
||||
|
||||
$result = rcube_sieve_vacation::parse_regexp_tests($tests);
|
||||
|
||||
$this->assertCount(2, $result);
|
||||
$this->assertSame('20 Feb 2014', $result['from']);
|
||||
$this->assertSame('05 Mar 2014', $result['to']);
|
||||
}
|
||||
}
|
||||
|
52
data/web/rc/plugins/managesieve/tests/src/parser
Normal file
52
data/web/rc/plugins/managesieve/tests/src/parser
Normal file
@@ -0,0 +1,52 @@
|
||||
require ["fileinto","reject","envelope"];
|
||||
# rule:[spam]
|
||||
if anyof (header :contains "X-DSPAM-Result" "Spam")
|
||||
{
|
||||
fileinto "Spam";
|
||||
stop;
|
||||
}
|
||||
# rule:[test1]
|
||||
if anyof (header :contains :comparator "i;ascii-casemap" ["From","To"] "test@domain.tld")
|
||||
{
|
||||
discard;
|
||||
stop;
|
||||
}
|
||||
# rule:[test2]
|
||||
if anyof (not header :contains :comparator "i;octet" ["Subject"] "[test]", header :contains "Subject" "[test2]")
|
||||
{
|
||||
fileinto "test";
|
||||
stop;
|
||||
}
|
||||
# rule:[comments]
|
||||
if anyof (true) /* comment
|
||||
* "comment" #comment */ {
|
||||
/* comment */ stop;
|
||||
# comment
|
||||
}
|
||||
# rule:[reject]
|
||||
if size :over 5000K {
|
||||
reject "Message over 5MB size limit. Please contact me before sending this.";
|
||||
}
|
||||
# rule:[false]
|
||||
if false # size :over 5000K
|
||||
{
|
||||
stop; /* rule disabled */
|
||||
}
|
||||
# rule:[true]
|
||||
if true
|
||||
{
|
||||
stop;
|
||||
}
|
||||
fileinto "Test";
|
||||
# rule:[address test]
|
||||
if address :all :is "From" "nagios@domain.tld"
|
||||
{
|
||||
fileinto "domain.tld";
|
||||
stop;
|
||||
}
|
||||
# rule:[envelope test]
|
||||
if envelope :domain :is "From" "domain.tld"
|
||||
{
|
||||
fileinto "domain.tld";
|
||||
stop;
|
||||
}
|
52
data/web/rc/plugins/managesieve/tests/src/parser.out
Normal file
52
data/web/rc/plugins/managesieve/tests/src/parser.out
Normal file
@@ -0,0 +1,52 @@
|
||||
require ["envelope","fileinto","reject"];
|
||||
# rule:[spam]
|
||||
if header :contains "X-DSPAM-Result" "Spam"
|
||||
{
|
||||
fileinto "Spam";
|
||||
stop;
|
||||
}
|
||||
# rule:[test1]
|
||||
if header :contains ["From","To"] "test@domain.tld"
|
||||
{
|
||||
discard;
|
||||
stop;
|
||||
}
|
||||
# rule:[test2]
|
||||
if anyof (not header :contains :comparator "i;octet" "Subject" "[test]", header :contains "Subject" "[test2]")
|
||||
{
|
||||
fileinto "test";
|
||||
stop;
|
||||
}
|
||||
# rule:[comments]
|
||||
if true
|
||||
{
|
||||
stop;
|
||||
}
|
||||
# rule:[reject]
|
||||
if size :over 5000K
|
||||
{
|
||||
reject "Message over 5MB size limit. Please contact me before sending this.";
|
||||
}
|
||||
# rule:[false]
|
||||
if false # size :over 5000K
|
||||
{
|
||||
stop;
|
||||
}
|
||||
# rule:[true]
|
||||
if true
|
||||
{
|
||||
stop;
|
||||
}
|
||||
fileinto "Test";
|
||||
# rule:[address test]
|
||||
if address :is "From" "nagios@domain.tld"
|
||||
{
|
||||
fileinto "domain.tld";
|
||||
stop;
|
||||
}
|
||||
# rule:[envelope test]
|
||||
if envelope :domain :is "From" "domain.tld"
|
||||
{
|
||||
fileinto "domain.tld";
|
||||
stop;
|
||||
}
|
17
data/web/rc/plugins/managesieve/tests/src/parser_body
Normal file
17
data/web/rc/plugins/managesieve/tests/src/parser_body
Normal file
@@ -0,0 +1,17 @@
|
||||
require ["body","fileinto"];
|
||||
if body :raw :contains "MAKE MONEY FAST"
|
||||
{
|
||||
stop;
|
||||
}
|
||||
if body :content "text" :contains ["missile","coordinates"]
|
||||
{
|
||||
fileinto "secrets";
|
||||
}
|
||||
if body :content "audio/mp3" :contains ""
|
||||
{
|
||||
fileinto "jukebox";
|
||||
}
|
||||
if body :text :contains "project schedule"
|
||||
{
|
||||
fileinto "project/schedule";
|
||||
}
|
21
data/web/rc/plugins/managesieve/tests/src/parser_date
Normal file
21
data/web/rc/plugins/managesieve/tests/src/parser_date
Normal file
@@ -0,0 +1,21 @@
|
||||
require ["comparator-i;ascii-numeric","date","fileinto","relational"];
|
||||
# rule:[date]
|
||||
if allof (date :originalzone :value "ge" :comparator "i;ascii-numeric" "date" "hour" "09")
|
||||
{
|
||||
fileinto "urgent";
|
||||
}
|
||||
# rule:[date-weekday]
|
||||
if date :is "received" "weekday" "0"
|
||||
{
|
||||
fileinto "weekend";
|
||||
}
|
||||
# rule:[date-zone]
|
||||
if date :zone "-0500" :value "gt" :comparator "i;ascii-numeric" "received" "iso8601" "2007-02-26T09:00:00-05:00"
|
||||
{
|
||||
stop;
|
||||
}
|
||||
# rule:[currentdate]
|
||||
if anyof (currentdate :is "weekday" "0", currentdate :value "lt" :comparator "i;ascii-numeric" "hour" "09", currentdate :value "ge" :comparator "i;ascii-numeric" "date" "2007-06-30")
|
||||
{
|
||||
stop;
|
||||
}
|
16
data/web/rc/plugins/managesieve/tests/src/parser_duplicate
Normal file
16
data/web/rc/plugins/managesieve/tests/src/parser_duplicate
Normal file
@@ -0,0 +1,16 @@
|
||||
require ["duplicate","fileinto"];
|
||||
# rule:[test-duplicate]
|
||||
if duplicate
|
||||
{
|
||||
fileinto "urgent";
|
||||
}
|
||||
# rule:[test-duplicate-2]
|
||||
if allof (duplicate :handle "support" :header "X-Ticket-ID", header :contains "subject" "fileserver")
|
||||
{
|
||||
fileinto "test";
|
||||
}
|
||||
# rule:[test-duplicate-3]
|
||||
if not duplicate :uniqueid "test" :seconds 1800
|
||||
{
|
||||
discard;
|
||||
}
|
19
data/web/rc/plugins/managesieve/tests/src/parser_enotify_a
Normal file
19
data/web/rc/plugins/managesieve/tests/src/parser_enotify_a
Normal file
@@ -0,0 +1,19 @@
|
||||
require ["enotify","variables"];
|
||||
# rule:[notify1]
|
||||
if header :contains "from" "boss@example.org"
|
||||
{
|
||||
notify :importance "1" :message "This is probably very important" "mailto:alm@example.com";
|
||||
stop;
|
||||
}
|
||||
# rule:[subject]
|
||||
if header :matches "Subject" "*"
|
||||
{
|
||||
set "subject" "${1}";
|
||||
}
|
||||
# rule:[from notify2]
|
||||
if header :matches "From" "*"
|
||||
{
|
||||
set "from" "${1}";
|
||||
notify :importance "3" :message "${from}: ${subject}" "mailto:alm@example.com";
|
||||
}
|
||||
|
18
data/web/rc/plugins/managesieve/tests/src/parser_enotify_b
Normal file
18
data/web/rc/plugins/managesieve/tests/src/parser_enotify_b
Normal file
@@ -0,0 +1,18 @@
|
||||
require ["enotify","envelope","variables"];
|
||||
# rule:[from]
|
||||
if envelope :matches "from" "*"
|
||||
{
|
||||
set "env_from" " [really: ${1}]";
|
||||
}
|
||||
# rule:[subject]
|
||||
if header :matches "Subject" "*"
|
||||
{
|
||||
set "subject" "${1}";
|
||||
}
|
||||
# rule:[from notify]
|
||||
if address :matches "from" "*"
|
||||
{
|
||||
set "from_addr" "${1}";
|
||||
notify :message "${from_addr}${env_from}: ${subject}" "mailto:alm@example.com";
|
||||
}
|
||||
|
@@ -0,0 +1,7 @@
|
||||
require ["imap4flags"];
|
||||
# rule:[imapflags]
|
||||
if header :matches "Subject" "^Test$"
|
||||
{
|
||||
setflag "\\Seen";
|
||||
addflag ["\\Answered","\\Deleted"];
|
||||
}
|
7
data/web/rc/plugins/managesieve/tests/src/parser_include
Normal file
7
data/web/rc/plugins/managesieve/tests/src/parser_include
Normal file
@@ -0,0 +1,7 @@
|
||||
require ["include"];
|
||||
include "script.sieve";
|
||||
# rule:[two]
|
||||
if true
|
||||
{
|
||||
include :optional "second.sieve";
|
||||
}
|
24
data/web/rc/plugins/managesieve/tests/src/parser_index
Normal file
24
data/web/rc/plugins/managesieve/tests/src/parser_index
Normal file
@@ -0,0 +1,24 @@
|
||||
require ["comparator-i;ascii-numeric","date","fileinto","index","relational"];
|
||||
# rule:[index-header1]
|
||||
if header :index 1 :last :contains "X-DSPAM-Result" "Spam"
|
||||
{
|
||||
fileinto "Spam";
|
||||
stop;
|
||||
}
|
||||
# rule:[index-header2]
|
||||
if header :index 2 :contains ["From","To"] "test@domain.tld"
|
||||
{
|
||||
discard;
|
||||
stop;
|
||||
}
|
||||
# rule:[index-address]
|
||||
if address :index 1 :is "From" "nagios@domain.tld"
|
||||
{
|
||||
fileinto "domain.tld";
|
||||
stop;
|
||||
}
|
||||
# rule:[index-date]
|
||||
if date :index 1 :last :zone "-0500" :value "gt" :comparator "i;ascii-numeric" "received" "iso8601" "2007-02-26T09:00:00-05:00"
|
||||
{
|
||||
stop;
|
||||
}
|
2
data/web/rc/plugins/managesieve/tests/src/parser_kep14
Normal file
2
data/web/rc/plugins/managesieve/tests/src/parser_kep14
Normal file
@@ -0,0 +1,2 @@
|
||||
# EDITOR Roundcube
|
||||
# EDITOR_VERSION 123
|
@@ -0,0 +1,3 @@
|
||||
require ["variables"];
|
||||
set "EDITOR" "Roundcube";
|
||||
set "EDITOR_VERSION" "123";
|
25
data/web/rc/plugins/managesieve/tests/src/parser_nesting
Normal file
25
data/web/rc/plugins/managesieve/tests/src/parser_nesting
Normal file
@@ -0,0 +1,25 @@
|
||||
# Sieve Filter
|
||||
# Erzeugt von Ingo (http://www.horde.org/ingo/) (30.09.2016, 16:02)
|
||||
|
||||
# Nested rules aren't supported and will be ignored (#5540)
|
||||
|
||||
require ["vacation", "regex"];
|
||||
|
||||
# Abwesenheit
|
||||
if allof ( not exists ["list-help", "list-unsubscribe", "list-subscribe", "list-owner", "list-post", "list-archive", "list-id", "Mailing-List"],
|
||||
not header :is "Precedence" ["list", "bulk", "junk"],
|
||||
not header :matches "To" "Multiple recipients of*") {
|
||||
if header :regex "Received" "^.*(2016) (\\(.*\\) )?..:..:.. (\\(.*\\) )?(\\+|\\-)....( \\(.*\\))?$" {
|
||||
if header :regex "Received" "^.*(Oct) (\\(.*\\) )?.... (\\(.*\\) )?..:..:.. (\\(.*\\) )?(\\+|\\-)....( \\(.*\\))?$" {
|
||||
if header :regex "Received" "^.*([0 ]4|[0 ]5|[0 ]6|[0 ]7) (\\(.*\\) )?... (\\(.*\\) )?.... (\\(.*\\) )?..:..:.. (\\(.*\\) )?(\\+|\\-)....( \\(.*\\))?$" {
|
||||
vacation :days 7 :addresses "test@company.com" :subject "vacation" "blablabla";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Ausgeschlossene Adressen
|
||||
if address :is ["From", "Sender", "Resent-From"] "noreply@example.org" {
|
||||
discard;
|
||||
stop;
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
# Sieve Filter
|
||||
# Erzeugt von Ingo (http://www.horde.org/ingo/) (30.09.2016, 16:02)
|
||||
|
||||
# rule:[Ausgeschlossene Adressen]
|
||||
if address :is ["From","Sender","Resent-From"] "noreply@example.org"
|
||||
{
|
||||
discard;
|
||||
stop;
|
||||
}
|
18
data/web/rc/plugins/managesieve/tests/src/parser_notify_a
Normal file
18
data/web/rc/plugins/managesieve/tests/src/parser_notify_a
Normal file
@@ -0,0 +1,18 @@
|
||||
require ["notify","variables"];
|
||||
# rule:[notify1]
|
||||
if header :contains "from" "boss@example.org"
|
||||
{
|
||||
notify :low :message "This is probably very important";
|
||||
stop;
|
||||
}
|
||||
# rule:[subject]
|
||||
if header :matches "Subject" "*"
|
||||
{
|
||||
set "subject" "${1}";
|
||||
}
|
||||
# rule:[from notify2]
|
||||
if header :matches "From" "*"
|
||||
{
|
||||
set "from" "${1}";
|
||||
notify :high :method "mailto" :options "test@example.org" :message "${from}: ${subject}";
|
||||
}
|
17
data/web/rc/plugins/managesieve/tests/src/parser_notify_b
Normal file
17
data/web/rc/plugins/managesieve/tests/src/parser_notify_b
Normal file
@@ -0,0 +1,17 @@
|
||||
require ["envelope","notify","variables"];
|
||||
# rule:[from]
|
||||
if envelope :matches "from" "*"
|
||||
{
|
||||
set "env_from" " [really: ${1}]";
|
||||
}
|
||||
# rule:[subject]
|
||||
if header :matches "Subject" "*"
|
||||
{
|
||||
set "subject" "${1}";
|
||||
}
|
||||
# rule:[from notify]
|
||||
if address :matches "from" "*"
|
||||
{
|
||||
set "from_addr" "${1}";
|
||||
notify :method "sms" :options "1234567890" :message "${from_addr}${env_from}: ${subject}";
|
||||
}
|
5
data/web/rc/plugins/managesieve/tests/src/parser_prefix
Normal file
5
data/web/rc/plugins/managesieve/tests/src/parser_prefix
Normal file
@@ -0,0 +1,5 @@
|
||||
# this is a comment
|
||||
# and the second line
|
||||
|
||||
require ["variables"];
|
||||
set "b" "c";
|
@@ -0,0 +1,6 @@
|
||||
require ["comparator-i;ascii-numeric","relational"];
|
||||
# rule:[redirect]
|
||||
if header :value "ge" :comparator "i;ascii-numeric" "X-Spam-score" "14"
|
||||
{
|
||||
redirect "test@test.tld";
|
||||
}
|
11
data/web/rc/plugins/managesieve/tests/src/parser_subaddress
Normal file
11
data/web/rc/plugins/managesieve/tests/src/parser_subaddress
Normal file
@@ -0,0 +1,11 @@
|
||||
require ["envelope","fileinto","subaddress"];
|
||||
if envelope :user "To" "postmaster"
|
||||
{
|
||||
fileinto "postmaster";
|
||||
stop;
|
||||
}
|
||||
if envelope :detail :is "To" "mta-filters"
|
||||
{
|
||||
fileinto "mta-filters";
|
||||
stop;
|
||||
}
|
12
data/web/rc/plugins/managesieve/tests/src/parser_vacation
Normal file
12
data/web/rc/plugins/managesieve/tests/src/parser_vacation
Normal file
@@ -0,0 +1,12 @@
|
||||
require ["vacation"];
|
||||
# rule:[test-vacation]
|
||||
if header :contains "Subject" "vacation"
|
||||
{
|
||||
vacation :days 1 text:
|
||||
# test
|
||||
test test /* test */
|
||||
test
|
||||
.
|
||||
;
|
||||
stop;
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
require ["vacation-seconds"];
|
||||
# rule:[test-vacation]
|
||||
if header :contains "Subject" "vacation"
|
||||
{
|
||||
vacation :seconds 0 text:
|
||||
# test
|
||||
test test /* test */
|
||||
test
|
||||
.
|
||||
;
|
||||
stop;
|
||||
}
|
24
data/web/rc/plugins/managesieve/tests/src/parser_variables
Normal file
24
data/web/rc/plugins/managesieve/tests/src/parser_variables
Normal file
@@ -0,0 +1,24 @@
|
||||
require ["variables"];
|
||||
set "honorific" "Mr";
|
||||
set "vacation" text:
|
||||
Dear ${HONORIFIC} ${last_name},
|
||||
I am out, please leave a message after the meep.
|
||||
.
|
||||
;
|
||||
set :length "b" "${a}";
|
||||
set :lower "b" "${a}";
|
||||
set :upperfirst "b" "${a}";
|
||||
set :upperfirst :lower "b" "${a}";
|
||||
set :quotewildcard "b" "Rock*";
|
||||
if string :matches " ${state} " "* pending *"
|
||||
{
|
||||
set "test1" "*";
|
||||
}
|
||||
if string ["aaa","bbb"] ["aaa","bbb"]
|
||||
{
|
||||
set "test2" "*";
|
||||
}
|
||||
if string :is :comparator "i;octet" "bbb" "bbb"
|
||||
{
|
||||
set "test3" "*";
|
||||
}
|
Reference in New Issue
Block a user