xref: /plugin/captcha/conf/default.php (revision 563fb5668f85b2cd8c67a6d8af2d4597cbcfdaa7)
142a27035SAndreas Gohr<?php
209b1e97eSAndreas Gohr
342a27035SAndreas Gohr/**
442a27035SAndreas Gohr * Options for the CAPTCHA plugin
542a27035SAndreas Gohr *
642a27035SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
742a27035SAndreas Gohr */
842a27035SAndreas Gohr
942a27035SAndreas Gohr$conf['mode'] = 'js';
10577b4350SAndreas Gohr$conf['forusers'] = 0;
11969b14c4SAndreas Gohr$conf['loginprotect'] = 2;
1228c14643SAndreas Gohr$conf['lettercount'] = 5;
1308f248e4SAndreas Gohr$conf['width'] = 125;
1408f248e4SAndreas Gohr$conf['height'] = 30;
15df8afac4SAndreas Gohr$conf['question'] = 'What\'s the answer to life, the universe and everything?';
16df8afac4SAndreas Gohr$conf['answer'] = '42';
17*563fb566SAndreas Gohr$conf['logindenial'] = 0;
18*563fb566SAndreas Gohr$conf['logindenial_max'] = 3600;
19