diff options
Diffstat (limited to 'config/config.default.php')
-rw-r--r-- | config/config.default.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/config/config.default.php b/config/config.default.php index 64c43cfa..59f7bbc6 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -8,6 +8,7 @@ $faq_url = "https://events.ccc.de/congress/2013/wiki/Static:Volunteers"; // contact email address, linked on every page $contact_email = "mailto:ticket@c3heaven.de"; +$no_reply_email = "noreply@engelsystem.de"; // Default-Theme auf der Startseite, 1=style1.css usw. $default_theme = 1; @@ -22,12 +23,12 @@ $LETZTES_AUSTRAGEN = 3; // Falls ein Benutzerpasswort in einem anderen Format gespeichert ist, // wird es bei der ersten Benutzung des Klartext-Passworts in das neue Format // konvertiert. -// define('CRYPT_ALG', '$1'); // MD5 -// define('CRYPT_ALG', '$2y$13'); // Blowfish -// define('CRYPT_ALG', '$5$rounds=5000'); // SHA-256 -define('CRYPT_ALG', '$6$rounds=5000'); // SHA-512 +// $crypt_alg = '$1'; // MD5 +// $crypt_alg = '$2y$13'; // Blowfish +// $crypt_alg = '$5$rounds=5000'; // SHA-256 +$crypt_alg = '$6$rounds=5000'; // SHA-512 -define('MIN_PASSWORD_LENGTH', 8); +$min_password_length = 8; // Wenn Engel beim Registrieren oder in ihrem Profil eine T-Shirt Größe angeben sollen, auf true setzen: $enable_tshirt_size = true; @@ -64,6 +65,6 @@ $config = [ 'host' => "localhost", 'user' => "root", 'pw' => "", - 'db' => "engelsystem" + 'db' => "engelsystem" ]; ?> |