;;;;;;;;;;;;;;;;;;;;
; About daemon.ini ;
;;;;;;;;;;;;;;;;;;;;
; This file controls all core aspects of TS3PHPBot.
;
; The syntax of the file is extremely simple. Whitespace and Lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
;
; Directives are specified using the following syntax:
; directive = value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
;
; The value can be a string, a number, a PHP constant (e.g. CET),
; or a quoted string ("foo").
; String values are *case sensitive* - foo=bar is different from foo=BAR.
;
; Boolean flags can be turned on using the value 1.
; They can be turned off using the value 0.
;
; An empty string can be denoted by simply write a whitespace after the equal sign
;
; If you are using whitespaces in an directive value you must encapsulate the value with the " (double-qoutes) char
;;;;;;;;;;;;;;;;;
; Core settings ;
;;;;;;;;;;;;;;;;;
[CONFIG]
; botLangauge is a string-field. You can set it to one of the following strings to get desired
; bot language
; gb - english
; de - german
;
; default: gb
botLangauge="de"
; logVerbosity is a string-field. You can set it to one of the following strings to get desired
; error reporting level
; debug - All errors and warnings (DO NOT USE FOR PRODUCTIVE SERVERS)
; info - Run-time infos (these are informations which always result form a bot action)
; notice - Run-time notices (e.g. legal disclaimer)
; warning - Run-time warnings (non-fatal errors, e.g. feature config file errors)
; error - Fatal run-time errors (e.g. PHP errors)
; emergency - Fatal run-time errors that takes immediate user action (e.g. missing requirements)
;
; default: info
logVerbosity="debug"
; Unix user the bot runs under
;
; default: daemon
user="daemon"
; Unix group the bot runs under
;
; default: daemon
group="daemon"
; PID file directory
;
; default: /opt/ts3phpbot/pids
pidfilePath="/home/user-webi/ts3phpbot/pids"
; log file directory
;
; default: /opt/ts3phpbot/logs
logfilePath="/home/user-webi/ts3phpbot/logs"
; Defines the default timezone used by TS3PHPBot
; default: UTC
timezone="UTC"
;;;;;;;;;;;;;;;;;;;;;;;;;
; TeamSpeak3 connection ;
;;;;;;;;;;;;;;;;;;;;;;;;;
[CONNECTION]
; Defines the TeamSpeak3 host ip TS3PHPBot will connect to
; default: 127.0.0.1
hostIP="62.75.185.166"
; Defines the TeamSpeak3 query port
; default: 10011
queryPort=10011
; Defines the TeamSpeak3 user TS3PHPBot will connect with
; NOTE: The user must be member of server group Admin Server Query!
; default: serveradmin
user="xxxxxxxx"
; Defines the password for the TeamSpeak3 user
password="xxxxxxx"
;
;
; default: 1
BotVisibleToAllUsers=1
;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Restrict reserved slots ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;
[RESERVED-SLOTS]
; enable / disable the reserved slot restriction
; Default: 0
enabled=1
; Defines the min. reserverd slots available for all TeamSpeak3 server
; Default: 2
minReserverdSlots=2
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;
; Prevent S to increase min client identity security level over the limit ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;
[IDENTITY-SECURITY-LEVEL]
; enable / disable the restriction of the security level
; Default: 0
enabled=0
; Defines the min. required client indentity security level required to connect
; Default: 8
minClientIdentitySecurityLevel=8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;
; Prevent S to increase the virtual server max slots over the limit ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;
[MAX-VIRTUALSERVER-SLOTS]
; enable / disable the restriction of max_virtualserver_slots
; Default: 0
enabled=1
; Defines the max. numbers of slots a virtual TeamSpeak3 server may have
; Default: 32
maxSlots=100