diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-11 15:01:22 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-11 15:01:22 +0100 |
commit | c46d01b5afd2da4779efb2700469037eca6122be (patch) | |
tree | 9db52afe3643c0643414dcf638fa579176b62487 /blabouncer.conf | |
parent | d950304536f870ad989e0049e4e8b4a5a72a9315 (diff) |
Implement a configuration file reader, an example configuration file, and start reading nick/username/realname from it instead of being statically defined.
Diffstat (limited to 'blabouncer.conf')
-rw-r--r-- | blabouncer.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/blabouncer.conf b/blabouncer.conf new file mode 100644 index 0000000..4f569dd --- /dev/null +++ b/blabouncer.conf @@ -0,0 +1,9 @@ +# blabouncer configuration file +# Entries must be in the form: +# option name, space, equals sign, space, double quote, option value, double quote +# e.g. +# realname = "Mr Bla Bouncer" + +nick = "blabounce" +username = "blabounce" +realname = "Mr Bla Bouncer" |