RE: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-30 Thread Sam Bingner
, March 28, 2004 5:52 PM To: Martin List-Petersen Cc: [EMAIL PROTECTED] Subject: Re: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes On Mar 28, 2004, at 7:40 PM, Martin List-Petersen wrote: ; I'm using a shared analog line for testing this, so I'm using the fax ; autodetection

[Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-28 Thread Jan Baumann
Hi, after successfully having installed RxFax/SpanDSP and some promising tests (great piece of software, Steve!) I wonder if it is possible to avoid overwriting the same tiff file over and over again. Browsing the sourcecode of app_rxfax.c I found a magic '%d' flag being parsed out from the

Re: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-28 Thread Nicolas Gudino
/spandsp: file-naming of received faxes after successfully having installed RxFax/SpanDSP and some promising tests (great piece of software, Steve!) I wonder if it is possible to avoid overwriting the same tiff file over and over again. Browsing the sourcecode of app_rxfax.c I found a magic '%d

Re: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-28 Thread Petr Grussmann
AM Subject: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes after successfully having installed RxFax/SpanDSP and some promising tests (great piece of software, Steve!) I wonder if it is possible to avoid overwriting the same tiff file over and over again. Browsing the sourcecode

Re: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-28 Thread Scott Laird
On Mar 28, 2004, at 5:21 AM, Nicolas Gudino wrote: Hi Jan, Try this: exten = _3XX,1,SetVar(FAXFILE=/tmp/faxfor-${EXTEN}-${TIMESTAMP}.tif) exten = _3XX,2,rxfax(${FAXFILE}) Or exten = _3XX,1,SetVar(FAXFILE=/var/spool/asterisk-fax/${UNIQUEID}.tif) If you want a unique id, why not use the one

Re: [Asterisk-Users] RxFax/spandsp: file-naming of received faxes

2004-03-28 Thread Scott Laird
On Mar 28, 2004, at 7:40 PM, Martin List-Petersen wrote: ; I'm using a shared analog line for testing this, so I'm using the fax ; autodetection code to yank faxes out of my IVR and into the 'fax' ; pseudo-extension [outside] ... exten = fax,1,Goto(fax,2201,1) I would be interested in how