mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 13:19:24 +01:00
Let's make relaying the hostmasks on join optional.
This commit is contained in:
parent
250df8538c
commit
fdc8cdb15c
@ -79,6 +79,10 @@ conf.registerChannelValue(conf.supybot.plugins.Relay, 'color',
|
||||
conf.registerChannelValue(conf.supybot.plugins.Relay, 'topicSync',
|
||||
registry.Boolean(True, """Determines whether the bot will synchronize
|
||||
topics between networks in the channels it relays."""))
|
||||
conf.registerChannelValue(conf.supybot.plugins.Relay, 'hostmasks',
|
||||
registry.Boolean(False, """Determines whether the bot will relay the
|
||||
hostmask of the person joining or parting the channel when he or she joins
|
||||
or parts."""))
|
||||
conf.registerGlobalValue(conf.supybot.plugins.Relay, 'channels',
|
||||
conf.SpaceSeparatedSetOfChannels([], """Determines which channels the bot
|
||||
will relay in."""))
|
||||
@ -496,7 +500,11 @@ class Relay(callbacks.Privmsg):
|
||||
if channel not in self.registryValue('channels'):
|
||||
return
|
||||
network = self._getIrcName(irc)
|
||||
s = '%s (%s) has joined on %s' % (msg.nick, msg.prefix, network)
|
||||
if not self.registryValue('hostmasks', channel):
|
||||
hostmask = ' '
|
||||
else:
|
||||
hostmask = ' (%s) ' % msg.prefix
|
||||
s = '%s%shas joined on %s' % (msg.nick, hostmask, network)
|
||||
m = ircmsgs.privmsg(channel, s)
|
||||
self._sendToOthers(irc, m)
|
||||
|
||||
@ -506,7 +514,11 @@ class Relay(callbacks.Privmsg):
|
||||
if channel not in self.registryValue('channels'):
|
||||
return
|
||||
network = self._getIrcName(irc)
|
||||
s = '%s (%s) has left on %s' % (msg.nick, msg.prefix, network)
|
||||
if not self.registryValue('hostmasks', channel):
|
||||
hostmask = ' '
|
||||
else:
|
||||
hostmask = ' (%s) ' % msg.prefix
|
||||
s = '%s%s has left on %s' % (msg.nick, hostmask, network)
|
||||
m = ircmsgs.privmsg(channel, s)
|
||||
self._sendToOthers(irc, m)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user