diff options
author | Paweł Słowik <pawel.slowik@iq.pl> | 2012-09-14 14:27:58 +0200 |
---|---|---|
committer | Paweł Słowik <pawel.slowik@iq.pl> | 2012-09-14 14:27:58 +0200 |
commit | 3c99599794948686960ee4e340374b0c3a1527b2 (patch) | |
tree | a2e87e6b76bb261969ef4aa98a4e8663dd5909ba /plugins/managesieve/tests/src/parser_notify_a | |
parent | 2cdaa79dce689b2dc9ef5c7bf3dcbd9446d86c21 (diff) |
Sieve enotify/notify:
- GUI for importance setting
- make tests usable for checking the GUI
Diffstat (limited to 'plugins/managesieve/tests/src/parser_notify_a')
-rw-r--r-- | 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 324805ad4..68a9ef5cc 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"; |