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
|
# efax.rc
#
# Resource file for the 'fax' program by Ed Casas
#
# Some site or hardware specific settings may have to be added locally.
# See the manual page fax(1) and the script /usr/bin/fax for details.
#
# Written by Dirk Eddelbuettel <edd@qed.econ.queensu.ca>
# DEV must point to the serial device of your modem, without the /dev
# /dev/modem usually is softlink to /dev/cua1 or /dev/cua3
DEV=modem
# FROM and NAME appear at the top of outgoing faxes
FROM="---Your number goes here---"
NAME="---Your name goes here---"
# PRTYPE, PRCOMMAND and PAGE are used for printing faxes
PRTYPE=ps
PRCMD=lpr
PAGE=letter
# VIEWCMD is used for viewing faxes
# VIEWCMD="xv - -geometry +10+10" # xv is a non-free Debian package
VIEWCMD="xloadimage stdin" # xloadimage is a free Debian package
LOCK='-x /var/lock/LCK..$DEV' # Debian has lockfiles in /var/lock
# This getty definition allows for incoming data calls. If you activate
# something like s0:23:respawn:/usr/bin/fax VERB=ewir SPKR=-iM0L0 answer
# in /etc/inittab, efax can receive faxes and data calls. This feature can
# also be tested from the command-line via "fax answer", see the manual page.
# GETTY="exec /sbin/getty %d $DEV" # Debian GNU/Linux setup
# directory where "fax answer" logs are stored (default FAXDIR)
# Debian use FSSTND-compliant directory below /var/log
FAXLOGDIR=/var/log/efax
|