support specifying default email domain for reverse proxy setup

This commit is contained in:
Ashish Kulkarni
2014-08-20 19:38:20 +05:30
parent 9254d3b250
commit 3a0dd41128
3 changed files with 14 additions and 1 deletions

View File

@@ -42,4 +42,9 @@ define('REVERSE_PROXY_USER_HEADER', 'REMOTE_USER');
// you should want to have a bootstrap admin user.
define('REVERSE_PROXY_DEFAULT_ADMIN', 'myadmin');
// The default domain to assume for the email address.
// In case the username is not an email address, it
// will be updated automatically as USER@mydomain.com
define('REVERSE_PROXY_DEFAULT_DOMAIN', 'mydomain.com');
```