summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-20 12:39:52 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-20 12:39:52 +0200
commit270da4b87b3601b558d37721aae9e4816359aca5 (patch)
treefed4f2bda8fd1867923fc23497d6c9fa4c56758a /plugins
parenteb1ee0803e51fbbdd3f8966c511b5212aed91524 (diff)
Enable notify action for notify extension
Diffstat (limited to 'plugins')
-rw-r--r--plugins/managesieve/managesieve.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php
index e3033016b..055e1b4cb 100644
--- a/plugins/managesieve/managesieve.php
+++ b/plugins/managesieve/managesieve.php
@@ -1501,7 +1501,7 @@ class managesieve extends rcube_plugin
if (in_array('variables', $this->exts)) {
$select_action->add(Q($this->gettext('setvariable')), 'set');
}
- if (in_array('enotify', $this->exts)) {
+ if (in_array('enotify', $this->exts) || in_array('notify', $this->exts)) {
$select_action->add(Q($this->gettext('notify')), 'notify');
}
$select_action->add(Q($this->gettext('rulestop')), 'stop');