[Asterisk-Users] Testing asterisk faxing functionality

2006-03-27 Thread patryk
I have asterisk with rxfax txfax modules.I want to test fax sendig and reciving in one asterisk instance, in extensions.conf I have : exten = 1234567,1,rxfax(/home/patryk/fax-new.tif|debug) exten = s,1,Dial(1234567) exten = s,2,txfax(/home/patryk/fax.tif|caller|debug) but I doesn't seem to

Re: [Asterisk-Users] Testing asterisk faxing functionality

2006-03-27 Thread Gary Richardson
I was playing with the fax stuff over IP on Friday. Unless you're receiving faxes from a PSTN circuit, it doesn't work so well. Also, I don't think you can chain txfax and rxfax like that. When you hit the s,2 part, it's going to play the fax out to the handset you dialed from. You'll need

Re: [Asterisk-Users] Testing asterisk faxing functionality

2006-03-27 Thread Corey S. McFadden
You could always use System() to copy a call spool file to launch the outbound fax call. I don't really think a 3rd party app is necessary. -Corey On Mon, 27 Mar 2006, Gary Richardson wrote: I was playing with the fax stuff over IP on Friday. Unless you're receiving faxes from a PSTN

Re: [Asterisk-Users] Testing asterisk faxing functionality

2006-03-27 Thread patryk
You could always use System() to copy a call spool file to launch the outbound fax call. I don't really think a 3rd party app is necessary. Could You explain this please? Or maybe some links to documentation and examples ? Thanks Patryk. ___