Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Kevin P. Fleming

On 05/23/2012 08:41 PM, Cody Harris wrote:

Hello All,
I use IAX2 as the incoming connection from my DID provider.  For
whatever reason, this works best for me, SIP connections lag very
frequently and only have about a 50% success rate for incoming calls
(they get dropped mysteriously).

I'm trying to implement a fax/voice switch.  I have faxdetect=both in my
sip.conf, and when I use sip, it works well.  However, from what I can
tell, there's no such option for IAX2 connections.

Any ideas on what I can do here, or am I out of luck?


It's quite hard to provide suggestions since we don't know what version 
of Asterisk you are using. However, in Asterisk 10, there is a 
channel-agnostic FAX detection function that can be applied to any 
channel type, so at a minimum that is one way to solve your problem.


--
Kevin P. Fleming
Digium, Inc. | Director of Software Technologies
Jabber: kflem...@digium.com | SIP: kpflem...@digium.com | Skype: kpfleming
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at www.digium.com  www.asterisk.org

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Tim Nelson
- Original Message -
 On 05/23/2012 08:41 PM, Cody Harris wrote:
  Hello All,
  I use IAX2 as the incoming connection from my DID provider.  For
  whatever reason, this works best for me, SIP connections lag very
  frequently and only have about a 50% success rate for incoming
  calls
  (they get dropped mysteriously).
 
  I'm trying to implement a fax/voice switch.  I have faxdetect=both
  in my
  sip.conf, and when I use sip, it works well.  However, from what I
  can
  tell, there's no such option for IAX2 connections.
 
  Any ideas on what I can do here, or am I out of luck?
 
 It's quite hard to provide suggestions since we don't know what
 version
 of Asterisk you are using. However, in Asterisk 10, there is a
 channel-agnostic FAX detection function that can be applied to any
 channel type, so at a minimum that is one way to solve your problem.
 

BUT, even if fax is detected on an IAX2 channel, the only reason would be to 
change dialplan logic accordingly correct? There is no T.38 equivalent within 
IAX2, which means the OP will be handling faxes over a clear VoIP channel. The 
information here is of utmost relevance:

http://hylafax.sourceforge.net/docs/fax-over-voip.pdf

--Tim

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Kevin P. Fleming

On 05/24/2012 09:44 AM, Tim Nelson wrote:

BUT, even if fax is detected on an IAX2 channel, the only reason would be to 
change dialplan logic accordingly correct? There is no T.38 equivalent within 
IAX2, which means the OP will be handling faxes over a clear VoIP channel. The 
information here is of utmost relevance:

http://hylafax.sourceforge.net/docs/fax-over-voip.pdf


Absolutely correct.

--
Kevin P. Fleming
Digium, Inc. | Director of Software Technologies
Jabber: kflem...@digium.com | SIP: kpflem...@digium.com | Skype: kpfleming
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at www.digium.com  www.asterisk.org

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Cody Harris
I'm running on 1.8 as of now
On May 24, 2012 11:00 AM, Kevin P. Fleming kpflem...@digium.com wrote:

 On 05/24/2012 09:44 AM, Tim Nelson wrote:

 BUT, even if fax is detected on an IAX2 channel, the only reason would be
 to change dialplan logic accordingly correct? There is no T.38 equivalent
 within IAX2, which means the OP will be handling faxes over a clear VoIP
 channel. The information here is of utmost relevance:

 http://hylafax.sourceforge.**net/docs/fax-over-voip.pdfhttp://hylafax.sourceforge.net/docs/fax-over-voip.pdf


 Absolutely correct.

 --
 Kevin P. Fleming
 Digium, Inc. | Director of Software Technologies
 Jabber: kflem...@digium.com | SIP: kpflem...@digium.com | Skype: kpfleming
 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
 Check us out at www.digium.com  www.asterisk.org

 --
 __**__**_
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
  
 http://lists.digium.com/**mailman/listinfo/asterisk-**usershttp://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Cody Harris
Sorry I hit send by mistake (touchscreens, sigh)

I've had good success with faxing over voip, I'm not expecting it to be
perfect, and my provider (voip.Ms) is planning on t.38, but I'm looking for
an interm solution. Audio faxing has worked every attempt both sending
receiving (5 and 5).

Should I update to asterisk 10 for this?

Thanks,
Cody
On May 24, 2012 11:00 AM, Kevin P. Fleming kpflem...@digium.com wrote:

 On 05/24/2012 09:44 AM, Tim Nelson wrote:

 BUT, even if fax is detected on an IAX2 channel, the only reason would be
 to change dialplan logic accordingly correct? There is no T.38 equivalent
 within IAX2, which means the OP will be handling faxes over a clear VoIP
 channel. The information here is of utmost relevance:

 http://hylafax.sourceforge.**net/docs/fax-over-voip.pdfhttp://hylafax.sourceforge.net/docs/fax-over-voip.pdf


 Absolutely correct.

 --
 Kevin P. Fleming
 Digium, Inc. | Director of Software Technologies
 Jabber: kflem...@digium.com | SIP: kpflem...@digium.com | Skype: kpfleming
 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
 Check us out at www.digium.com  www.asterisk.org

 --
 __**__**_
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
  
 http://lists.digium.com/**mailman/listinfo/asterisk-**usershttp://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread A J Stiles
On Thursday 24 May 2012, Cody Harris wrote:
 I'm trying to implement a fax/voice switch.  I have faxdetect=both in my
 sip.conf, and when I use sip, it works well.  However, from what I can
 tell, there's no such option for IAX2 connections.
 
 Any ideas on what I can do here, or am I out of luck?

Why not just get an extra inbound number from your provider, and use that for 
your faxes?  Saves a lot of fart-arsing around.  (Providers are now beginning 
to issue numbers beginning with a 0, thus requiring the STD code to be dialled 
even for a call within the same town.  Would be ideal for a fax line.)

-- 
AJS

Answers come *after* questions.

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detecting Fax Tones over IAX2

2012-05-24 Thread Cody Harris
I had considered this, however, I was trying not to buy another DID. It may
end up being the best solution.
On May 24, 2012 12:26 PM, A J Stiles asterisk_l...@earthshod.co.uk
wrote:

 On Thursday 24 May 2012, Cody Harris wrote:
  I'm trying to implement a fax/voice switch.  I have faxdetect=both in my
  sip.conf, and when I use sip, it works well.  However, from what I can
  tell, there's no such option for IAX2 connections.
 
  Any ideas on what I can do here, or am I out of luck?

 Why not just get an extra inbound number from your provider, and use that
 for
 your faxes?  Saves a lot of fart-arsing around.  (Providers are now
 beginning
 to issue numbers beginning with a 0, thus requiring the STD code to be
 dialled
 even for a call within the same town.  Would be ideal for a fax line.)

 --
 AJS

 Answers come *after* questions.

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users