/usr/share/sscd/sscd.conf is in simon-data 0.4.1-0ubuntu9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | ; This is an example config file and displays the built-in defaults
; sscd will look for this file in:
; Linux:
; /usr/share/sscd/sscd.conf
; Windows:
; <sscd installation path>\sscd.conf
[General]
; Change this to use a different database; Because sscd uses db-specific
; commands in places, only QMYSQL is supported at the moment.
; Support for other DBMS can be added extremely easily, tough so please
; feel free to request support through kde-accessibility@kde.org
DatabaseType=QMYSQL
; The host of the DBMS
DatabaseHost=127.0.0.1
; The port of the DBMS; 3306 is the default port of MySQL
DatabasePort=3306
; The database to use; Make sure that you run the supplied create script
; before you use sscd
DatabaseName=ssc
; The username to use when connecting to the DBMS
DatabaseUser=sscuser
; Database password. The default one will obviously not work in most cases
DatabasePassword=CHANGE ME NOW
; Database options. Refer to Qts documentation of QSqlDatabase for details
DatabaseOptions=MYSQL_OPT_RECONNECT=1
; The port the server will listen to; Default: 4440
Port=4440
; Bind the server to a specific client IP; If this is true, the server
; will ignore requests from all but the BoundHost (see below)
Bind=false
; IP of the bound host (if Bind is active)
BindHost=127.0.0.1
|