faxdispatch.example
来自「hylafax-4.4.4.tar.gz fax relative sourc」· EXAMPLE 代码 · 共 48 行
EXAMPLE
48 行
## This is an example /etc/hylafax/FaxDispatch which shows you some## of the features of the stock faxrcvd command. You should not## use this file as is. For details, read faxrcvd(8). ## To route all incoming faxes in pdf to a single account. SENDTO=someguy@somedomain.comFILETYPE=pdf ## To do sender-based routing [from faxrcvd(8)] case "$SENDER" in *1*510*526*1212*) SENDTO=sam;; # Sam's test rig in Berkeley *1*415*390*1212*) SENDTO=raster@asd;; # 7L Xerox room, used for scanning *5107811212) SENDTO=peebles@mti;; # stuff from homeesac case "$CIDNUMBER" in 435*) SENDTO=lee; FILETYPE=pdf;; # all faxes from area code 435 5059627777) SENDTO=amy; FILETYPE=tif;; # Amy wants faxes in TIFFesac case "$SUBADDR" in 53) SENDTO=FaxMaster;; # without double-notification roger) SENDTO=roger;; # possible text subaddressingesac ## To do device-based routing [from faxrcvd(8)] case "$DEVICE" in ttyS1) SENDTO=john;; # all faxes received on ttyS1 ttyLT0) SENDTO=mary@home;; # all faxes received on ttyLT0esac ## To make each received fax saved outside hylafax## ( Don't forget to chown uucp /some/place ) /bin/cp $FILE /some/place ## To avoid bothering the faxmaster for each received fax NOTIFY_FAXMASTER=errors
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?