diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 01:06:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 01:06:06 +0000 |
commit | 83f3c4114164617f48f3b013027f9079ddc2675c (patch) | |
tree | 3fc5ba313a14992eb3683e2a2e46c095fc7a8f7f /config/ampache.cfg.php.dist | |
parent | 5c2efb82b74874e5f7220cb1a00479c009d9221b (diff) | |
download | ampache-83f3c4114164617f48f3b013027f9079ddc2675c.tar.gz ampache-83f3c4114164617f48f3b013027f9079ddc2675c.tar.bz2 ampache-83f3c4114164617f48f3b013027f9079ddc2675c.zip |
updated registration mojo thx pb1dft also some fluf updates
Diffstat (limited to 'config/ampache.cfg.php.dist')
-rw-r--r-- | config/ampache.cfg.php.dist | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 77a134d3..2e832621 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -122,9 +122,21 @@ require_session = "true" # This setting turns on/off public registration. It is # recommended you leave this off, as it will allow anyone to # sign up for an account on your server. +# REMEMBER: don't forget to set the mail from address futher down in the config. # DEFAULT: false #allow_public_registration = "false" +# This setting defines the mail domain your in. +# It tries to deliver a test mail before the user can register and uses +# the from address info@"domain.tld". No mail is send from this address it's +# only used to test the existense of a mailbox before accepting user registration. +# DEFAULT: domain.tld +#mail_domain = "domain.tld" + +# This settting will be used as mail from address. +# You need to change this when you activate public_registration. +mail_from = "info@domain.tld" + # This setting will allow all registrants to be auto-approved # as a user. By default, they will be added as a guest and # must be "promoted" by the admin. |