Created
February 9, 2011 14:56
-
-
Save avidal/818593 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# basically, when the parser reaches a [network] block, everything up to the next [network] block or EOF are considered options for that network | |
# the [channel] blocks are only required if you want to enable options for a specific channel on the network | |
[core] | |
logging = on | |
logfile = logs/%(network)/%(year)/%(channel)-%(month)-%(day).log | |
nickname = mongbot | |
plugins = * # by default, enable all plugins. any network/channel that has a plugins setting overrides this list | |
[network synirc] | |
servers = irc.synirc.net, irc.synirc.co.uk # example that shows it can take a list of servers | |
password = dongslol | |
channels = #cobol, #goonswithspoons | |
[channel #cobol] | |
plugins = google, brainfuck, weather, cia | |
[channel #goonswithspoons] | |
disabled_plugins = weather, cia | |
[network freenode] | |
servers = irc.freenode.net | |
password = dongsdongslol | |
channels = #mongbot, #ubuntu | |
[channel #ubuntu] | |
logging = off |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment