1 (edited by tallerinfo.cipolletti 2022-01-24 22:47:25)

Topic: Managesieve header subject option doesn't appear

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.4.0 MariaDB
- Deployed with iRedMail Easy or the downloadable installer? Downloadable
- Linux/BSD distribution name and version: Debian 10
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====
Hi everyone! I'm with a trouble here, when i want to set up a filter for forward emails who has a subject like "Welcome" to another email like "example@ex.com" i saw that the option for subject or header doesn't appear but another one yes. How can i able the option for subject?

Post's attachments

Captura de pantalla 2022-01-24 113547.png
Captura de pantalla 2022-01-24 113547.png 20.4 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

----

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

2

Re: Managesieve header subject option doesn't appear

[SOLVED]
In the line 85 for config.inc.php into the roundcube folder change this.

// Default list of entries in header selector
$config['managesieve_default_headers'] = "";

I just have to put after of = this: ['Subject', 'From', 'To']
So the actual config is like this:

// Default list of entries in header selector
$config['managesieve_default_headers'] = ['Subject', 'From', 'To'];