HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
Re: [hylafax-users] ISO-8859
dityo krisnugroho wrote:
I would like to eliminate the ISO-8895 characters in the from header
in the email sent by hylafax when there is an incoming fax.
From: =?iso-8859-1?Q?The=20HylaFAX=20Receive=20Agent?= <fax@xxxxxxxxxxxxxxxxxxxx>
Subject: =?iso-8859-1?Q?Facsimile=20received=20from=20021=2057904032?=
I have tried putting
ISO8859: No
parameter in the hyla.conf but it is still the same. Am I doing the
correct thing?
No.
In HylaFAX+ (http://hylafax.sourceforge.net) you would modify the
faxrcvd_mail function in /var/spool/hylafax/bin/faxrcvd (and, actually,
you'd be best-served by putting your own faxrcvd_mail function in
/var/spool/hylafax/etc/FaxDispatch) where you change this:
printf "Subject: "
(
if [ -f "$FILE" ]; then
eval echo "$DICTRECEIVEDFROM";
else
eval echo "$DICTNOTRECEIVED";
fi
) | LANG=C $AWK -f bin/rfc2047-encode.awk -v charset="$CHARSET"; echo
... and you make it look something like this, instead:
printf "Subject: "
(
if [ -f "$FILE" ]; then
eval echo "$DICTRECEIVEDFROM";
else
eval echo "$DICTNOTRECEIVED";
fi
) ; echo
Thanks,
Lee.
____________________ HylaFAX(tm) Users Mailing List _______________________
To subscribe/unsubscribe, click http://lists.hylafax.org/cgi-bin/lsg2.cgi
On UNIX: mail -s unsubscribe hylafax-users-request@xxxxxxxxxxx < /dev/null
*To learn about commercial HylaFAX(tm) support, mail sales@xxxxxxxxx*