I'm using IAXmodem and Hylafax with 'faxdetect=incoming' and things mostly work pretty well. My main lines come in via T1 DID. Today, HR got tired of having someone read and forward their faxes to them and requested we bring their physical machine back on line. I have been able to get the fax forwarded to the appropriate zap channel, but I cannot seem to get it to stop 'faxdetect'ing. After deciding that it is a fax and sending it to the proper zap channel Asterisk says: -- Executing Dial("Zap/5-1", "Zap/105") in new stack -- Called 105 -- Zap/105-1 is ringing -- Redirecting Zap/5-1 to fax extension -- Hungup 'Zap/105-1' ...and Hylafax gets it... Now the questions: 1) How can I have 'faxdetect=incoming' for my T1 context and 'faxdetect=no' for my internal zap channels. (I'm assuming that this is what's wrong here...) 2) Is it instead possible to disable faxdetect for the duration of the call? E.g. exten => fax,1,zapFAXDETECT(off) 3) Is there a better way to mix detected faxes and dedicated fax lines? 4) Can anyone share with me a config that accomplishes this feat (both detected and dedicated)? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060619/555aa3a2/attachment.htm
Hi Bob, in order to stop fax detection, send the call to a context without a 'fax' extension: [incoming] _XXXX.,1,doSomeStuff ; Hardfax extension 12345678,1,Goto(hardfax,1000,1) fax,1,receiveFax [hardfax] 1000,1,Dial(Zap/1|70) 1000,n,Hangup ----- Original Message ----- From: "Bob McDowell" <mcdowell.lists@gmail.com> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com> Sent: Tuesday, June 20, 2006 6:23 AM Subject: [Asterisk-Users] faxdetect questions - Please HELP!> I'm using IAXmodem and Hylafax with 'faxdetect=incoming' and things mostly > work pretty well. My main lines come in via T1 DID. Today, HR got tired > of > having someone read and forward their faxes to them and requested we bring > their physical machine back on line. I have been able to get the fax > forwarded to the appropriate zap channel, but I cannot seem to get it to > stop 'faxdetect'ing. After deciding that it is a fax and sending it to > the > proper zap channel Asterisk says: > > -- Executing Dial("Zap/5-1", "Zap/105") in new stack > -- Called 105 > -- Zap/105-1 is ringing > -- Redirecting Zap/5-1 to fax extension > -- Hungup 'Zap/105-1' > > ...and Hylafax gets it... > > Now the questions: > > 1) How can I have 'faxdetect=incoming' for my T1 context and > 'faxdetect=no' > for my internal zap channels. (I'm assuming that this is what's wrong > here...) > 2) Is it instead possible to disable faxdetect for the duration of the > call? E.g. exten => fax,1,zapFAXDETECT(off) > 3) Is there a better way to mix detected faxes and dedicated fax lines? > 4) Can anyone share with me a config that accomplishes this feat (both > detected and dedicated)? >--------------------------------------------------------------------------------> _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > Asterisk-Users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
Colin Anderson
2006-Jun-21 12:12 UTC
[Asterisk-Users] Re: faxdetect questions - Please HELP!
Seems to me that the problem here is one of automatic distribution. Why not create a virtual faxmodem for each user, or group of users, and assign a DID to each of them, then have HylaFAX email the PDF direct to the user via custom settings in FaxDispatch? THe user can then print it, or file it or whatever. This works *famously* in my org, and my users love to brag about how they have "their own" fax line. I have > 200 IAXModem's running on my HylaFAX server, no problem. -----Original Message----- From: M.Hockings [mailto:veeshooter@hockings.net] Sent: Wednesday, June 21, 2006 11:26 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Re: faxdetect questions - Please HELP! In reading this problem and the solution I wonder if it would be better, (or acceptable to the users?) to send the received Hylafax fax to a (network attached) printer of their choice. That way you eliminate the need for special equipment (the fax machine) ? I did a bit of research and found : http://www.hylafax.org/content/Handbook:Server_Operation:Tweaking_and_Custom ization That has a section on "Automatic Fax Printing" that actually address this sort or thing. Mike Craig Guy wrote:> Hi Bob, > > in order to stop fax detection, send the call to a context without a > 'fax' extension: > > [incoming] > > _XXXX.,1,doSomeStuff > > ; Hardfax extension > 12345678,1,Goto(hardfax,1000,1) > > fax,1,receiveFax > > [hardfax] > 1000,1,Dial(Zap/1|70) > 1000,n,Hangup > > ----- Original Message ----- From: "Bob McDowell" > <mcdowell.lists@gmail.com> > To: "Asterisk Users Mailing List - Non-Commercial Discussion" > <asterisk-users@lists.digium.com> > Sent: Tuesday, June 20, 2006 6:23 AM > Subject: [Asterisk-Users] faxdetect questions - Please HELP! > > >> I'm using IAXmodem and Hylafax with 'faxdetect=incoming' and things >> mostly >> work pretty well. My main lines come in via T1 DID. Today, HR got >> tired of >> having someone read and forward their faxes to them and requested we >> bring >> their physical machine back on line. I have been able to get the fax >> forwarded to the appropriate zap channel, but I cannot seem to get it to >> stop 'faxdetect'ing. After deciding that it is a fax and sending it >> to the >> proper zap channel Asterisk says: >> >> -- Executing Dial("Zap/5-1", "Zap/105") in new stack >> -- Called 105 >> -- Zap/105-1 is ringing >> -- Redirecting Zap/5-1 to fax extension >> -- Hungup 'Zap/105-1' >> >> ...and Hylafax gets it... >> >> Now the questions: >> >> 1) How can I have 'faxdetect=incoming' for my T1 context and >> 'faxdetect=no' >> for my internal zap channels. (I'm assuming that this is what's wrong >> here...) >> 2) Is it instead possible to disable faxdetect for the duration of the >> call? E.g. exten => fax,1,zapFAXDETECT(off) >> 3) Is there a better way to mix detected faxes and dedicated fax lines? >> 4) Can anyone share with me a config that accomplishes this feat (both >> detected and dedicated)? >> > > >---------------------------------------------------------------------------- ---- _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Colin Anderson
2006-Jun-21 15:15 UTC
[Asterisk-Users] Re: faxdetect questions - Please HELP!
yes. works fine. -----Original Message----- From: Lee Howard [mailto:faxguy@howardsilvan.com] Sent: Wednesday, June 21, 2006 2:48 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! Colin Anderson wrote:>I have > 200 IAXModem's running on my HylaFAX server, no problem. >Are you running an iaxmodem for every user? Lee. _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Colin Anderson
2006-Jun-21 21:26 UTC
[Asterisk-Users] Re: faxdetect questions - Please HELP!
example config, please? -----Original Message----- From: Lee Howard [mailto:faxguy@howardsilvan.com] Sent: Wednesday, June 21, 2006 5:31 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! Okay, if that's easiest for you. Most people would have run enough iaxmodems to handle the load and then use the DID for routing the faxes, rather than the device. Lee. Colin Anderson wrote:>yes. works fine. > >-----Original Message----- >From: Lee Howard [mailto:faxguy@howardsilvan.com] >Sent: Wednesday, June 21, 2006 2:48 PM >To: Asterisk Users Mailing List - Non-Commercial Discussion >Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! > > >Colin Anderson wrote: > > > >>I have > 200 IAXModem's running on my HylaFAX server, no problem. >> >> >> > >Are you running an iaxmodem for every user? > >Lee. >_______________________________________________ >--Bandwidth and Colocation provided by Easynews.com -- > >Asterisk-Users mailing list >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ >--Bandwidth and Colocation provided by Easynews.com -- > >Asterisk-Users mailing list >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >_______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Colin Anderson
2006-Jun-22 07:07 UTC
[Asterisk-Users] Re: faxdetect questions - Please HELP!
aha. I have it the other way around: Dial(IAX2/iaxmodem/${CALLERIDNUM}) anyway, it works perfecly fine so I think I'll leave it, the administrative overhead (other than setting it up in the first place) is low, and the system is very reliable. -----Original Message----- From: Lee Howard [mailto:faxguy@howardsilvan.com] Sent: Wednesday, June 21, 2006 10:30 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! The iaxmodem README and sample configuration files should contain what you need. A call comes in and you send it to iaxmodem: Dial(IAX2/iaxmodem/${DID}) The iaxmodem then sends the DID to HylaFAX as an "NDID" response to AT+VCID=1 or AT+VRID=1 (see the HylaFAX modem configuration file). Then HylaFAX passes that through as a $CALLID variable to your FaxDispatch script. And there you use it to determine your $SENDTO setting. Lee. Colin Anderson wrote:>example config, please? > >-----Original Message----- >From: Lee Howard [mailto:faxguy@howardsilvan.com] >Sent: Wednesday, June 21, 2006 5:31 PM >To: Asterisk Users Mailing List - Non-Commercial Discussion >Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! > > >Okay, if that's easiest for you. Most people would have run enough >iaxmodems to handle the load and then use the DID for routing the faxes, >rather than the device. > >Lee. > > >Colin Anderson wrote: > > > >>yes. works fine. >> >>-----Original Message----- >>From: Lee Howard [mailto:faxguy@howardsilvan.com] >>Sent: Wednesday, June 21, 2006 2:48 PM >>To: Asterisk Users Mailing List - Non-Commercial Discussion >>Subject: Re: [Asterisk-Users] Re: faxdetect questions - Please HELP! >> >> >>Colin Anderson wrote: >> >> >> >> >> >>>I have > 200 IAXModem's running on my HylaFAX server, no problem. >>> >>> >>> >>> >>> >>Are you running an iaxmodem for every user? >> >>Lee. >>_______________________________________________ >>--Bandwidth and Colocation provided by Easynews.com -- >> >>Asterisk-Users mailing list >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users >>_______________________________________________ >>--Bandwidth and Colocation provided by Easynews.com -- >> >>Asterisk-Users mailing list >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users >> >> >> >> >> > >_______________________________________________ >--Bandwidth and Colocation provided by Easynews.com -- > >Asterisk-Users mailing list >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ >--Bandwidth and Colocation provided by Easynews.com -- > >Asterisk-Users mailing list >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >_______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users