testsuite: add more predefined channels to server config

make sure it creates & and +, and accepts channel names without
a special character (ngircd should treat
'Name = chan' as 'Name = #chan').
This commit is contained in:
Florian Westphal 2009-03-07 00:30:11 +01:00
parent 2d4361d088
commit ea35ba74b6
1 changed files with 10 additions and 2 deletions

View File

@ -22,7 +22,8 @@
PeerPassword = pwd2
[Channel]
Name = #InviteChannel
# This name should be accepted as '#InviteChannel' by ngircd.
Name = InviteChannel
Modes = i
[Channel]
@ -35,10 +36,17 @@
Name = #TopicChannel
Modes = t
Topic = the topic
[Channel]
Name = #SecretChannel
Modes = s
Topic = A secret Channel
[Channel]
Name = &LocalChannel
Topic = A local Channel
[Channel]
Name = +ModelessChannel
Topic = A modeless Channel
# -eof-