You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 line
527 B

  1. REPLACE INTO `mailserver`.`virtual_domains` (
  2. `id` ,
  3. `name`
  4. )
  5. VALUES (
  6. '1', 'example.org'
  7. );
  8. REPLACE INTO `mailserver`.`virtual_users` (
  9. `id` ,
  10. `domain_id` ,
  11. `password` ,
  12. `email`
  13. )
  14. VALUES (
  15. '1', '1', '{BLF-CRYPT}$2y$05$m.GdQNMyUFNG0vPsaXxSB.0ZQqZhe1e9Un841oBcWi6U6HRF2Kmky', 'john@example.org'
  16. );
  17. REPLACE INTO `mailserver`.`virtual_aliases` (
  18. `id`,
  19. `domain_id`,
  20. `source`,
  21. `destination`
  22. )
  23. VALUES (
  24. '1', '1', 'jack@example.org', 'john@example.org'
  25. );