Skip to content

Commit

Permalink
LinkRelay: sync config with Relay
Browse files Browse the repository at this point in the history
Please see TkTech/notifico#79

* > There is a difference between a NOTICE to a channel and a NOTICE to a user, every client should be able to correctly display notices to a channel. ~~ @Dav1dde

* > They should, but they don't. ~~ @Mkaysi

* > That's besides the point. There are a lot of clients that do handle it properly, and if they don't then that's not notifico's fault, that's their own fault. ~~ @sckasturi
  • Loading branch information
Mikaela Suomalainen authored and progval committed Jun 6, 2014
1 parent 7059983 commit 86f84c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LinkRelay/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ def set(self, s):

LinkRelay = conf.registerPlugin('LinkRelay')
conf.registerChannelValue(LinkRelay, 'color',
registry.Boolean(False, _("""Determines whether the bot will color Relayed
registry.Boolean(True, _("""Determines whether the bot will color Relayed
PRIVMSGs so as to make the messages easier to read.""")))
conf.registerChannelValue(LinkRelay, 'topicSync',
registry.Boolean(True, _("""Determines whether the bot will synchronize
topics between networks in the channels it Relays.""")))
conf.registerChannelValue(LinkRelay, 'hostmasks',
registry.Boolean(False, _("""Determines whether the bot will Relay the
registry.Boolean(True, _("""Determines whether the bot will Relay the
hostmask of the person joining or parting the channel when he or she joins
or parts.""")))
conf.registerChannelValue(LinkRelay, 'nicks',
Expand All @@ -82,7 +82,7 @@ def set(self, s):
class ValidNonPrivmsgsHandling(registry.OnlySomeStrings):
validStrings = ('privmsg', 'notice', 'nothing')
conf.registerChannelValue(LinkRelay, 'nonPrivmsgs',
ValidNonPrivmsgsHandling('privmsg', _("""Determines whether the
ValidNonPrivmsgsHandling('notice', _("""Determines whether the
bot will use PRIVMSGs (privmsg), NOTICEs (notice), for non-PRIVMSG Relay
messages (i.e., joins, parts, nicks, quits, modes, etc.), or whether it
won't relay such messages (nothing)""")))
Expand Down

0 comments on commit 86f84c5

Please sign in to comment.