blob: 5633b7a71aa44fdb585c6fb9ec377d3f1305e5e0 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import base64
from src import EventManager, ModuleManager, utils
@utils.export("serverset", {"setting": "nickserv-password",
"help": "Set the nickserv password for this server"})
class Module(ModuleManager.BaseModule):
@utils.hook("received.numeric.001", priority=EventManager.PRIORITY_URGENT)
def on_connect(self, event):
nickserv_password = event["server"].get_setting("nickserv-password")
if nickserv_password:
event["server"].attempted_auth = True
event["server"].send_message("nickserv",
"identify %s" % nickserv_password)
|