Just remove the terminating '/' at the end of the second condition tag....

 

<condition field="destination_number" expression="^(\d+)$">

 

 

From: freeswitch-users-boun...@lists.freeswitch.org
[mailto:freeswitch-users-boun...@lists.freeswitch.org] On Behalf Of Michael
Collins
Sent: Tuesday, December 01, 2009 5:23 PM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] Faxing Advice

 

 

On Tue, Dec 1, 2009 at 2:09 PM, Joseph L. Casale <jcas...@activenetwerx.com>
wrote:

>In this case, the $1 will only contain whatever is in the parens in your
expression, i.e.
><condition field="destination_number" expression="^(\d+)$">
>
>What do you have for your expression?
>-MC

Well, untested of course as I am busy with school:) But what I wrote up to
try at
Christmas (with your addition) was:

<extension name="OutboundFax">
 <condition field="caller_id_number" expression="^204$"/>
 <condition field="destination_number" expression="^(\d+)$"/>
     <action application="answer"/>
     <action application="playback" data="silence_stream://2000"/>
     <action application="rxfax" data="/tmp/${uuid}.rxfax.tiff"/>

     <action application="system" data="/opt/freeswitch/scripts/emailfax.sh
$...@fax.com /tmp/${uuid}.rxfax.tiff"/>

     <action application="hangup"/>
 </condition>
</extension>

Am I correct in presuming that Freeswitch will answer a fax from a local zap
based user
just like it does from an FXO port connected to a POTS line? What I hope to
do here is
catch any call made from that extension (the zap based fax machine/user) and
push its
call into the fax module.


Yes, when a device (phone/fax/modem/whatever) is plugged into the FXS it
gets dialtone and dials. Whatever it dials is put into ${destination_number}
just like any SIP phone that dials. This extension looks ok. Try it out and
let us know how it goes.
-MC

 

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Reply via email to