Last active
November 21, 2016 18:21
-
-
Save RELATO/698cac21ccd027a8da1e to your computer and use it in GitHub Desktop.
iRedMail - Creating group of addresses (simple)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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', ...); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Same problem here.. Have you resolved this?