1

Topic: Alias with OSE version

==== Provide required information ====
- iRedMail version and backend (LDAP/MySQL/PGSQL): PGSQL
- Linux/BSD distribution name and version: UBUNTU 12.04 LTS
- Any related log? Log is helpful for troubleshooting.
====

Hello, i'm trying to import mail alias from qmail to IredMail but i cannot find any method to do it.
How i can create an alias for a virtual users?

Thanks in advance for your support.

P.S. Sorry for my English...

----

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

2

Re: Alias with OSE version

Do you mean creating new mail alias account? If so, try this:

pgsql> \c vmail;
pgsql> INSERT INTO alias (address, goto, name, domain) VALUES ('myalias@example.com', 'user1@example.com,user2@example.com,someone@gmail.com', 'My Alias Account', 'example.com');

Hope it helps.

3

Re: Alias with OSE version

yes, thanks.

You're great