Skip to content

Instantly share code, notes, and snippets.

@RELATO
Last active November 21, 2016 18:21
Show Gist options
  • Select an option

  • Save RELATO/698cac21ccd027a8da1e to your computer and use it in GitHub Desktop.

Select an option

Save RELATO/698cac21ccd027a8da1e to your computer and use it in GitHub Desktop.
iRedMail - Creating group of addresses (simple)
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?
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', ...);
@sky252016

Copy link
Copy Markdown

Hi,

Same problem here.. Have you resolved this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment