• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

before sieve rule

Heppi75

Basic Pleskian
hi,

I want to include my own before.sieve rule that is executed before the user rules. I made a configuration file like this in the dovecot conf folder (00-myconf.conf):

Code:
protocols = $protocols sieve


protocol sieve {
}

protocol lda {
  mail_plugins = $mail_plugins sieve
}

plugin {
    sieve_before = /etc/dovecot/sieve/before.sieve
}

the plesk config (90-plesk-sieve.conf) is loaded with this:

Code:
protocols = $protocols sieve

protocol sieve {
}

protocol lda {
  mail_plugins = $mail_plugins sieve
}

plugin {
  sieve = ~/.dovecot.sieve
  sieve_dir = ~/sieve

  # Horde webmail (Ingo sieve backend) is not aware of RFC 'imap4flags' and
  # 'enotify' extensions. Enable old deprecated ones.
  sieve_extensions = +notify +imapflags
}

# Log format compatible with Plesk statistics collector.
managesieve_logout_format = "rcvd=%i, sent=%o"

if I am doing this the user rules are ignored? could you please help how to integrate this?
 
hi, problem solved - there was an error in the before.sieve script ... - so this configs works as shown above ...
 
Back
Top