summaryrefslogtreecommitdiff
path: root/plugins/managesieve/tests/src/parser_notify_a
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-27 08:27:02 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-27 08:27:02 +0200
commit700dc66c679f0ae6e16c9d016a15bee4269371e6 (patch)
tree21f30c64e3f2559d015777ec7798855d32be24b5 /plugins/managesieve/tests/src/parser_notify_a
parent18df6f38adb9fb067af104e4cf9484904bf49365 (diff)
parentdc8f292b215719506c2ab0abd8429f4c5ec5c0ed (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'plugins/managesieve/tests/src/parser_notify_a')
-rw-r--r--plugins/managesieve/tests/src/parser_notify_a18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/managesieve/tests/src/parser_notify_a b/plugins/managesieve/tests/src/parser_notify_a
new file mode 100644
index 000000000..f1a57540e
--- /dev/null
+++ b/plugins/managesieve/tests/src/parser_notify_a
@@ -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 :message "${from}: ${subject}" :method "mailto:test@example.org";
+}