Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. driver=mysql
  2. connect = "host=127.0.0.1 dbname=vmail user=vmail password=vmaildbpass"
  3. default_pass_scheme = SHA512-CRYPT
  4.  
  5. password_query = SELECT username AS user, domain, password FROM accounts WHERE username = '%n' AND domain = '%d' and enabled = true;
  6.  
  7. user_query = SELECT concat('*:storage=', quota, 'M') AS quota_rule FROM accounts WHERE username = '%n' AND domain = '%d' AND sendonly = false;
  8.  
  9. iterate_query = SELECT username, domain FROM accounts where sendonly = false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement