From 270da4b87b3601b558d37721aae9e4816359aca5 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Thu, 20 Sep 2012 06:39:52 -0400 Subject: [PATCH] Enable notify action for notify extension --- plugins/managesieve/managesieve.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php index e303301..055e1b4 100644 --- a/plugins/managesieve/managesieve.php +++ b/plugins/managesieve/managesieve.php @@ -1501,7 +1501,7 @@ 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'); -- Gitblit v1.9.1