blob: cb88eee7184869fbcf4f39865f9e843e42bee53c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class HostPlugin < Plugin
def help(plugin, topic="")
"host <domain> => query nameserver about domain names and zones for <domain>"
end
def privmsg(m)
unless(m.params =~ /^(\w|\.)+$/)
m.reply "incorrect usage: " + help(m.plugin)
return
end
m.reply Utils.safe_exec("host", m.params)
end
end
plugin = HostPlugin.new
plugin.register("host")
|