Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-16 11:08:38 +0300
committerMorris Jobke <hey@morrisjobke.de>2014-12-16 11:10:22 +0300
commit3b61f76ca0eb9ad9487fa2ab64dda97e51f9df57 (patch)
tree2eede9268660f3b32646ae375e37cd542d4f36a2 /settings/application.php
parent5b9c453071fe900529cd26b88fbc681d8b153b43 (diff)
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.php7
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()
);
});