Displaying 1 result from an estimated 1 matches for "ismailbox".
Did you mean:
emailbox
2012 May 07
1
Proxying for some users and having the rest local?
...so that I can switch proxy access on and off?
What's I've got so far is:
password_query = SELECT user, domain, password, "masteruser" as master, "masterpass" as pass, proxy, "remoteimap.server" as host FROM mailboxes \
WHERE user = '%n' AND isMailbox AND active AND domain = '%d'
I imagined that I could switch the proxy per user by setting proxy='n' or proxy=null for any users that want to be local, and proxy='y' for any users that I want to forward on to the original server.
It doesn't appear to work that way thoug...