faxrcvd.sh.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:11k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. #! @SCRIPT_SH@
  2. # $Id: faxrcvd.sh.in,v 1.35 2008/07/21 19:30:52 faxguy Exp $
  3. #
  4. # ============================================
  5. #
  6. # A NOTE ON CUSTOMIZING this script:
  7. #
  8. # You are welcome (even encouraged) to customize this script to suit the
  9. # needs of the deployment.  However, be advised that this script is
  10. # considered part of the package distribution and is subject to being
  11. # overwritten by subsequent upgrades.  Please consider copying this file
  12. # to something like "etc/faxrcvd-custom", modifying that copy of the file,
  13. # and then setting "FaxRcvdCmd: etc/faxrcvd-custom" in your modem config
  14. # file to prevent your customizations from being overwritten during an
  15. # upgrade process.
  16. #
  17. # ============================================
  18. #
  19. # HylaFAX Facsimile Software
  20. #
  21. # Copyright (c) 1990-1996 Sam Leffler
  22. # Copyright (c) 1991-1996 Silicon Graphics, Inc.
  23. # HylaFAX is a trademark of Silicon Graphics
  24. # Permission to use, copy, modify, distribute, and sell this software and 
  25. # its documentation for any purpose is hereby granted without fee, provided
  26. # that (i) the above copyright notices and this permission notice appear in
  27. # all copies of the software and related documentation, and (ii) the names of
  28. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  29. # publicity relating to the software without the specific, prior written
  30. # permission of Sam Leffler and Silicon Graphics.
  31. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  32. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  33. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  34. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  35. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  36. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  37. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  38. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  39. # OF THIS SOFTWARE.
  40. #
  41. . bin/common-functions
  42. #
  43. # faxrcvd file devID commID error-msg
  44. #
  45. if [ $# -lt 4 ]; then
  46.     echo "Usage: $0 file devID commID error-msg [ callID-1 [ callID-2 [ ... [ callID-n ] ] ] ]"
  47.     hfExit 1
  48. fi
  49. #
  50. # If you want to change the presentation of the e-mail notification
  51. # then this is the place to change that.  We put it here, up-front,
  52. # because this is most likely what most customizations will deal with.
  53. #
  54. faxrcvd_mail()
  55. {
  56.     MAILTYPE="$1"
  57.     MAILTO="$2"
  58.     CCTO="$3"
  59.     BCCTO="$4"
  60.    (echo "Mime-Version: 1.0"
  61.     echo "Content-Type: Multipart/Mixed; Boundary="$MIMEBOUNDARY""
  62.     echo "Content-Transfer-Encoding: 7bit"
  63.     echo "To: $MAILTO"
  64.     if [ -n "$CCTO" ]; then echo "Cc: $CCTO"; fi
  65.     if [ -n "$BCCTO" ]; then echo "Bcc: $BCCTO"; fi
  66.     printf "From: "
  67.     printf "$DICTRECEIVEAGENT" | LANG=C $AWK -f bin/rfc2047-encode.awk -v charset="$CHARSET"
  68.     echo " <$FROMADDR>"
  69.     printf "Subject: "
  70.     (
  71.     if [ -f "$FILE" ]; then
  72. eval echo "$DICTRECEIVEDFROM";
  73.     else
  74. eval echo "$DICTNOTRECEIVED";
  75.     fi
  76.     ) | LANG=C $AWK -f bin/rfc2047-encode.awk -v charset="$CHARSET"; echo
  77.     echo ""
  78.     echo "--$MIMEBOUNDARY"
  79.     echo "Content-Type: text/plain; charset=$CHARSET"
  80.     echo "Content-Transfer-Encoding: quoted-printable"
  81.     echo ""
  82.     (
  83.     if [ -f $FILE ]; then
  84. case "$MAILTYPE" in
  85.     textonly)
  86. echo "$FILE (ftp://$HOSTNAME:$PORT/$FILE):";;
  87. esac
  88. faxInfo $FILE
  89. echo "$DICTRECEIVEDON| $DEVICE" | printFormatted $INFOSIZE
  90. if [ -z "$MSG" ]; then
  91.     case "$MAILTYPE" in
  92. withattached)
  93.     echo "$DICTCOMMID| c$COMMID" | printFormatted $INFOSIZE
  94.     ;;
  95. textonly)
  96.     echo "$DICTCOMMID| c$COMMID (ftp://$HOSTNAME:$PORT/log/c$COMMID)" | printFormatted $INFOSIZE
  97.     if [ -f $FILE ] && [ -n "$SENDTO" ]; then
  98. echo ""
  99. eval echo "$DICTDISPATCHEDTO"
  100.     fi
  101.     ;;
  102.     esac
  103. fi
  104.     else
  105. eval echo "$DICTATTEMPTEDFAXFAILED"
  106.     fi
  107.     ) | LANG=C $AWK -f bin/qp-encode.awk
  108.     if [ "$MSG" ] || [ ! -f $FILE ]; then
  109. (
  110.  echo ""
  111.  echo "$DICTMSGINTRO"
  112.  echo ""
  113.  echo "    $ERRMSG"
  114.  echo ""
  115.  echo "$DICTLOGFOLLOWS"
  116.  echo ""
  117. ) | LANG=C $AWK -f bin/qp-encode.awk
  118. if [ -f log/c$COMMID ]; then
  119.     echo ""
  120.     echo "--$MIMEBOUNDARY"
  121.     echo "Content-Type: text/plain; charset=US-ASCII; name=c$COMMID"
  122.     echo "Content-Description: FAX session log"
  123.     echo "Content-Transfer-Encoding: 7bit"
  124.     echo "Content-Disposition: inline"
  125.     echo ""
  126.     $SED -e '/-- data/d' 
  127.  -e '/start.*timer/d' -e '/stop.*timer/d' 
  128.  log/c$COMMID
  129. elif [ -n "$COMMID" ]; then
  130.     ( echo "$DICTNOLOGAVAIL ($DICTCOMMID c$COMMID)." ) | LANG=C $AWK -f bin/qp-encode.awk
  131. else
  132.     ( echo "$DICTNOLOGAVAIL." ) | LANG=C $AWK -f bin/qp-encode.awk
  133. fi
  134.     fi
  135.     if [ -f $FILE ]; then
  136. if [ "$MAILTYPE" = "withattached" ]; then
  137.     for type in $FILETYPE; do
  138. echo ""
  139. echo "--$MIMEBOUNDARY"
  140. if [ "$type" = "tif" ]; then
  141.     echo "Content-Type: image/tiff; name="$FILENAME.tif""
  142.     echo "Content-Description: FAX document"
  143.     echo "Content-Transfer-Encoding: $ENCODING"
  144.     echo "Content-Disposition: attachment; filename="$FILENAME.tif""
  145.     echo ""
  146.     # This is useful because the majority of TIFF viewers won't
  147.     # be able to read JBIG compressed TIFF files, while
  148.     # G4 (MMR) is a much older and supported format.
  149.     if (tiffinfo $FILE | grep "JBIG" > /dev/null) then
  150. tiffcp -c g4 $FILE $FILE.g4.tif
  151. encode $FILE.g4.tif
  152. $RM -f $FILE.g4.tif 2>$ERRORSTO
  153.     else
  154. encode $FILE
  155.     fi
  156. elif [ "$type" = "tif-r" ]; then
  157.     echo "Content-Type: image/tiff; name="$FILENAME.tif""
  158.     echo "Content-Description: FAX document"
  159.     echo "Content-Transfer-Encoding: $ENCODING"
  160.     echo "Content-Disposition: attachment; filename="$FILENAME.tif""
  161.     echo ""
  162.     if (tiffinfo $FILE | grep "JPEG" > /dev/null) then
  163. tiffcp -c jpeg:R $FILE $FILE.r.tif
  164. encode $FILE.r.tif
  165. $RM -f $FILE.r.tif 2>$ERRORSTO
  166.     else 
  167. encode $FILE
  168.     fi
  169. elif [ "$type" = "tif-y" ]; then
  170.     echo "Content-Type: image/tiff; name="$FILENAME.tif""
  171.     echo "Content-Description: FAX document"
  172.     echo "Content-Transfer-Encoding: $ENCODING"
  173.     echo "Content-Disposition: attachment; filename="$FILENAME.tif""
  174.     echo ""
  175.     if (tiffinfo $FILE | grep "JPEG" > /dev/null) then
  176. tiffcp -c jpeg:Y $FILE $FILE.y.tif
  177. encode $FILE.y.tif
  178. $RM -f $FILE.y.tif 2>$ERRORSTO
  179.     else
  180. encode $FILE
  181.     fi
  182. elif [ "$type" = "pdf" ]; then
  183.     echo "Content-Type: application/pdf; name="$FILENAME.pdf""
  184.     echo "Content-Description: FAX document"
  185.     echo "Content-Transfer-Encoding: $ENCODING"
  186.     echo "Content-Disposition: attachment; filename="$FILENAME.pdf""
  187.     echo ""
  188.     $TIFF2PDF -o $FILE.pdf $FILE
  189.     encode $FILE.pdf
  190.     $RM -f $FILE.pdf 2>$ERRORSTO
  191. else #  default as Postscript
  192.     echo "Content-Type: application/postscript; name="$FILENAME.ps""
  193.     echo "Content-Description: FAX document"
  194.     echo "Content-Transfer-Encoding: 7bit"
  195.     echo "Content-Disposition: attachment; filename="$FILENAME.ps""
  196.     echo ""
  197.     $TIFF2PS -a $FILE 2>$ERRORSTO
  198. fi
  199.     done
  200. fi
  201.     fi
  202.     echo ""
  203.     echo "--$MIMEBOUNDARY--"
  204.    ) 2>$ERRORSTO | $SENDMAIL -f$FROMADDR -oi -t
  205. }
  206. test -f etc/setup.cache || {
  207.     SPOOL=`pwd`
  208.     cat<<EOF
  209. FATAL ERROR: $SPOOL/etc/setup.cache is missing!
  210. The file $SPOOL/etc/setup.cache is not present.  This
  211. probably means the machine has not been setup using the faxsetup(@MANNUM1_8@)
  212. command.  Read the documentation on setting up HylaFAX before you
  213. startup a server system.
  214. EOF
  215.     hfExit 1
  216. }
  217. # These settings may not be present in setup.cache if user upgraded and
  218. # didn't re-run faxsetup; we set them before calling setup.cache for
  219. # backward compatibility.
  220. ENCODING=base64
  221. MIMENCODE=mimencode
  222. TIFF2PDF=bin/tiff2pdf
  223. TTYCMD=tty
  224. CHARSET=UTF-8 # this really gets set in dictionary
  225. . etc/setup.cache
  226. INFO=$SBIN/faxinfo
  227. FAX2PS=$TIFFBIN/fax2ps
  228. TIFF2PS=$TIFFBIN/tiff2ps
  229. TOADDR=FaxMaster
  230. FROMADDR=fax
  231. TIFFINFO=tiffinfo
  232. NOTIFY_FAXMASTER=always
  233. MIMEBOUNDARY="NextPart$$"
  234. #
  235. # Redirect errors to a tty, if possible, rather than
  236. # dev-nulling them or allowing them to creep into
  237. # the mail.
  238. #
  239. if $TTYCMD >/dev/null 2>&1; then
  240.     ERRORSTO=`$TTYCMD`
  241. else
  242.     ERRORSTO=/dev/null
  243. fi
  244. #
  245. # Permit various types of attachment types: ps, tif, pdf
  246. # Note that non-ASCII filetypes require an encoder.
  247. # pdf requires tiff2ps and tiff2pdf
  248. #
  249. FILETYPE=ps
  250. SENDTO=
  251. #
  252. # There is no good portable way to find out the fully qualified
  253. # domain name (FQDN) of the host or the TCP port for the hylafax
  254. # service so we fudge here.  Folks may want to tailor this to
  255. # their needs; e.g. add a domain or use localhost so the loopback
  256. # interface is used.
  257. #
  258. HOSTNAME=`hostname` # XXX no good way to find FQDN
  259. PORT=4559 # XXX no good way to lookup service
  260. FILE="$1"; shift;
  261. DEVICE="$1"; shift;
  262. COMMID="$1"; shift;
  263. MSG="$1"; shift;
  264. COUNT=1
  265. while [ $# -ge 1 ]; do
  266.     # The eval has $1 set yet, and this forces a variable-to-variable
  267.     # assignment, allowing us to not need to do escaping
  268.     eval CALLID$COUNT='$1'
  269.     shift
  270.     COUNT=`expr $COUNT + 1`
  271. done
  272. CIDNUMBER="$CALLID1"
  273. CIDNAME="$CALLID2"
  274. FILENAME=`echo $FILE | $SED -e 's/.tif//' -e 's/recvq///'`
  275. SENDER="`$INFO $FILE | $SED -n 's/ *Sender: //p' 2>$ERRORSTO`"
  276. SUBADDR="`$INFO $FILE | $SED -n 's/ *SubAddr: //p' 2>$ERRORSTO`"
  277. SetupPrivateTmp
  278. if [ ! -f $FILE ] && [ -z "$MSG" ]; then
  279.     MSG="unknown problem, file unavailable"
  280. fi
  281. #
  282. # Apply customizations.  All customizable variables should
  283. # be set to their non-customized defaults prior to this.
  284. #
  285. if [ -f etc/FaxDispatch ]; then
  286.     . etc/FaxDispatch # NB: FaxDispatch sets SENDTO
  287. fi
  288. #
  289. # Fetch language settings (after FaxDispatch for customization of $LANG).
  290. #
  291. . bin/dictionary
  292. if [ -f etc/FaxDictionary ]; then
  293.     . etc/FaxDictionary
  294. fi
  295. #
  296. # Customize error message.
  297. #
  298. ERRNUM=`echo $MSG | sed 's/.*{([^}]*)}$/1/g'`
  299. if [ "$ERRNUM" != "$MSG" ]; then
  300.     eval ERRMSG="$"`echo $ERRNUM`
  301.     if [ -z "$ERRMSG" ]; then
  302. ERRMSG="$MSG"
  303.     fi
  304. else
  305.     ERRNUM=
  306.     ERRMSG="$MSG"
  307. fi
  308. setInfoSize $FILE
  309. # Convert TIFF file format/compression from JBIG to MMR (G4) if admin
  310. # requested for it in FaxDispatch.
  311. # The TIFF JBIG file as saved by HylaFAX is REPLACED with a MMR (G4) version.
  312. if [ "$RECV_DATA_CONVERSION" = "JBIG:MMR" ]; then
  313.     if (tiffinfo $FILE | grep "JBIG" > /dev/null) then
  314. $RM -f $FILE.g4
  315. tiffcp -c g4 $FILE $FILE.g4
  316. if [ $? = 0 -a -s $FILE.g4 ]; then
  317.     # Using 'cp' and then 'rm' (instead of 'mv') preserves
  318.     # owner/mode of the original file (at least on Linux)
  319.     #cp -p $FILE $FILE.jbig.tif
  320.     cp $FILE.g4 $FILE
  321. fi
  322. $RM -f $FILE.g4
  323.     fi
  324. fi
  325. #
  326. # Don't send FaxMaster duplicates, and FaxMaster may not even
  327. # want a message at all, depending on NOTIFY_FAXMASTER.
  328. #
  329. case $NOTIFY_FAXMASTER$MSG in
  330.     never*) NOTIFY_FAXMASTER=no;;
  331.     errors) NOTIFY_FAXMASTER=no;;
  332.     *) NOTIFY_FAXMASTER=yes;;
  333. esac
  334. if [ "$NOTIFY_FAXMASTER" != "no" ]; then
  335.     if [ ! -f $FILE ] || [ "$TOADDR" != "$SENDTO" ]; then
  336. faxrcvd_mail "textonly" "$TOADDR" "" ""
  337.     fi
  338. fi
  339. if [ -n "$SENDTO" ] && [ -f $FILE ]; then
  340.     for toeml in $SENDTO; do
  341. faxrcvd_mail "withattached" "$toeml" "$CCTO" "$BCCTO"
  342.     done
  343. fi