Adapting config file

This commit is contained in:
Kyle Stapp 2015-03-27 01:04:10 -04:00
parent d9cc75bb58
commit 2e200b20b6

View File

@ -61,7 +61,7 @@
# Sticking with SQLite is strongly recommended, as it's the most well tested
# and by far the fastest solution.
#
{{ option('dbDriver', '') }}
{{ option('dbDriver', 'QMYSQL') }}
{{ option('dbUsername', '') }}
{{ option('dbPassword', '') }}
{{ option('dbHost', '') }}
@ -155,11 +155,11 @@
# Regular expression used to validate channel names.
# (Note that you have to escape backslashes with \ )
{{ option('channelname', '[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+') }}
{{ option('channelname', '[ \\\\-=\\\\w\\\\#\\\\[\\\\]\\\\{\\\\}\\\\(\\\\)\\\\@\\\\|]+') }}
# Regular expression used to validate user names.
# (Note that you have to escape backslashes with \ )
{{ option('username', '[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+') }}
{{ option('username', '[-=\\\\w\\\\[\\\\]\\\\{\\\\}\\\\(\\\\)\\\\@\\\\|\\\\.]+') }}
# Maximum length of text messages in characters. 0 for no limit.
{{ option('textmessagelength', '5000') }}