-
Notifications
You must be signed in to change notification settings - Fork 4
/
DorpsGek.conf
1829 lines (1613 loc) · 49.2 KB
/
DorpsGek.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
######
# Although it is technically possible to do so, we do not recommend that
# you edit this file with a text editor.
# Whenever possible, do it on IRC using the Config plugin, which
# checks values you set are valid before writing them to the
# configuration.
# Moreover, if you edit this file while the bot is running, your
# changes may be lost.
######
###
# Determines whether the bot will defend itself against command-
# flooding.
#
# Default value: True
###
supybot.abuse.flood.command: True
###
# Determines whether the bot will defend itself against invalid command-
# flooding.
#
# Default value: True
###
supybot.abuse.flood.command.invalid: True
###
# Determines how many invalid commands users are allowed per minute. If
# a user sends more than this many invalid commands in any 60 second
# period, they will be ignored for
# supybot.abuse.flood.command.invalid.punishment seconds. Typically,
# this value is lower than supybot.abuse.flood.command.maximum, since
# it's far less likely (and far more annoying) for users to flood with
# invalid commands than for them to flood with valid commands.
#
# Default value: 5
###
supybot.abuse.flood.command.invalid.maximum: 5
###
# Determines whether the bot will notify people that they're being
# ignored for invalid command flooding.
#
# Default value: True
###
supybot.abuse.flood.command.invalid.notify: True
###
# Determines how many seconds the bot will ignore users who flood it
# with invalid commands. Typically, this value is higher than
# supybot.abuse.flood.command.punishment, since it's far less likely
# (and far more annoying) for users to flood with invalid commands than
# for them to flood with valid commands.
#
# Default value: 600
###
supybot.abuse.flood.command.invalid.punishment: 600
###
# Determines how many commands users are allowed per minute. If a user
# sends more than this many commands in any 60 second period, they will
# be ignored for supybot.abuse.flood.command.punishment seconds.
#
# Default value: 12
###
supybot.abuse.flood.command.maximum: 12
###
# Determines whether the bot will notify people that they're being
# ignored for command flooding.
#
# Default value: True
###
supybot.abuse.flood.command.notify: True
###
# Determines how many seconds the bot will ignore users who flood it
# with commands.
#
# Default value: 300
###
supybot.abuse.flood.command.punishment: 300
###
# Determines the interval used for the history storage.
#
# Default value: 60
###
supybot.abuse.flood.interval: 60
###
# Determines whether the bot will always join a channel when it's
# invited. If this value is False, the bot will only join a channel if
# the user inviting it has the 'admin' capability (or if it's explicitly
# told to join the channel using the Admin.join command).
#
# Default value: False
###
supybot.alwaysJoinOnInvite: False
###
# These are the capabilities that are given to everyone by default. If
# they are normal capabilities, then the user will have to have the
# appropriate anti-capability if you want to override these
# capabilities; if they are anti-capabilities, then the user will have
# to have the actual capability to override these capabilities. See
# docs/CAPABILITIES if you don't understand why these default to what
# they do.
#
# Default value: -aka.set -aka.add -scheduler.repeat -owner -aka.remove -admin -scheduler.remove -scheduler.add -alias.remove -alias.add -trusted
###
supybot.capabilities: -aka.set -aka.add -scheduler.repeat -aka.remove -owner -admin -scheduler.add -alias.remove -trusted -alias.add -scheduler.remove
###
# Determines whether the bot by default will allow users to have a
# capability. If this is disabled, a user must explicitly have the
# capability for whatever command they wish to run. To set this in a
# channel-specific way, use the 'channel capability setdefault' command.
#
# Default value: True
###
supybot.capabilities.default: True
###
# Determines what capabilities the bot will never tell to a non-admin
# whether or not a user has them.
#
# Default value:
###
#supybot.capabilities.private:
###
# These are the capabilities that are given to every authenticated user
# by default. You probably want to use supybot.capabilities instead, to
# give these capabilities both to registered and non-registered users.
#
# Default value:
###
#supybot.capabilities.registeredUsers:
###
# Allows this bot's owner user to use commands that grants them shell
# access. This config variable exists in case you want to prevent MITM
# from the IRC network itself (vulnerable IRCd or IRCops) from gaining
# shell access to the bot's server by impersonating the owner. Setting
# this to False also disables plugins and commands that can be used to
# indirectly gain shell access.
#
# Default value: True
###
supybot.commands.allowShell: False
###
# Determines what commands have default plugins set, and which plugins
# are set to be the default for each of those commands.
###
supybot.commands.defaultPlugins.reload: Owner
supybot.commands.defaultPlugins.op: Channel
###
# Determines what plugins automatically get precedence over all other
# plugins when selecting a default plugin for a command. By default,
# this includes the standard loaded plugins. You probably shouldn't
# change this if you don't know what you're doing; if you do know what
# you're doing, then also know that this set is case-sensitive.
#
# Default value: Misc Channel User Owner Admin Config
###
supybot.commands.defaultPlugins.importantPlugins: Owner
###
# Determines what commands are currently disabled. Such commands will
# not appear in command lists, etc. They will appear not even to exist.
#
# Default value:
###
#supybot.commands.disabled:
###
# Determines whether the bot will allow nested commands, which rule. You
# definitely should keep this on.
#
# Default value: True
###
supybot.commands.nested: True
###
# Supybot allows you to specify what brackets are used for your nested
# commands. Valid sets of brackets include [], <>, {}, and (). [] has
# strong historical motivation, but <> or () might be slightly superior
# because they cannot occur in a nick. If this string is empty, nested
# commands will not be allowed in this channel.
#
# Default value: []
###
supybot.commands.nested.brackets: []
###
# Determines what the maximum number of nested commands will be; users
# will receive an error if they attempt commands more nested than this.
#
# Default value: 10
###
supybot.commands.nested.maximum: 10
###
# Supybot allows nested commands. Enabling this option will allow nested
# commands with a syntax similar to UNIX pipes, for example: 'bot: foo |
# bar'.
#
# Default value: False
###
supybot.commands.nested.pipeSyntax: False
###
# Determines what characters are valid for quoting arguments to commands
# in order to prevent them from being tokenized.
#
# Default value: "
###
supybot.commands.quotes: "
###
# Determines what databases are available for use. If this value is not
# configured (that is, if its value is empty) then sane defaults will be
# provided.
#
# Default value: anydbm dbm cdb flat pickle
###
#supybot.databases:
###
# Determines what filename will be used for the channels database. This
# file will go into the directory specified by the
# supybot.directories.conf variable.
#
# Default value: channels.conf
###
supybot.databases.channels.filename: channels.conf
###
# Determines what filename will be used for the ignores database. This
# file will go into the directory specified by the
# supybot.directories.conf variable.
#
# Default value: ignores.conf
###
supybot.databases.ignores.filename: ignores.conf
###
# Determines what filename will be used for the networks database. This
# file will go into the directory specified by the
# supybot.directories.conf variable.
#
# Default value: networks.conf
###
supybot.databases.networks.filename: networks.conf
###
# Determines whether database-based plugins that can be channel-specific
# will be so. This can be overridden by individual channels. Do note
# that the bot needs to be restarted immediately after changing this
# variable or your db plugins may not work for your channel; also note
# that you may wish to set
# supybot.databases.plugins.channelSpecific.link appropriately if you
# wish to share a certain channel's databases globally.
#
# Default value: True
###
supybot.databases.plugins.channelSpecific: False
###
# Determines what channel global (non-channel-specific) databases will
# be considered a part of. This is helpful if you've been running
# channel-specific for awhile and want to turn the databases for your
# primary channel into global databases. If
# supybot.databases.plugins.channelSpecific.link.allow prevents linking,
# the current channel will be used. Do note that the bot needs to be
# restarted immediately after changing this variable or your db plugins
# may not work for your channel.
#
# Default value: #
###
supybot.databases.plugins.channelSpecific.link: #
###
# Determines whether another channel's global (non-channel-specific)
# databases will be allowed to link to this channel's databases. Do note
# that the bot needs to be restarted immediately after changing this
# variable or your db plugins may not work for your channel.
#
# Default value: True
###
supybot.databases.plugins.channelSpecific.link.allow: True
###
# Determines whether the bot will require user registration to use 'add'
# commands in database-based Supybot plugins.
#
# Default value: True
###
supybot.databases.plugins.requireRegistration: True
###
# Determines whether CDB databases will be allowed as a database
# implementation.
#
# Default value: True
###
supybot.databases.types.cdb: True
###
# Determines how often CDB databases will have their modifications
# flushed to disk. When the number of modified records is greater than
# this fraction of the total number of records, the database will be
# entirely flushed to disk.
#
# Default value: 0.5
###
supybot.databases.types.cdb.maximumModifications: 0.5
###
# Determines whether the bot will allow users to unregister their users.
# This can wreak havoc with already-existing databases, so by default we
# don't allow it. Enable this at your own risk. (Do also note that this
# does not prevent the owner of the bot from using the unregister
# command.)
#
# Default value: False
###
supybot.databases.users.allowUnregistration: False
###
# Determines what filename will be used for the users database. This
# file will go into the directory specified by the
# supybot.directories.conf variable.
#
# Default value: users.conf
###
supybot.databases.users.filename: users.conf
###
# Determines how long it takes identification to time out. If the value
# is less than or equal to zero, identification never times out.
#
# Default value: 0
###
supybot.databases.users.timeoutIdentification: 0
###
# Determines whether the bot will automatically flush all flushers
# *very* often. Useful for debugging when you don't know what's breaking
# or when, but think that it might be logged.
#
# Default value: False
###
supybot.debug.flushVeryOften: False
###
# Determines whether the bot will automatically thread all commands.
#
# Default value: False
###
supybot.debug.threadAllCommands: False
###
# Determines whether the bot will ignore unidentified users by default.
# Of course, that'll make it particularly hard for those users to
# register or identify with the bot without adding their hostmasks, but
# that's your problem to solve.
#
# Default value: False
###
supybot.defaultIgnore: False
###
# Determines what the default timeout for socket objects will be. This
# means that *all* sockets will timeout when this many seconds has gone
# by (unless otherwise modified by the author of the code that uses the
# sockets).
#
# Default value: 10
###
supybot.defaultSocketTimeout: 10
###
# Determines what directory backup data is put into. Set it to /dev/null
# to disable backup (it is a special value, so it also works on Windows
# and systems without /dev/null).
#
# Default value: backup
###
supybot.directories.backup: /dev/null
###
# Determines what directory configuration data is put into.
#
# Default value: conf
###
supybot.directories.conf: conf
###
# Determines what directory data is put into.
#
# Default value: data
###
supybot.directories.data: data
###
# Determines what directory temporary files are put into.
#
# Default value: tmp
###
supybot.directories.data.tmp: data/tmp
###
# Determines what directory files of the web server (templates, custom
# images, ...) are put into.
#
# Default value: web
###
supybot.directories.data.web: data/web
###
# Determines what directory the bot will store its logfiles in.
#
# Default value: logs
###
supybot.directories.log: logs
###
# Determines what directories the bot will look for plugins in. Accepts
# a comma-separated list of strings. This means that to add another
# directory, you can nest the former value and add a new one. E.g. you
# can say: bot: 'config supybot.directories.plugins [config
# supybot.directories.plugins], newPluginDirectory'.
#
# Default value:
###
supybot.directories.plugins: plugins
###
# Determines the maximum time the bot will wait before attempting to
# reconnect to an IRC server. The bot may, of course, reconnect earlier
# if possible.
#
# Default value: 300.0
###
supybot.drivers.maxReconnectWait: 300.0
###
# Determines what driver module the bot will use. Current, the only (and
# default) driver is Socket.
#
# Default value: default
###
supybot.drivers.module: default
###
# Determines the default length of time a driver should block waiting
# for input.
#
# Default value: 1.0
###
supybot.drivers.poll: 1.0
###
# A string that is the external IP of the bot. If this is the empty
# string, the bot will attempt to find out its IP dynamically (though
# sometimes that doesn't work, hence this variable). This variable is
# not used by Limnoria and its built-in plugins: see
# supybot.protocols.irc.vhost / supybot.protocols.irc.vhost6 to set the
# IRC bind host, and supybot.servers.http.hosts4 /
# supybot.servers.http.hosts6 to set the HTTP server bind host.
#
# Default value:
###
#supybot.externalIP:
###
# Determines whether the bot will periodically flush data and
# configuration files to disk. Generally, the only time you'll want to
# set this to False is when you want to modify those configuration files
# by hand and don't want the bot to flush its current version over your
# modifications. Do note that if you change this to False inside the
# bot, your changes won't be flushed. To make this change permanent, you
# must edit the registry yourself.
#
# Default value: True
###
supybot.flush: False
###
# Determines whether the bot will unidentify someone when that person
# changes their nick. Setting this to True will cause the bot to track
# such changes. It defaults to False for a little greater security.
#
# Default value: False
###
supybot.followIdentificationThroughNickChanges: False
###
# Determines the bot's ident string, if the server doesn't provide one
# by default.
#
# Default value: limnoria
###
supybot.ident: {{Username}}
###
# Determines the bot's default language if translations exist. Currently
# supported are 'de', 'en', 'es', 'fi', 'fr' and 'it'.
#
# Default value: en
###
supybot.language: en
###
# Determines what the bot's logging format will be. The relevant
# documentation on the available formattings is Python's documentation
# on its logging module.
#
# Default value: %(levelname)s %(asctime)s %(name)s %(message)s
###
supybot.log.format: %(asctime)s %(levelname)-8s %(message)s
###
# Determines what the minimum priority level logged to file will be. Do
# note that this value does not affect the level logged to stdout; for
# that, you should set the value of supybot.log.stdout.level. Valid
# values are DEBUG, INFO, WARNING, ERROR, and CRITICAL, in order of
# increasing priority.
#
# Default value: INFO
###
supybot.log.level: INFO
###
# Determines what the bot's logging format will be. The relevant
# documentation on the available formattings is Python's documentation
# on its logging module.
#
# Default value: %(levelname)s %(asctime)s %(message)s
###
supybot.log.plugins.format: %(asctime)s %(levelname)-8s %(message)s
###
# Determines whether the bot will separate plugin logs into their own
# individual logfiles.
#
# Default value: False
###
supybot.log.plugins.individualLogfiles: False
###
# Determines whether the bot will log to stdout.
#
# Default value: True
###
supybot.log.stdout: True
###
# Determines whether the bot's logs to stdout (if enabled) will be
# colorized with ANSI color.
#
# Default value: False
###
supybot.log.stdout.colorized: True
###
# Determines what the bot's logging format will be. The relevant
# documentation on the available formattings is Python's documentation
# on its logging module.
#
# Default value: %(levelname)s %(asctime)s %(message)s
###
supybot.log.stdout.format: %(asctime)s %(levelname)-8s %(message)s
###
# Determines what the minimum priority level logged will be. Valid
# values are DEBUG, INFO, WARNING, ERROR, and CRITICAL, in order of
# increasing priority.
#
# Default value: INFO
###
supybot.log.stdout.level: INFO
###
# Determines whether the bot will wrap its logs when they're output to
# stdout.
#
# Default value: False
###
supybot.log.stdout.wrap: False
###
# Determines the format string for timestamps in logfiles. Refer to the
# Python documentation for the time module to see what formats are
# accepted. If you set this variable to the empty string, times will be
# logged in a simple seconds-since-epoch format.
#
# Default value: %Y-%m-%dT%H:%M:%S
###
supybot.log.timestampFormat: %Y-%m-%dT%H:%M:%S
###
# Determines what networks the bot will connect to.
#
# Default value:
###
supybot.networks: oftc
###
# Determines what certificate file (if any) the bot will use to connect
# with SSL sockets to oftc.
#
# Default value:
###
#supybot.networks.oftc.certfile:
###
# Space-separated list of channels the bot will join only on oftc.
#
# Default value:
###
supybot.networks.oftc.channels: {{Channels}}
###
# Determines what key (if any) will be used to join the channel.
#
# Default value:
###
#supybot.networks.oftc.channels.key:
###
# Determines the bot's ident string, if the server doesn't provide one
# by default. If empty, defaults to supybot.ident.
#
# Default value:
###
#supybot.networks.oftc.ident:
###
# Determines what nick the bot will use on this network. If empty,
# defaults to supybot.nick.
#
# Default value:
###
#supybot.networks.oftc.nick:
###
# Determines what password will be used on oftc. Yes, we know that
# technically passwords are server-specific and not network-specific,
# but this is the best we can do right now.
#
# Default value:
###
#supybot.networks.oftc.password:
###
# Deprecated config value, keep it to False.
#
# Default value: False
###
supybot.networks.oftc.requireStarttls: False
###
# Determines what SASL ECDSA key (if any) will be used on oftc. The
# public key must be registered with NickServ for SASL ECDSA-
# NIST256P-CHALLENGE to work.
#
# Default value:
###
#supybot.networks.oftc.sasl.ecdsa_key:
###
# Determines what SASL mechanisms will be tried and in which order.
#
# Default value: ecdsa-nist256p-challenge external plain
###
supybot.networks.oftc.sasl.mechanisms: ecdsa-nist256p-challenge external plain
###
# Determines what SASL password will be used on oftc.
#
# Default value:
###
#supybot.networks.oftc.sasl.password:
###
# Determines whether the bot will abort the connection if the none of
# the enabled SASL mechanism succeeded.
#
# Default value: False
###
supybot.networks.oftc.sasl.required: False
###
# Determines what SASL username will be used on oftc. This should be the
# bot's account name.
#
# Default value:
###
#supybot.networks.oftc.sasl.username:
###
# Space-separated list of servers the bot will connect to for oftc. Each
# will be tried in order, wrapping back to the first when the cycle is
# completed.
#
# Default value:
###
supybot.networks.oftc.servers: irc.oftc.net:6697
###
# If not empty, determines the hostname of the socks proxy that will be
# used to connect to this network.
#
# Default value:
###
#supybot.networks.oftc.socksproxy:
###
# Determines whether the bot will attempt to connect with SSL sockets to
# oftc.
#
# Default value: True
###
supybot.networks.oftc.ssl: True
###
# A certificate that is trusted to verify certificates of this network
# (aka. Certificate Authority).
#
# Default value:
###
#supybot.networks.oftc.ssl.authorityCertificate:
###
# Space-separated list of fingerprints of trusted certificates for this
# network. Supported hash algorithms are: md5, sha1, sha224, sha256,
# sha384, and sha512. If non-empty, Certification Authority signatures
# will not be used to verify certificates.
#
# Default value:
###
#supybot.networks.oftc.ssl.serverFingerprints:
###
# Determines what user modes the bot will request from the server when
# it first connects. If empty, defaults to supybot.protocols.irc.umodes
#
# Default value:
###
#supybot.networks.oftc.umodes:
###
# Determines the real name which the bot sends to the server. If empty,
# defaults to supybot.user
#
# Default value:
###
#supybot.networks.oftc.user:
###
# Determines the bot's default nick.
#
# Default value: supybot
###
supybot.nick: {{Username}}
###
# Determines what alternative nicks will be used if the primary nick
# (supybot.nick) isn't available. A %s in this nick is replaced by the
# value of supybot.nick when used. If no alternates are given, or if all
# are used, the supybot.nick will be perturbed appropriately until an
# unused nick is found.
#
# Default value: %s` %s_
###
supybot.nick.alternates: %s` %s_
###
# Determines what file the bot should write its PID (Process ID) to, so
# you can kill it more easily. If it's left unset (as is the default)
# then no PID file will be written. A restart is required for changes to
# this variable to take effect.
#
# Default value:
###
#supybot.pidFile:
###
# List of all plugins that were ever loaded. Currently has no effect
# whatsoever. You probably want to use the 'load' or 'unload' commands,
# or edit supybot.plugins.<pluginname> instead of this.
#
# Default value:
###
supybot.plugins: Aaa_HideCommands OpenTTD GitHub Channel SimpleUser Math Topic Services ChannelLogger WebLogsS3
###
# Determines whether this plugin is loaded by default.
###
supybot.plugins.ChannelLogger: True
###
# Determines whether the bot will partition its channel logs into
# separate directories based on different criteria.
#
# Default value: True
###
supybot.plugins.ChannelLogger.directories: True
###
# Determines whether the bot will use a channel directory if using
# directories.
#
# Default value: True
###
supybot.plugins.ChannelLogger.directories.channel: True
###
# Determines whether the bot will use a network directory if using
# directories.
#
# Default value: True
###
supybot.plugins.ChannelLogger.directories.network: True
###
# Determines whether the bot will use a timestamp (determined by
# supybot.plugins.ChannelLogger.directories.timestamp.format) if using
# directories.
#
# Default value: False
###
supybot.plugins.ChannelLogger.directories.timestamp: True
###
# Determines what timestamp format will be used in the directory
# structure for channel logs if
# supybot.plugins.ChannelLogger.directories.timestamp is True.
#
# Default value: %B
###
supybot.plugins.ChannelLogger.directories.timestamp.format: %Y/%m
###
# Determines whether logging is enabled.
#
# Default value: True
###
supybot.plugins.ChannelLogger.enable: True
###
# Determines how to represent the timestamp used for the filename in
# rotated logs. When this timestamp changes, the old logfiles will be
# closed and a new one started. The format characters for the timestamp
# are in the time.strftime docs at python.org. In order for your logs to
# be rotated, you'll also have to enable
# supybot.plugins.ChannelLogger.rotateLogs.
#
# Default value: %Y-%m-%d
###
supybot.plugins.ChannelLogger.filenameTimestamp: %Y%m%d
###
# Determines whether channel logfiles will be flushed anytime they're
# written to, rather than being buffered by the operating system.
#
# Default value: True
###
supybot.plugins.ChannelLogger.flushImmediately: True
###
# Determines what string a message should be prefixed with in order not
# to be logged. If you don't want any such prefix, just set it to the
# empty string.
#
# Default value: [nolog]
###
supybot.plugins.ChannelLogger.noLogPrefix: [nolog]
###
# Determines whether this plugin is publicly visible.
#
# Default value: True
###
supybot.plugins.ChannelLogger.public: True
###
# Determines whether the bot will rewrite outgoing relayed messages (eg.
# from the Relay plugin) to use the original nick instead of the bot's
# nick.
#
# Default value: False
###
supybot.plugins.ChannelLogger.rewriteRelayed: False
###
# Determines whether the bot will automatically rotate the logs for this
# channel. The bot will rotate logs when the timestamp for the log
# changes. The timestamp is set according to the 'filenameTimestamp'
# configuration variable.
#
# Default value: False
###
supybot.plugins.ChannelLogger.rotateLogs: True
###
# Determines wether joins and parts are logged
#
# Default value: True
###
supybot.plugins.ChannelLogger.showJoinParts: True
###
# Determines whether formatting characters (such as bolding, color,
# etc.) are removed when writing the logs to disk.
#
# Default value: True
###
supybot.plugins.ChannelLogger.stripFormatting: True
###
# Determines whether the logs for this channel are timestamped with the
# timestamp in supybot.log.timestampFormat.
#
# Default value: True
###
supybot.plugins.ChannelLogger.timestamp: True
###
# Determines whether this plugin is loaded by default.
###
supybot.plugins.Channel: True
###
# Determines whether the bot will always try to rejoin a channel
# whenever it's kicked from the channel.
#
# Default value: True
###
supybot.plugins.Channel.alwaysRejoin: True
###
# Determines whether the output of 'nicks' will be sent in private. This
# prevents mass-highlights of a channel's users, accidental or on
# purpose.
#
# Default value: True
###
supybot.plugins.Channel.nicksInPrivate: True
###
# Determines what part message should be used by default. If the part
# command is called without a part message, this will be used. If this
# value is empty, then no part message will be used (they are optional
# in the IRC protocol). The standard substitutions ($version, $nick,
# etc.) are all handled appropriately.
#
# Default value: Limnoria $version
###
supybot.plugins.Channel.partMsg: Limnoria $version
###
# Determines whether this plugin is publicly visible.
#
# Default value: True
###
supybot.plugins.Channel.public: True
###
# Determines how many seconds the bot will wait before rejoining a
# channel if kicked and supybot.plugins.Channel.alwaysRejoin is on.
#
# Default value: 0
###
supybot.plugins.Channel.rejoinDelay: 0
###
# Determines whether this plugin is loaded by default.
###
supybot.plugins.SimpleUser: True
###
# Determines whether this plugin is publicly visible.
#
# Default value: True
###
supybot.plugins.SimpleUser.public: True
###
# Determines whether this plugin is loaded by default.
###
supybot.plugins.Math: True