diff options
| author | Florian Westphal <fw@strlen.de> | 2009-03-07 00:30:11 +0100 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2009-03-07 00:30:11 +0100 |
| commit | ea35ba74b68d8d6906b6cd2d1ad85a348c647beb (patch) | |
| tree | a22882cf4839aacfb58201633ca33a00095278b2 /src | |
| parent | 2d4361d088f75bdcbc0deced824e2b3aafbb8fa0 (diff) | |
| download | ngircd-ea35ba74b68d8d6906b6cd2d1ad85a348c647beb.tar.gz ngircd-ea35ba74b68d8d6906b6cd2d1ad85a348c647beb.zip | |
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').
Diffstat (limited to 'src')
| -rw-r--r-- | src/testsuite/ngircd-test1.conf | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/testsuite/ngircd-test1.conf b/src/testsuite/ngircd-test1.conf index a12873fb..51a57fb3 100644 --- a/src/testsuite/ngircd-test1.conf +++ b/src/testsuite/ngircd-test1.conf @@ -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- |