summaryrefslogtreecommitdiff
path: root/plugins/managesieve/tests/src/parser_notify_b
diff options
context:
space:
mode:
authorPaweł Słowik <pawel.slowik@iq.pl>2012-09-14 14:27:58 +0200
committerPaweł Słowik <pawel.slowik@iq.pl>2012-09-14 14:27:58 +0200
commit3c99599794948686960ee4e340374b0c3a1527b2 (patch)
treea2e87e6b76bb261969ef4aa98a4e8663dd5909ba /plugins/managesieve/tests/src/parser_notify_b
parent2cdaa79dce689b2dc9ef5c7bf3dcbd9446d86c21 (diff)
Sieve enotify/notify:
- GUI for importance setting - make tests usable for checking the GUI
Diffstat (limited to 'plugins/managesieve/tests/src/parser_notify_b')
-rw-r--r--plugins/managesieve/tests/src/parser_notify_b5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/managesieve/tests/src/parser_notify_b b/plugins/managesieve/tests/src/parser_notify_b
index 537898567..8854658f4 100644
--- a/plugins/managesieve/tests/src/parser_notify_b
+++ b/plugins/managesieve/tests/src/parser_notify_b
@@ -1,15 +1,18 @@
require ["envelope","variables","enotify"];
+# rule:[from]
if envelope :all :matches "from" "*"
{
set "env_from" " [really: ${1}]";
}
+# rule:[subject]
if header :matches "Subject" "*"
{
set "subject" "${1}";
}
+# rule:[from notify]
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}" "mailto:alm@example.com";