Update of /cvsroot/srvx/services
In directory usw-pr-cvs1:/tmp/cvs-serv14795
Modified Files:
srvx.conf.example
Log Message:
add more nick ownership enforcement options
Index: srvx.conf.example
===================================================================
RCS file: /cvsroot/srvx/services/srvx.conf.example,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** srvx.conf.example 5 Sep 2002 14:58:53 -0000 1.26
--- srvx.conf.example 11 Sep 2002 02:01:00 -0000 1.27
***************
*** 40,49 ****
// one account may only have this many nicks
"nicks_per_account" "4";
- // should nick ownership be disabled?
- "disable_nicks" "0";
- // should we allow ghost kills?
- "enable_ghost" "0";
- // do we warn when somebody uses to a registered nick?
- "warn_nick_owned" "0";
// this can be a file that contains easily guessed passwords
"dict_file" "/usr/share/dict/words";
--- 40,43 ----
***************
*** 60,63 ****
--- 54,74 ----
"valid_account_regex" "^[][_a-z^`'{}|-][][_a-z0-9^`'{}|-]*$";
"valid_nick_regex" "^[-_a-z][-_a-z0-9]*$";
+
+ // should nick ownership be disabled?
+ "disable_nicks" "0";
+ // what to do when someone uses the NickServ "reclaim" command?
+ // this can be one of "none", "warn", "svsnick", or "kill", but
+ // stock ircu does not support svsnick -- you need Bahamut or a
+ // patch for ircu. no, don't ask srvx developers for the patch.
+ "reclaim_action" "none";
+ // send a warning when someone uses a registered nick?
+ "warn_nick_owned" "0";
+ // what (else) to do when someone uses a registered nick?
+ // this can be anything "reclaim_action" can be, but it makes
+ // more sense to use the "warn_nick_owned" instead of "warn".
+ "auto_reclaim_action" "none";
+ // and how long to wait before doing it?
+ // this is ignored if "auto_reclaim_action" is "none".
+ "auto_reclaim_delay" "0";
// access control for who can change account flags
|