Personal tools
HylaFAX The world's most advanced open source fax server

Difference between revisions of "Spam"

(FaxDispatch Question)
m
Line 53: Line 53:
 
echo "$DICTNOLOGAVAIL."
 
echo "$DICTNOLOGAVAIL."
 
fi
 
fi
 
==Community Pages==
 
HylaFAX.org invites all HylaFAX users to add their own information to the Community Pages. Some recommendations include: HylaFAX hardware/software reviews, advice, or desired HylaFAX features. But please feel free to add whatever relevant information you think other HylaFAX users would be interested in.
 
 
'''**WARNING**''' Please note that this section of the site is subject to much less editorial review than the main [[Documentation]] section (for instance), and the information contained herein may occasionally need to be viewed with some skepticism. If you read anything that you believe is entirely incorrect or grossly misleading, please feel free to add a comment that says so, or change it to be more correct yourself!
 
 
* [[Reviews]]: Contributed reviews and/or rants of anything HylaFAX
 
* Advice
 
** [[Cheap Class1 Modems]]
 
* [[Wishlist]]: Things you would like to see added to HylaFAX
 
* [[Press]]: Please add any articles written about HylaFAX
 
* Howtos
 
** [[Install Diva Server and HylaFAX from source on Ubuntu 9.0.4]]:
 

Revision as of 14:44, 7 February 2013

Information and advice by the HylaFAX community

Please bear with me. I am fairly new to Hylafax and, haven’t done any Linux/Unix scripting in a long time. My company has a Hylafax server with 4 analog (dialup) modems. When a fax is received, it is saved as a PDF file to a Windows share for distribution to different departments. This works well for routine faxes. However, some of the faxes we receive are considered urgent and require immediate attention. Keep in mind that we receive between 6500 to 7000 faxes a month! So, when an urgent fax is received, it takes a long time to sort through the shared folder and find it. With that in mind, I have dedicated 1 of the modems to receive urgent faxes only. My next step is to configure the FaxDispatch file to save faxes from this modem to a STAT folder (Windows share). Below, is the FaxDispatch file I intend to use for this purpose. It would be nice to have some more experienced eyes to look at it and let me know if you think it would work. Thanks in advance for your help.

______________________________________________________________________________________

  1. Don't want emails

NOTIFY_FAXMASTER="never"

  1. New name

n=`date +%Y.%m.%d.%H.%M.%S`

  1. This section will save received faxes to a specified location depending upon
  2. which modem received the fax.

case "$DEVICE" in ttyS6) $TIFF2PDF -o $t.pdf $FILE /bin/mv $FILE /var/lib/samba/stat/$n;; ttyS5) $TIFF2PDF -o $t.pdf $FILE /bin/mv $FILE /var/lib/samba/fax/$n;; ttyS4) $TIFF2PDF -o $t.pdf $FILE /bin/mv $FILE /var/lib/samba/fax/$n;; ttyS1) $TIFF2PDF -o $t.pdf $FILE /bin/mv $FILE /var/lib/samba/fax/$n;; esac

  1. New destination
  2. t=/var/lib/samba/fax/$n
  1. See interesting information, commands could `2>&1 >>` here too
  2. set > /tmp/FaxDispatch.log
  1. make pdf in target
  2. $TIFF2PDF -o $t.pdf $FILE
  1. We only copy to the fax location, archive this just in case

/bin/cp $FILE $t.tif

  1. use this to move it instead, but then there is no archive and if
  2. a user deletes it from the Samba Share it's gone forever
  3. /bin/mv $FILE /var/lib/samba/fax
  1. Make infos like faxrcvd

if [ -f log/c$COMMID ]; then $SED -e '/-- data/d' \ -e '/start.*timer/d' -e '/stop.*timer/d' \ -e 's/=/=3D/g' \ log/c$COMMID elif [ -n "$COMMID" ]; then echo "$DICTNOLOGAVAIL ($DICTCOMMID c$COMMID)." else echo "$DICTNOLOGAVAIL." fi



Powered by MediaWiki
Attribution-ShareAlike 2.5

Project hosted by iFAX Solutions