diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-01 10:36:52 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-01 10:36:52 +0200 |
commit | dda39aab1d8af12d6f2287e4bdeae86b5abfc21b (patch) | |
tree | fd8da2d9d36ba1af005407292493069a5bc8e6db /plugins/managesieve/lib/Roundcube | |
parent | 5d0cb00d5ef9e9647ab7f7ae913ff9d0d2684efc (diff) |
Support 'keep' action (#1489226)
Diffstat (limited to 'plugins/managesieve/lib/Roundcube')
-rw-r--r-- | plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php index e92ba04d6..bbbfa9d91 100644 --- a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php +++ b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php @@ -1550,6 +1550,7 @@ class rcube_sieve_engine if (in_array('enotify', $this->exts) || in_array('notify', $this->exts)) { $select_action->add(rcube::Q($this->plugin->gettext('notify')), 'notify'); } + $select_action->add(rcube::Q($this->plugin->gettext('messagekeep')), 'keep'); $select_action->add(rcube::Q($this->plugin->gettext('rulestop')), 'stop'); $select_type = $action['type']; |