diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | data/rbot/plugins/nickserv.rb | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,8 @@ It's a RuntimeError now. * Fix help: this time for real (or so I hope). * New IRC Framework: topic plugin now works correctly. + * New Auth Framework: nickserv plugin now defaults to false for its + auth, so that only owner can do stuff with it 2006-08-12 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> 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) + |