eMail Forwarding for iredMail

From KlavoWiki
Revision as of 10:42, 9 May 2020 by David (talk | contribs) (Created page with "To forward email from one mailbox to another.<br><br> If you just want an email alias and don't require to send from this address you don't need to create a mailbox just crea...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

To forward email from one mailbox to another.

If you just want an email alias and don't require to send from this address you don't need to create a mailbox just create the forwarder.


The below will forward all email for reports@klaverstyn.com to admin@testforme.com

mysql vmail
INSERT INTO forwardings (address,
                         forwarding,
                         domain,
                         dest_domain,
                         is_forwarding,
                         active)
                 VALUES ('reports@klaverstyn.com',
                         'admin@testforme.com',
                         'klaverstyn.com',
                         'testforme.com',
                         1,
                         1);