/etc/default/yaskkserv is in yaskkserv 1.0.0-1.
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | # Defaults for yaskkserv initscript
# sourced by /etc/init.d/yaskkserv
# installed at /etc/default/yaskkserv by the maintainer scripts
#
# This is a POSIX shell fragment
#
# YASKKSERV_BIN is type of the daemon binary
YASKKSERV_BIN="yaskkserv_hairy"
#YASKKSERV_BIN="yaskkserv_normal"
#YASKKSERV_BIN="yaskkserv_simple"
########## SERVER SETTINGS #################################
# Note: These are default settings (options are not needed).
# After you change these, uncomment one of DAEMON_OPTS
# and restart server.
# for SIMPLE
#SIMPLE_OPTS="--log-level=1 --max-connection=8 --port=1178"
# for NORMAL
#NORMAL_OPTS="${SIMPLE_OPTS}"
# for HAIRY
#HAIRY_OPTS="${NORMAL_OPTS} --server-completion-midasi-length=2048 --server-completion-midasi-string-size=262144 --server-completion-test=1 --google-japanese-input=disable --google-japanese-input-timeout=2.5"
# for HAIRY (usage example to enable google japanese input)
#HAIRY_OPTS="${NORMAL_OPTS} --server-completion-test=1 --google-japanese-input=notfound-input-suggest --google-suggest"
DAEMON_OPTS="${HAIRY_OPTS}"
#DAEMON_OPTS="${NORMAL_OPTS}"
#DAEMON_OPTS="${SIMPLE_OPTS}"
########## DICTIONARY SETTINGS ########################################
## Dictionaries from site local files
# Note: If you want to use your custom dictionary, put full path to them.
#
LOCAL_DICS="\
"
#/path/to/dic \
## Dictionaries from skkdic* packages
# Note: uncomment the dictionary which you want to use and sort their order.
PKG_DICS="/etc/alternatives/SKK-JISYO \
"
#SKK-JISYO.L \
#SKK-JISYO.zipcode \
#SKK-JISYO.station \
#SKK-JISYO.requested \
#SKK-JISYO.pubdic+ \
#SKK-JISYO.propernoun \
#SKK-JISYO.okinawa \
#SKK-JISYO.office.zipcode \
#SKK-JISYO.notes \
#SKK-JISYO.not_wrong \
#SKK-JISYO.noregist \
#SKK-JISYO.mazegaki \
#SKK-JISYO.law \
#SKK-JISYO.jinmei \
#SKK-JISYO.itaiji.JIS3_4 \
#SKK-JISYO.itaiji \
#SKK-JISYO.hukugougo \
#SKK-JISYO.geo \
#SKK-JISYO.fullname \
#SKK-JISYO.china_taiwan \
#SKK-JISYO.assoc \
#SKK-JISYO.S \
#SKK-JISYO.ML \
#SKK-JISYO.M \
#SKK-JISYO.JIS3_4 \
#SKK-JISYO.JIS2004 \
#SKK-JISYO.JIS2 \
DICS="${LOCAL_DICS} ${PKG_DICS}"
|