Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1.  
  2. mysql> INSERT INTO alias (address, domain, active) VALUES ('ctrack@profibre.co.za', 'profibre.co.za', 1);
  3.  
  4. mysql> INSERT INTO forwardings (address, forwarding,domain, dest_domain,is_list, active) VALUES ('ctrack@profibre.co.za', 'robert@profibre.co.za','profibre.co.za', 'profibre.co.za',1, 1);
  5.  
  6. -----------------------------
  7.  
  8. -- Create mail alias account
  9. mysql> INSERT INTO alias (address, domain, active) VALUES ('alias@mydomain.com', 'mydomain.com', 1);
  10.  
  11. -- Forward email to 'someone@gmail.com'
  12. mysql> INSERT INTO forwardings (address, forwarding,domain, dest_domain,is_list, active) VALUES ('alias@mydomain.com', 'someone@gmail.com','mydomain.com', 'gmail.com',1, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement