1

Topic: Have multiple joker virtual alias

==== Required information ====
- iRedMail version: 0.9.1
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):  MariaDB
- Web server (Apache or Nginx): NGINX
- Linux/BSD distribution name and version: Debian Jessie
- Related log if you're reporting an issue:
====

Hey all,

Is it possible to have a feature to have «catch all virtual alias» ? I want set one alias with value " email.*@domain.tld " to redirect where email@domain.tld for example.

Is it possible ?

Thank you

----

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

2

Re: Have multiple joker virtual alias

It sounds like forwarding emails sent to 'userl+[xxx]@domain.ltd' to 'user@domain.ltd'. If so, it's called address extension and implemented in iRedMail by default. iRedMail configures Postfix/Dovecot to use '+' as default delimiter.

3 (edited by Ange7 2015-05-28 16:52:52)

Re: Have multiple joker virtual alias

Ok, on my old mail server i could defined alias «user.%@domain.tld» for example :-/

But thank you smile

4

Re: Have multiple joker virtual alias

Postfix uses '+' as default delimiter, but with Postfix-2.11 and later, you can define multiple delimiters. For example:

# Handle Postfix-style extensions.
recipient_delimiter = +

# Handle both Postfix and qmail extensions (Postfix 2.11 and later).
recipient_delimiter = +-

Reference: http://www.postfix.org/postconf.5.html# … _delimiter

5

Re: Have multiple joker virtual alias

ZhangHuangbin wrote:

Postfix uses '+' as default delimiter, but with Postfix-2.11 and later, you can define multiple delimiters. For example:

# Handle Postfix-style extensions.
recipient_delimiter = +

# Handle both Postfix and qmail extensions (Postfix 2.11 and later).
recipient_delimiter = +-

Reference: http://www.postfix.org/postconf.5.html# … _delimiter

It's very cool ! thank you !