diff options
author | Luke Bratch <luke@bratch.co.uk> | 2024-11-09 23:50:46 +0000 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2024-11-09 23:50:46 +0000 |
commit | f55160af3f25fff17d3af4dde50a606c2c78f79b (patch) | |
tree | bc0eb6a581a33d3b81d5b1cf1becf40418c8e9ed /blabouncer.conf.example | |
parent | 59addf47eca6a0be54e3b07c4ed2b156a8431376 (diff) |
Make NOTICE alerts about client (dis)connection and authentication events optional.
New configuration options added:
- alertconnect
- alertauthfail
- alertauthsuccess
- alertunautheddisconnect
- alertautheddisconnect
Diffstat (limited to 'blabouncer.conf.example')
-rw-r--r-- | blabouncer.conf.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/blabouncer.conf.example b/blabouncer.conf.example index d77689c..2281806 100644 --- a/blabouncer.conf.example +++ b/blabouncer.conf.example @@ -108,3 +108,18 @@ debug = "2" # Number of debug logs to keep debugkeep = "5" + +# Send NOTICE to all other clients upon new client connections ("1" for yes or "0" for no) +alertconnect = "1" + +# Send NOTICE to all other clients upon clients failing to authenticate ("1" for yes or "0" for no) +alertauthfail = "1" + +# Send NOTICE to all other clients upon clients succesfully authenticating ("1" for yes or "0" for no) +alertauthsuccess = "1" + +# Send NOTICE to all other clients upon unauthenticated client disconnections ("1" for yes or "0" for no) +alertunautheddisconnect = "1" + +# Send NOTICE to all other clients upon authenticated client disconnections ("1" for yes or "0" for no) +alertautheddisconnect = "1" |