/usr/share/hylafax/hylafax.default-maintainer is in hylafax-server 3:6.0.6-5.
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 | # default settings for hylafax server
# try to check for the correct USE_FAXGETTY value
if grep -E '^[^#]*:respawn:/usr/sbin/fax(getty|modem).*$' /etc/inittab >/dev/null 2>&1 || grep -E '^exec[ \t]*/usr/sbin/fax(getty|modem)' /etc/init/*.conf >/dev/null 2>&1
then
USE_FAXGETTY=init
else
USE_FAXGETTY=yes
fi
# Arguments for faxgetty command. At least -D should be specified
# as explained in debian bug #462459.
FAXGETTYARGS="-D"
# In a send only installation you may want to use faxgetty
# or faxmodem on lines already configured with faxaddmodem.
# faxgetty is the new default, faxmodem the old one.
# For a better understanding of the difference between faxmodem
# and faxgetty, see http://www.hylafax.org/archive/1999-09/msg00043.php
#
# In a send/receive installation you must use faxgetty.
#
# To use faxmodem change the following variable value to "no".
#
# You may also prefer to run faxmodem/faxgetty via inittab instead of
# running it here from a script. In this case set its value as
# "init".
# USE_FAXGETTY=yes
#
# Uncomment this line once hylafax has been fully configured and/or
# you want to enable the server.
#
# RUN_HYLAFAX=1
#
# If you need to bind hylafax to one address only, just uncomment
# this variable and change the value using your preferred IP.
#
# BINDTO="-l 127.0.0.1"
#
# The following variables are automatically assigned by running
# the faxsetup utility. If you leave them commented out then
# faxsetup values are used. You may specify here the values to
# use.
#
# OLDPROT="-o 4557"
# NEWPROT="-i 4559"
# SNPP="-s 444"
#
# hfaxd may be run from inetd while faxq should still be executed
# by the init script. If you run hfax via inetd or xinetd then
# uncomment the following line
# HFAXD_FROM_INET=true
#
# faxqclean is run weekly from cron (see /etc/cron.weekly/hylafax)
# and will delete all received and sent faxes older than a specified
# time. If options "-a" or "-A" are given, older faxes are archived.
# Default is to keep jobs for 3024000s = 35 days.
# Note: if this variables is assigned a null value, then faxqclean isn't run
# FAXQCLEAN_OPTS="-t -j 3024000 -a"
#
# faxcron is run weekly from cron (see /etc/cron.weekly/hylafax)
# and will delete many logs and other information older than a specified
# time.
# Default is to keep information only for 35 days.
# Note: if this variables is assigned a null value, then faxcron isn't run
# FAXCRON_OPTS="-info 35 -log 35 -rcv 100 -tmp 15 -mode 664"
|