HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
[hylafax-users] RingsBeforeAnswer and CID
hi all
I'm trying to set my RingsBeforeAnswer to 2 buy editing etc/config.ttyS1 without success.
The modem still answers on 3 rings...
etc/config.ttyS1, looks like...
RingsBeforeAnswer: 2
Also, i'm trying to setup CID so if a fax comes from number 123456 it should be emailed to
me@xxxxxxxxx and 654321 should be emailed to
him@xxxxxxxxx
, see my FaxDispatch below...
etc/FaxDispatch, looks like...
FILETYPE=pdf;
case "$CIDNUMBER" in
*123456) SENDTO=
me@xxxxxxxxx;;
esac
case "$SENDER" in
*654321) SENDTO=
him@xxxxxxxxx;;
esac
case "$DEVICE" in
ttyS1) SENDTO=
allotherfaxes@xxxxxxxxx;;
esac
as with both of these situation, i can't get them to work.
neither will the modem answer on the second ring
nor will the CID be identified and the incoming fax send to the email address
suggestions ?
also, i take it the * in the $CIDNUMBER is a wildcard ?