Habe immer das Problem das wenn ein FAX ankommt, das an der MAil ein .ps dranhängt statt eines .pdf Die Liste habe ich auch schon durchgearbeitet, und fast alle der Vorschläge ausprobiert - aber es kommt ein .ps hinten dran. Vielleicht hat jemand mal den entscheidenden Tip für mich, habe mal die faxrcvd an die Mail gebackt. Gruß Sven #! /bin/sh # # faxrcvd file devID commID error-msg destination # if [ $# != 5 ]; then echo "Usage: $0 file devID commID error-msg destination" exit 1 fi test -f etc/setup.cache || { SPOOL=`pwd` cat<<EOF FATAL ERROR: $SPOOL/etc/setup.cache is missing! The file $SPOOL/etc/setup.cache is not present. This probably means the machine has not been setup using the faxsetup(8C) command. Read the documentation on setting up HylaFAX before you startup a server system. EOF exit 1 } . etc/setup.cache INFO=$SBIN/faxinfo FAX2PS=$TIFFBIN/fax2ps # Nachtrag Start #PS2PDF=$TIFFBIN/ps2pdf # Nachtrag Ende TOADDR=FaxMaster FILETYPE=pdf # # There is no good portable way to find out the fully qualified # domain name (FQDN) of the host or the TCP port for the hylafax # service so we fudge here. Folks may want to tailor this to # their needs; e.g. add a domain or use localhost so the loopback # interface is used. # HOSTNAME=`hostname` # XXX no good way to find FQDN PORT=4559 # XXX no good way to lookup service FILE="$1" DEVICE="$2" COMMID="$3" MSG="$4" if [ -f $FILE ]; then # # Check the sender's TSI and setup to dispatch # facsimile received from well-known senders. # SENDER="`$INFO $FILE | $AWK -F: '/Sender/ { print $2 }' 2>/dev/null`" SENDTO= if [ -f bin/FaxDispatch ]; then . bin/FaxDispatch # NB: FaxDispatch sets SENDTO based on $5 fi SENDTO=FaxMaster (echo "To: $TOADDR" echo "From: The HylaFAX Receive Agent <fax>" echo "Subject: facsimile received from $SENDER"; echo "" echo "$FILE (ftp://$HOSTNAME:$PORT/$FILE):"; $INFO -n $FILE echo "ReceivedOn: $DEVICE" if [ "$MSG" ]; then echo "" echo "The full document was not received because:" echo "" echo " $MSG" echo "" echo " ---- Transcript of session follows ----" echo "" if [ -f log/c$COMMID ]; then $SED -e '/-- data/d' \ -e '/start.*timer/d' -e '/stop.*timer/d' \ log/c$COMMID elif [ -n "$COMMID" ]; then echo " No transcript available (CommID c$COMMID)." else echo " No transcript available." fi else echo "CommID: c$COMMID (ftp://$HOSTNAME:$PORT/log/c$COMMID)" fi if [ -n "$SENDTO" ]; then echo "" echo "The facsimile was automatically dispatched to: $SENDTO." fi ) | 2>&1 $SENDMAIL -ffax -oi $TOADDR if [ -n "$SENDTO" ]; then (MIMEBOUNDARY="NextPart$$" echo "Mime-Version: 1.0" echo "Content-Type: Multipart/Mixed; Boundary=\"$MIMEBOUNDARY\"" echo "Content-Transfer-Encoding: 7bit" echo "To: $SENDTO" echo "From: The HylaFAX Receive Agent <fax>" echo "Subject: facsimile received from $SENDER"; echo "" echo "--$MIMEBOUNDARY" echo "Content-Type: text/plain; charset=us-ascii" echo "Content-Transfer-Encoding: 7bit" echo "" echo "$FILE (ftp://$HOSTNAME:$PORT/$FILE):"; $INFO -n $FILE echo "ReceivedOn: $DEVICE" if [ "$MSG" ]; then echo "" echo "The full document was not received because:" echo "" echo " $MSG" echo "" echo " ---- Transcript of session follows ----" echo "" if [ -f log/c$COMMID ]; then $SED -e '/-- data/d' \ -e '/start.*timer/d' -e '/stop.*timer/d' \ log/c$COMMID elif [ -n "$COMMID" ]; then echo " No transcript available (CommID c$COMMID)." else echo " No transcript available." fi else echo "CommID: c$COMMID (ftp://$HOSTNAME:$PORT/log/c$COMMID)" fi echo "" echo "--$MIMEBOUNDARY" echo "Content-Type: application/postscript" echo "Content-Description: FAX document" echo "Content-Transfer-Encoding: 7bit" echo "" $FAX2PS $FILE 2>/dev/null echo "" echo "--$MIMEBOUNDARY--" ) | 2>&1 $SENDMAIL -ffax -oi $SENDTO fi else # # Generate notification mail for a failed attempt. # (echo "To: $TOADDR" echo "From: The HylaFAX Receive Agent <fax>" echo "Subject: facsimile not received" echo "" echo "An attempt to receive facsimile on $DEVICE failed because:" echo "" echo " $MSG" echo "" echo " ---- Transcript of session follows ----" echo "" if [ -f log/c$COMMID ]; then $SED -e '/-- data/d' \ -e '/start.*timer/d' -e '/stop.*timer/d' \ log/c$COMMID elif [ -n "$COMMID" ]; then echo " No transcript available (CommID c$COMMID)." else echo " No transcript available." fi ) | 2>&1 $SENDMAIL -ffax -oi $TOADDR fi
Hallo, Sven Kröger <linux@context-werbung.de> writes:
Habe immer das Problem das wenn ein FAX ankommt, das an der MAil ein .ps dranhängt statt eines .pdf
Die Liste habe ich auch schon durchgearbeitet, und fast alle der Vorschläge ausprobiert - aber es kommt ein .ps hinten dran.
Vielleicht hat jemand mal den entscheidenden Tip für mich, habe mal die faxrcvd an die Mail gebackt. [...] INFO=$SBIN/faxinfo FAX2PS=$TIFFBIN/fax2ps # Nachtrag Start #PS2PDF=$TIFFBIN/ps2pdf # Nachtrag Ende TOADDR=FaxMaster FILETYPE=pdf
Da hast du den Übeltäter. :-) Es wird mittels fax2ps gedruckt. Der pdf Drucker ist ja auskommentiert. -Dieter -- Dieter Kluenter | Systemberatung Tel:040.64861967 | Fax: 040.64891521 mailto: dkluenter@schevolution.com http://www.schevolution.com/tour
Guten Tag Sven Kröger, Am Montag, 7. April 2003 um 11:38 schrieb Sven Kröger:
Habe immer das Problem das wenn ein FAX ankommt, das an der MAil ein .ps dranhängt statt eines .pdf
Die Liste habe ich auch schon durchgearbeitet, und fast alle der Vorschläge ausprobiert - aber es kommt ein .ps hinten dran.
Vielleicht hat jemand mal den entscheidenden Tip für mich, habe mal die faxrcvd an die Mail gebackt.
Gruß Sven
#! /bin/sh # # faxrcvd file devID commID error-msg destination # [...]
Hallo! Hast du mal den Tip mit der /usr/spool/hylafax/etc/FaxDispatch probiert? Bei mir sieht die so aus: FILETYPE=pdf; SENDTO=FaxMaster; Vielleicht hilft´s ja. Ciao! Stefan PS: SENDTO auf gewünschten Empfänger stellen...
participants (3)
-
Dieter Kluenter
-
Stefan Schilling
-
Sven Kröger