summaryrefslogtreecommitdiff
path: root/config.inc.php.example
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-01-11 08:58:28 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-01-11 08:58:28 +0000
commit5dc06c320a9d026a291709d07a0fba8fa9cd0600 (patch)
tree027766082289e7f3cac87e5c3674e81d85a54bac /config.inc.php.example
parent9cbba1119c8817ee5b41a8006042daf5b6c49df1 (diff)
downloadsemanticscuttle-5dc06c320a9d026a291709d07a0fba8fa9cd0600.tar.gz
semanticscuttle-5dc06c320a9d026a291709d07a0fba8fa9cd0600.tar.bz2
New feature: add antispam question to register (configurable in config file)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@8 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'config.inc.php.example')
-rw-r--r--config.inc.php.example6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.inc.php.example b/config.inc.php.example
index 648f03d..ce7bcde 100644
--- a/config.inc.php.example
+++ b/config.inc.php.example
@@ -84,6 +84,9 @@ $dbname = 'scuttle';
# filetypes : An array of bookmark extensions that Scuttle should
# add system tags for.
# reservedusers : An array of usernames that cannot be registered
+#
+# antispamQuestion: A question to avoid spam
+# antispamAnswer: The answer to the question (users have to put exactly the same answer)
######################################################################
$sitename = 'SemanticScuttle';
@@ -118,5 +121,8 @@ $filetypes = array(
);
$reservedusers = array('all', 'watchlist');
+$antispamQuestion = 'Put here the answer to 1 + 2 + 3';
+$antispamAnswer = '6';
+
include_once('debug.inc.php');
?>