From 4f86ebf07fe8fbcefbb0d6fd3a6e24c84d57dc7e Mon Sep 17 00:00:00 2001 From: "Gergely Polonkai (W00d5t0ck)" Date: Tue, 22 Feb 2011 15:37:57 +0100 Subject: [PATCH] Updated config.php.dist with new features --- config.php.dist | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.php.dist b/config.php.dist index b32865c..890b9ac 100644 --- a/config.php.dist +++ b/config.php.dist @@ -30,3 +30,12 @@ $smartyCache = $_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . dirname($_SERVE // Encryption algorythm to use. Encryption method must support ECB mode. $encryptionAlg = MCRYPT_RIJNDAEL_256; +// After how much time will the user count as inactive? This should be given as +// an SQLite modifier (see http://www.sqlite.org/lang_datefunc.html for +// details) +$userInactiveTime = '30 days'; + +// After how much time will passwords count as inactive? Same restrictions +// apply as for $userInactiveTime +$passwordInactiveTime = '30 days'; +