I have been trying to enable the enotify sieve extension, in order to use a filter like,
require ["enotify", "fileinto", "variables"];
if header :contains "from" "boss@example.org" {
notify :importance "1"
:message "This is probably very important"
"mailto:alm@example.com";
# Don't send any further notifications
stop;
}
When I click on the “validate” button, I get a red pop-up:
"line 1: unexpected quoted string "enotify""
I added the +enotify
extension to the data/conf/dovecot/dovecot.conf
, so it reads:
sieve_extensions = +notify +imapflags +vacation-seconds +editheader +enotify
Then I did
docker-compose down
docker-compose up -d
But still the system does not validate the require "enotify"
part.
What am I doing wrong?
Where I can read how to properly activate sieve extensions?