diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-16 09:08:38 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-16 09:10:22 +0100 |
commit | 3b61f76ca0eb9ad9487fa2ab64dda97e51f9df57 (patch) | |
tree | 2eede9268660f3b32646ae375e37cd542d4f36a2 /settings/application.php | |
parent | 5b9c453071fe900529cd26b88fbc681d8b153b43 (diff) | |
download | nextcloud-server-3b61f76ca0eb9ad9487fa2ab64dda97e51f9df57.tar.gz nextcloud-server-3b61f76ca0eb9ad9487fa2ab64dda97e51f9df57.zip |
Send mail for new users
* supply mail address
* send mail with username and URL to that mail address
* option to temporary enable this feature
Diffstat (limited to 'settings/application.php')
-rw-r--r-- | settings/application.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/settings/application.php b/settings/application.php index 0a80bd8b1e7..b088c2f937b 100644 --- a/settings/application.php +++ b/settings/application.php @@ -83,7 +83,12 @@ class Application extends App { $c->query('UserSession'), $c->query('Config'), $c->query('IsAdmin'), - $c->query('L10N') + $c->query('L10N'), + $c->getServer()->getLogger(), + $c->query('Defaults'), + $c->query('Mail'), + $c->query('DefaultMailAddress'), + $c->getServer()->getURLGenerator() ); }); |