Hallo!
Hylafax sendet nicht mehr die Faxe als Email..
Was geht..
Ein Fax kommt und wird als *.tif abgelegt.
Nur es wird kein Email mit der PDF generiert und versendet.
Mailserver geht.. mailx ... kommt eine Email an..
Ich vermute mal das irgendwas mit der generierung der PDF nicht stimmt..
Aber im Log finde ich nix ev. hab ich auch im falschen Log geschaut.
Wo kann ich noch suchen oder was Prüfen?
Ist es möglich, die Routine noch mal aufzurufen, das die Faxe noch mal per Email versendet werden? Da die Tifs ja da sind..
Ach ja in der /etc/hylafax/FaxDispatch
case "$DESTINATION" in *XXXXFAXNUMMERXXX) SENDTO="webmaster@dom ain-web.de"; FILETYPE=pdf
esac
sollte denke ich mal passen, da ich die aktuelle hylafax benutze..
Wäre dankbar für eure Hilfe..
cu Deta
hylafax versendet keine mails..
moins
Hab da auch ne Weile rungebastelt... hier mal mein FaxDispatch:
_______________________________________________
case "$7" in xxxxx) SENDTO="p.tester"; FILETYPE=pdf;;
esac
case "$7" in xxxxxx) SENDTO="paul"; FILETYPE=pdf;;
esac
/usr/bin/tiff2ps -a $FILE | lpr
MIMENCODE=/var/spool/hylafax/bin/uuencode_it;
_________________________________________________
Angeblich ist das hier nocht wichtig:
touch /var/spool/hylafax/bin/uuencode_it
chmod +xx /var/spool/hylafax/bin/uuencode_it
nano /var/spool/hylafax/bin/uuencode_it
############################################################
#!/bin/sh
# /var/spool/hylafax/bin/uuencode_it
uuencode -m $1 $1 | grep -E -v "^begin|^====$" 2>/dev/null
Grüsse
Percy
_______________________________________________
case "$7" in xxxxx) SENDTO="p.tester"; FILETYPE=pdf;;
esac
case "$7" in xxxxxx) SENDTO="paul"; FILETYPE=pdf;;
esac
/usr/bin/tiff2ps -a $FILE | lpr
MIMENCODE=/var/spool/hylafax/bin/uuencode_it;
_________________________________________________
Angeblich ist das hier nocht wichtig:
touch /var/spool/hylafax/bin/uuencode_it
chmod +xx /var/spool/hylafax/bin/uuencode_it
nano /var/spool/hylafax/bin/uuencode_it
############################################################
#!/bin/sh
# /var/spool/hylafax/bin/uuencode_it
uuencode -m $1 $1 | grep -E -v "^begin|^====$" 2>/dev/null
Grüsse
Percy