diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-17 14:27:43 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-17 14:27:43 +0000 |
commit | 9a3f00aa082c0415161c99eb633c6ed41aa71b4e (patch) | |
tree | ea510157b0f3f692664a9748b9b398d8c0eea6e9 /data | |
parent | 65a0f65101a02248d90d09432bf68f2e48187f07 (diff) |
Nickserv plugin now defaults to very strict permissions. Only owner can make the bot register/identify/whatever now
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/nickserv.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/rbot/plugins/nickserv.rb b/data/rbot/plugins/nickserv.rb index a5280b1f..a630a4be 100644 --- a/data/rbot/plugins/nickserv.rb +++ b/data/rbot/plugins/nickserv.rb @@ -147,3 +147,6 @@ plugin.map 'nickserv register :passwd :email', :action => 'nick_register', :defaults => {:passwd => false, :email => false} plugin.map 'nickserv listnicks', :action => "listnicks" plugin.map 'nickserv identify', :action => "identify" + +plugin.default_auth('*', false) + |