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] problem with faxmaster
hi, The problem is fixed yet.
The problem was in faxrcvd.
faxcrvd contains at top
if [ $# != 5 ]; then
echo "Usage: $0 file devID commID error-msg destination"
exit 1
fi
and $# always was 5. Now
if [ $# != 4 ]; then
echo "Usage: $0 file devID commID error-msg destination"
exit 1
fi
and it works fine.
Somebody knows what is "destination" ( $5 ).
Thanks jacobo
____________________ HylaFAX(tm) Users Mailing List _______________________
To unsub: mail -s unsubscribe hylafax-users-request@hylafax.org < /dev/null