1

Topic: Individual signature pulled from LDAP?

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.98
- Linux/BSD distribution name and version: CentOS 7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? Yes
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

Is it possible to set an individual (HTML) email signature for each user. Perhaps by adding it to the LDAP entry somehow and pulling directly in?

Thanks

----

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

2

Re: Individual signature pulled from LDAP?

Usually per-user signature is done by user himself/herself with the MUA. Why do you need different signature for each user?

Technically, yes it's achievable: in Amavisd config file /etc/amavisd/amavisd.conf, you add add per-user / per-domain / global disclaimer / signature setting like this:

@disclaimer_options_bysender_maps = ({
    # Per-domain, per-user disclaimer setting:
    # '<domain>' => /path/to/disclaimer.txt,
    # '<email>' => /path/to/disclaimer.txt,

    # Catch-all disclaimer setting: /etc/postfix/disclaimer/default.txt
    '.' => 'default',
},);