From 3c99599794948686960ee4e340374b0c3a1527b2 Mon Sep 17 00:00:00 2001
From: Paweł Słowik <pawel.slowik@iq.pl>
Date: Fri, 14 Sep 2012 08:27:58 -0400
Subject: [PATCH] Sieve enotify/notify: - GUI for importance setting - make tests usable for checking the GUI
---
plugins/managesieve/tests/src/parser_notify_a | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/plugins/managesieve/tests/src/parser_notify_a b/plugins/managesieve/tests/src/parser_notify_a
index 324805a..68a9ef5 100644
--- a/plugins/managesieve/tests/src/parser_notify_a
+++ b/plugins/managesieve/tests/src/parser_notify_a
@@ -1,16 +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";
}
-notify :importance "3" :message "${from}: ${subject}" "mailto:alm@example.com";
--
Gitblit v1.9.1