1

Topic: Sieve help

Hi all,

I’m kind of new to Sieve. I have a fresh install of iRedMail using the downloadable installer and im using an LDAP backend.

I have setup some groups and they work fine. I am looking to add a rule so that any email sent to the groups are directed into a folder in each users mailbox. As I am such a noob to sieve can someone help me out with the config and where to put it please?

Thanks in advanced.

John

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.4.0
- Deployed with iRedMail downloadable installer
- Linux/BSD distribution name and version: Debian 9
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Web server (Apache or Nginx): Nginx
====

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Sieve help

To manage sieve filter : i use managesieve plugin in roundcube webmail.

Really the easisest solution
I don't know the header for group

if allof (header :contains "from" "postmaster+poledra@example.net", header :contains "to")
{
    fileinto "INBOX/LOG poledra";
    stop;
}

3

Re: Sieve help

Thanks.

I tried this on my server and in roundcube. I get "cannot connect to Sieve"?

Anyone else had this before?

4

Re: Sieve help

Any related error in /var/log/dovecot/*.log?