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 | |
parent | 2cdaa79dce689b2dc9ef5c7bf3dcbd9446d86c21 (diff) |
Sieve enotify/notify:
- GUI for importance setting
- make tests usable for checking the GUI
Diffstat (limited to 'plugins/managesieve/tests/src')
-rw-r--r-- | plugins/managesieve/tests/src/parser_notify_a | 5 | ||||
-rw-r--r-- | plugins/managesieve/tests/src/parser_notify_b | 5 |
2 files changed, 8 insertions, 2 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"; 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"; |