1

Topic: Multiple addresses for alias mail

==== Required information ====
- iRedMail version: 0.8.3
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Linux/BSD distribution name and version: Centos 6.3
- Related log if you're reporting an issue:
====
Hi,

I read in a post about adding alias addresses.

mysql> USE vmail;
mysql> INSERT INTO alias (address, goto, domain) VALUES ('EmailUserAlias@example.net', 'EmailUser@example.net', 'example.net');

How can I add multiple goto addresses? Can I do this through phpmyadmin adding each address in separate line in the goto field?

----

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

2

Re: Multiple addresses for alias mail

Please separate multiple addresses by comma (,). For example:

mysql> INSERT ... (..., goto, ...) VALUES (..., 'user1@domain.com,user2@domain.com,user3@domain.com', ...);