Re: [asterisk-users] Quoting error with gotoiftime

2013-01-25 Thread Danny Nicholas
Error doesn't occur in 11.2.1 -- Executing [1260@default:1] Answer(SIP/sipuser-0001, ) in new stack -- Executing [1260@default:2] Goto(SIP/sipuser-0001, scottsdale#queues-account,s,1) in new stack -- Goto (scottsdale#queues-account,s,1) -- Executing

Re: [asterisk-users] Quoting error with gotoiftime

2013-01-25 Thread Danny Nicholas
Where possible you should have a VM to try these things as needed. Where not, it isn't too difficult to duplicate the contexts and do something like this [default] . . Exten = 1260,1,answer Exten = 1260,n,goto(test-context,s,1) . From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] Asterisk 11 / Missing Application SetCallerPres

2013-01-24 Thread Danny Nicholas
Simplest question first. Does it show up in core show applications or core show application SetCallerPres? If not, do a make menuselect and see if something broke in the ability to make the application. -Original Message- From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] Integration with Social Media, Email and Web call center

2013-01-24 Thread Danny Nicholas
and Web call center And how would you have this working together with Asterisk queueing? I have seen solutions like this using agent pauses and then making everyithing happen outside the normal ACD flow, but it's a bit of a hack l. 2013/1/22 Danny Nicholas da...@debsinc.com

Re: [asterisk-users] Integration with Social Media, Email and Web call center

2013-01-24 Thread Danny Nicholas
This is how I would see the process working 1. use curl/wget to query Facebook (etc.) 2. determine whether we are to drop a call into the queue or just process a message 3. determine agent availability through AMI process or asterisk -rx process. 4. drop the call into the queue or place the

Re: [asterisk-users] question on SIP trunk and AMI to place call

2013-01-24 Thread Danny Nicholas
Not the greatest solution, but since you are most likely using a script for the AMI process, you could do an Asterisk –rx “core show channels verbose”|grep SIP/testmachine-000d And get the dialed number from that. Actually you could issue the AMI command core show channels verbose.

Re: [asterisk-users] question on SIP trunk and AMI to place call

2013-01-24 Thread Danny Nicholas
This might have changed but IIRC /etc/asterisk/manager.conf controls what events you have access to. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Thursday, January 24, 2013 1:14 PM To: Asterisk Users Mailing List -

Re: [asterisk-users] clicking sound with alaw codec

2013-01-24 Thread Danny Nicholas
Your sounds might be too loud. We use a lot of custom sounds here and when the volume approaches 0 db (asterisk standard is -3 db) we get fuzz and clicks. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of

Re: [asterisk-users] Execute a script outside Asterisk

2013-01-23 Thread Danny Nicholas
I would vote for system() on two accounts. #1 AGI requires more overhead and protocol #2 you are not expecting a result to return to the dialplan. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jonas Kellens Sent: Wednesday,

Re: [asterisk-users] Execute a script outside Asterisk

2013-01-23 Thread Danny Nicholas
for your answer. The most important here is that Asterisk continues with the rest of the dialplan, in case the database-connection fails or hangs or ... I don't think the System()-command makes this true. Jonas. On 01/23/2013 03:27 PM, Danny Nicholas wrote: I would vote for system() on two

Re: [asterisk-users] Execute a script outside Asterisk

2013-01-23 Thread Danny Nicholas
something Exten = s,n,Dial(SIP/peer3,,10) ; dial peer 3 Exten = s,n,hangup() The peer MUST be dialed even if the script Jonas.php is still running. Jonas. On 01/23/2013 03:44 PM, Danny Nicholas wrote: Let's assume you're using this snippet [default] Exten = s,1,answer() Exten = s,n

Re: [asterisk-users] two steps when calling from web!

2013-01-23 Thread Danny Nicholas
Originate is the answer here. Let’s say your X-lite is SIP/100 and you’re dialing 555-1212. From the x-lite you dial 555-1212 and Asterisk does a dial command to execute the call. From the web, we “originate” the call from SIP/100 to 555-1212. Asterisk makes sure SIP/100 is available then

Re: [asterisk-users] Is there a need to secure RTP ports?

2013-01-23 Thread Danny Nicholas
As I am going to mis-explain this, an Asterisk SIP call originates on port 5060 (incoming or outgoing) then uses two RTP ports for audio in and audio out. Police and Hackers can tap into the RTP ports to monitor your conversations (I don't really know if the capabilities stop there) but you can

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
You are obviously getting the call connected, so the subnet issue is moot. What this sounds like (pardon the pun) to me is an rtp skip issue. The working calls are generating rtp connections in the allowed range; the other calls have one or more ports outside of your rtp range. Verify that all

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
-0006 answered Gtalk/+xx-2310 == Spawn extension (gtalk_incoming, r...@gmail.com, 4) exited non-zero on 'Gtalk/+xx-2310' On 1/22/13 11:21 AM, Danny Nicholas wrote: You are obviously getting the call connected, so the subnet issue is moot. What this sounds like (pardon

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
://wiki.asterisk.org/wiki/display/AST/Calling+using+Google -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 10:51 AM To: Danny Nicholas Cc: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Google voice with no voice

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
If you needed a MITM, nothing would work now. The incoming call is connecting, but no voice or no connection at all? -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 11:56 AM To: Danny Nicholas Subject: Re: [asterisk-users] Google voice

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
To: Danny Nicholas Cc: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Google voice with no voice Hi, No, it's not even connecting. On the caller side, I do not see anything showing that the called party picks up. On the D70 side, when I pick up, I have

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
What about jabber show channels? -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 1:12 PM To: Danny Nicholas Cc: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Google voice with no voice *CLI core show

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
This is incoming, outgoing or idle (no call)? -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 1:21 PM To: Danny Nicholas Cc: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Google voice with no voice

Re: [asterisk-users] Google voice with no voice

2013-01-22 Thread Danny Nicholas
This sounds like a codec issue. Set your verbose to 10 and retry the incoming call. -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 1:26 PM To: Danny Nicholas Cc: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re

Re: [asterisk-users] Asterisk, Digium phones, and voicemail.

2013-01-22 Thread Danny Nicholas
Theoretically you can do this Exten = 370,1,Voicemailmain(D70@default) -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Frank Sent: Tuesday, January 22, 2013 2:28 PM To: Asterisk Users Mailing List -

Re: [asterisk-users] Asterisk, Digium phones, and voicemail.

2013-01-22 Thread Danny Nicholas
That one's not in my wheelhouse since I only use Polycom phones. Google D70 Provisioning -Original Message- From: Frank [mailto:fr...@efirehouse.com] Sent: Tuesday, January 22, 2013 2:49 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Cc: Danny Nicholas Subject: Re

Re: [asterisk-users] Capture queue agent drop and put caller back in queue

2013-01-22 Thread Danny Nicholas
Not doubting how quickly Nagios can respond, but if the Nagios solution is going to place a call using Asterisk, wouldn’t it be just as efficient (or more so) to depend on Asterisk? From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of

Re: [asterisk-users] Capture queue agent drop and put caller back in queue

2013-01-22 Thread Danny Nicholas
...@nyigc.com] Sent: Tuesday, January 22, 2013 4:12 PM To: ch...@acsdi.com; Asterisk Users Mailing List - Non-Commercial Discussion; Danny Nicholas Cc: Benny Amorsen Subject: RE: [asterisk-users] Capture queue agent drop and put caller back in queue Using qualify=10 ? -Original Message- From

Re: [asterisk-users] Integration with Social Media, Email and Web call center

2013-01-22 Thread Danny Nicholas
For just the messaging part, you should be able to use wget or curl to interface and create messages. You might have to go a little higher level like C or Perl, but it sounds very doable. -Original Message- From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] MoH with message on intervals

2013-01-21 Thread Danny Nicholas
The simplest way to do it would be to use sox to remix your moh file with the message like this: Let's say you're using the standard file macroform-cold_day.wav. First you split it into two minute segments like so Sox macroform-cold_day.wav seg1.wav trim 0.0 120.0 Sox macroform-cold_day.wav

Re: [asterisk-users] How to give users the capability to set CDR userfield for some calls

2013-01-18 Thread Danny Nicholas
Since Gosub is technically an application, you should be able to modify this snippet in features.conf testfeature = #9,peer,Playback,tt-monkeys ;Allow both the caller and callee to play ;;tt-monkeys to the opposite channel To this testfeature =

Re: [asterisk-users] Annoying delay after main server goes down

2013-01-18 Thread Danny Nicholas
I think this is a “phone problem” not an “asterisk” one. In my experience a SIP (IP) phone takes about 20 seconds to properly negotiate (re)registration (longer for Polycom 501’s). The best work-around I could recommend would be to have an intermediate interface like kamailio (sp) that handles

Re: [asterisk-users] rtptimeout: how to detect it in dialplan?

2013-01-18 Thread Danny Nicholas
As I read it you can do it like this: From http://www.voip-info.org/wiki/view/Asterisk+sip+rtptimeout Exten = s,1,noop (set rtptimeout so we can have 2 timeouts on a dial) Exten = s,n,Set(rtptimeout=60) Exten = s,n,Dial(SIP/peer1,60) Exten = s,n,Dial(SIP/peer2,60) Haven't tested this.

Re: [asterisk-users] Issue after upgrade to 1.8.20 - Unable to connect to remote asterisk message on service asterisk start

2013-01-18 Thread Danny Nicholas
-Commercial Discussion Subject: Re: [asterisk-users] Issue after upgrade to 1.8.20 - Unable to connect to remote asterisk message on service asterisk start On Wed, Jan 16, 2013 at 1:37 PM, Danny Nicholas da...@debsinc.com wrote: Same issue exists with 11.2 I've created issue 20945 to track

Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A. Sent: Tuesday, January 15, 2013 6:07 PM To: asterisk-users@lists.digium.com Subject: [asterisk-users] special conference room Hi list, I am in need of a

Re: [asterisk-users] Issue after upgrade to 1.8.20 - Unable to connect to remote asterisk message on service asterisk start

2013-01-16 Thread Danny Nicholas
Same issue exists with 11.2 -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Bakko Sent: Wednesday, January 16, 2013 1:27 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re:

Re: [asterisk-users] N Priority in Mysql

2013-01-16 Thread Danny Nicholas
n priority is a runtime value set by the dialplan. To use it in a database, you would have to update the database using something like dialplan show context. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Roy

Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
From what I read, neither confbridge or meetme have the whisper feature built-in; This doesn't matter because the moderator would have to use meetmeadmin or the confbridge equivalent to control the other functions. The moderator would either need two phones or a phone and a web interface. Let's

Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
be a showstopper that i may have not explained clear enough...: muting and unmuting a caller should have the effect, that the caller can talk to the moderator or not... any caller should NEVER hear what other callers are talking... may he be muted or not... yves Am 16.01.2013 23:01, schrieb Danny

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
I would suggest this Exten = _0666XX,1,answer() Exten = _0666XX,n,playback(tt-monkeys) Exten = _0666XX,n,hangup() You could just hangup on them, but playing the screeching monkeys will get the message to them to leave you alone. From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
of calls from this number _0666XX and i wants to block it to call my number 520xx . 2013/1/14 Danny Nicholas da...@debsinc.com Exten = _0666XX,1,answer() Exten = _0666XX,n,playback(tt-monkeys) Exten = _0666XX,n,hangup

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
Yes. This is referred to in the documentation as ex-girlfriend logic. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of isr...@gmail.com Sent: Monday, January 14, 2013 10:57 AM To: Asterisk Users Mailing List -

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
If you're worth the trouble to change my dialplan for, you should suffer some torture for calling me. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Carlos Alvarez Sent: Monday, January 14, 2013 11:06 AM To:

Re: [asterisk-users] Set Language for VoiceMailMain

2013-01-11 Thread Danny Nicholas
AFAIK, the ${CHANNEL(language)} is what controls each. If you wanted to answer the phone in English, then do voicemails in different languages, this should work: [default] Exten = s,1,Answer() Exten = s,n,Set(CHANNEL(language)=en) - redundant since default is en Exten =

Re: [asterisk-users] Which tool to edit custom reports from CDR and queues logs ?

2013-01-11 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Olivier Sent: Friday, January 11, 2013 4:22 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Which tool to edit custom reports from CDR and queues

Re: [asterisk-users] Set Language for VoiceMailMain

2013-01-11 Thread Danny Nicholas
Discussion Subject: Re: [asterisk-users] Set Language for VoiceMailMain Thanks you for your answer. There is no language-parameter that can define the language of mailbox and VoiceMailMain ? Jonas. On 01/11/2013 03:33 PM, Danny Nicholas wrote: AFAIK, the ${CHANNEL(language)} is what controls

Re: [asterisk-users] Set Language for VoiceMailMain

2013-01-11 Thread Danny Nicholas
/2013 04:07 PM, Danny Nicholas wrote: No. It is purposely set from the dialplan. In Asterisk 11.X you have the [zonemessage] section in voicemail.conf that could probably be tweaked to change the language without dialplan changes. Also in sip.conf you can set language by peer so you could have

Re: [asterisk-users] Set Language for VoiceMailMain

2013-01-11 Thread Danny Nicholas
Subject: Re: [asterisk-users] Set Language for VoiceMailMain Well, I thought you had tried it and thus could tell it with 100% certainty. Thanks for your help. Jonas. On 01/11/2013 04:16 PM, Danny Nicholas wrote: Since the peer language sets CHANNEL(language), I can say yes with reasonable

Re: [asterisk-users] How often to restart Asterisk...

2013-01-11 Thread Danny Nicholas
The general rule seems to be, don't restart it unless there's a problem or you hear of memory leaks. I had a version of 1.4 that I restarted every night because I read about memory leaks, but I hear of 1.2 installs that have been running continuously for 10 years. From:

Re: [asterisk-users] Your thoughts and opinions on Asterisk 11 for production use

2013-01-10 Thread Danny Nicholas
I don't presently have 11 in production, but in each case where I've put 11 in on top of 10.X the process has been relatively seamless, so I expect my 10.X boxes will go to 11.X sometime this year. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com]

Re: [asterisk-users] Streaming/Recording audio

2013-01-09 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Grant Bagdasarian Sent: Wednesday, January 09, 2013 4:25 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Streaming/Recording audio Regarding the streaming of audio.

Re: [asterisk-users] AstDB with Sqlite

2013-01-09 Thread Danny Nicholas
that it is correct for sqlite? For what i know it should contain select or inser operator in dialplan. Correct if i am wrong. On Oct 19, 2012 9:18 AM, Danny Nicholas da...@debsinc.com wrote: Just use the standard dialplan db commands - Read Set(TESTOP=${DB(Nightop/ext)}) write Set(DB(Nightop/ext)=107

Re: [asterisk-users] IVR platform for a mobile operator

2013-01-09 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of luke devon Sent: Wednesday, January 09, 2013 9:06 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] IVR platform for a mobile operator Hi Friends , I want to setup a

Re: [asterisk-users] IVR platform for a mobile operator

2013-01-09 Thread Danny Nicholas
On Jan 9, 2013 8:38 PM, Danny Nicholas da...@debsinc.com wrote: From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of luke devon Sent: Wednesday, January 09, 2013 9:06 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] IVR

Re: [asterisk-users] IAX2 support of video

2013-01-08 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Monday, January 07, 2013 6:53 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] IAX2 support of video According to this:

Re: [asterisk-users] Streaming/Recording audio

2013-01-08 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Grant Bagdasarian Sent: Tuesday, January 08, 2013 9:24 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Streaming/Recording audio Hello Users, I've been searching for

Re: [asterisk-users] Paging unit suggestions

2013-01-07 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Doug Lytle Sent: Monday, January 07, 2013 2:10 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Paging unit suggestions We currently have an

Re: [asterisk-users] IAX2 support of video

2013-01-07 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Monday, January 07, 2013 3:58 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] IAX2 support of video Does

Re: [asterisk-users] Paging for Praying

2013-01-07 Thread Danny Nicholas
Whether you use .call file or AMI, you should still do the call/page using a context and that context run the PHP script. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of bilal ghayyad Sent: Monday, January 07,

Re: [asterisk-users] faxdetect on/off on the fly?

2013-01-04 Thread Danny Nicholas
. Thanks. On 3 January 2013 17:21, Danny Nicholas da...@debsinc.com wrote: From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of David Cunningham Sent: Thursday, January 03, 2013 3:13 PM To: Asterisk Users Mailing List - Non-Commercial

Re: [asterisk-users] Calender and EWS with shared calenders

2013-01-04 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Magnus Löfqvist Sent: Friday, January 04, 2013 4:46 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Calender and EWS with shared calenders Hi

Re: [asterisk-users] DAHDI: How to know since when it is used? How to shutdown after max time?

2013-01-03 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Leandro Dardini Sent: Thursday, January 03, 2013 2:53 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] DAHDI: How to know since when it is used?

Re: [asterisk-users] Moving User Agent To Remote Location

2013-01-03 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Nick Khamis Sent: Thursday, January 03, 2013 11:47 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Moving User Agent To

Re: [asterisk-users] Moving User Agent To Remote Location

2013-01-03 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jason Parker Sent: Thursday, January 03, 2013 2:26 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Moving User Agent

Re: [asterisk-users] Moving User Agent To Remote Location

2013-01-03 Thread Danny Nicholas
Just for grins, run netstat -anp on the call using just Asterisk and then again with OpenSIPS in the mix. It sounds like OpenSIPS or your RTPproxy is block the audio channels. -- _ -- Bandwidth and Colocation Provided by

Re: [asterisk-users] faxdetect on/off on the fly?

2013-01-03 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of David Cunningham Sent: Thursday, January 03, 2013 3:13 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] faxdetect on/off on the fly? Hello, We

Re: [asterisk-users] Dialing out and recording

2013-01-02 Thread Danny Nicholas
Put the AGI call in a macro context and add M(macro) to your Dial string. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Henrik Westerberg Sent: Wednesday, January 02, 2013 8:02 AM To: asterisk-users@lists.digium.com Subject:

Re: [asterisk-users] Users list email totals by year .

2013-01-02 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Doug Lytle Sent: Wednesday, January 02, 2013 7:09 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Users list email totals by year . So

Re: [asterisk-users] Dialing out and recording

2013-01-02 Thread Danny Nicholas
of it. Is there a way to do this or do I have to use G() and connect the both ends to AGI separately and then bridging them before recording the call? Thanks for help. Regards, Henrik Danny Nicholas Sent: Wednesday, January 02, 2013 8:18 AM Put the AGI call in a macro context and add M(macro

Re: [asterisk-users] Top Posting

2013-01-02 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Eric Wieling Sent: Wednesday, January 02, 2013 9:54 AM To: ch...@acsdi.com; Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users]

Re: [asterisk-users] Top Posting

2013-01-02 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Richard Kenner Sent: Wednesday, January 02, 2013 10:00 AM To: asterisk-users@lists.digium.com Subject: Re: [asterisk-users] Top Posting I'm the opposite. I'm

Re: [asterisk-users] Top Posting

2013-01-02 Thread Danny Nicholas
Grow up, follow the rules, have a good day. JohnM PS. Did not intend to imply that it was Steve that hijacked the thread, in case anyone read my comment that way JohnM Steve has waded through enough of these that he should be a hijacker. --

Re: [asterisk-users] Asterisk as answering machine

2013-01-02 Thread Danny Nicholas
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ron Wheeler Sent: Wednesday, January 02, 2013 2:31 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Asterisk as answering

Re: [asterisk-users] Dialing out and recording

2013-01-02 Thread Danny Nicholas
1.6.2 is a deader soldier than 1.4.X. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Henrik Westerberg Sent: Wednesday, January 02, 2013 3:20 PM To: asterisk-users@lists.digium.com Subject: Re:

Re: [asterisk-users] Auto ban IP addresses

2013-01-02 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Carlos Alvarez Sent: Wednesday, January 02, 2013 4:54 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Auto ban IP addresses On Wed, Jan 2,

Re: [asterisk-users] Top Posting

2012-12-31 Thread Danny Nicholas
*** *** Until Monopolysoft fixes Outlook, I think we should Middle Post - Happy New Year to New Zealand! *** *** -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live

Re: [asterisk-users] Top Posting

2012-12-31 Thread Danny Nicholas
My assembler may be a little bit rusty, but wouldn't -1 against rule #5 = +1 for rule #5? -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every

Re: [asterisk-users] Top Posting

2012-12-31 Thread Danny Nicholas
Wouldn't the answer to that violate family forum rules (see Charlie Sheen jokes) -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Don Kelly Sent: Monday, December 31, 2012 11:18 AM To: 'Asterisk Users Mailing

Re: [asterisk-users] Delaying retry since we're currently running

2012-12-28 Thread Danny Nicholas
My best guess is that you are creating the .call file with permissions that don’t allow Asterisk to delete it when it is finished or retries have been exhausted. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Necati Demir Sent:

Re: [asterisk-users] Asterisk with Cisco 887M

2012-12-27 Thread Danny Nicholas
Shouldn't be difficult. You're just setting up the Cisco box as a SIP gateway. Here's a link to get you started. http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/8_6_1/ccmcfg/b06gtw ay.html From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] stop log/debug messages into /var/log/messages

2012-12-27 Thread Danny Nicholas
If it is writing to /v/l/m, then it is coming from somewhere else. All Asterisk messages go to /v/l/asterisk. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of DHAVAL INDRODIYA Sent: Thursday, December 27, 2012 3:32 AM To: Asterisk

Re: [asterisk-users] Paging for Praying

2012-12-27 Thread Danny Nicholas
I would set up 5 shell files called pray1.sh, pray2.sh, etc and then set up 5 entries in /etc/crontab to run them at the specified time daily. The file pray1.sh should look something like this: #!/bin/sh cp /pray1/*.call /tmp mv /tmp/*.call /var/spool/asterisk/outgoing the entry in

Re: [asterisk-users] How do *you* test your changes to dialplans ruled by GotoIfTime?

2012-12-27 Thread Danny Nicholas
The simplest way to address this kind of change is to test it a week (month) or so in advance on your test machine (we have VM's set up to mock our live machines). A protection against last minute changes is to have this kind of thing controlled by variables so you can possibly even avoid

Re: [asterisk-users] How do *you* test your changes to dialplans ruled by GotoIfTime?

2012-12-27 Thread Danny Nicholas
I would say that the database method has the advantage over GotoIfTime in that it should stay the same between releases. More headache on the front end, but easier once it is up and running. -Original Message- From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] $100 Bounty: Level 3/Asterisk/Adtran T.38 Pass-Through

2012-12-27 Thread Danny Nicholas
#1 I assume you have spandsp installed #2 I'm guessing you got some hints from this thread - https://issues.asterisk.org/jira/browse/ASTERISK-18394 ? -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New

Re: [asterisk-users] $100 Bounty: Level 3/Asterisk/Adtran T.38 Pass-Through

2012-12-27 Thread Danny Nicholas
Asterisk. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Danny Nicholas Sent: Thursday, December 27, 2012 4:29 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] $100 Bounty

Re: [asterisk-users] Called Party Name between Asterisk systems

2012-12-21 Thread Danny Nicholas
It may depend on the asterisk version, but in theory you should just be able to set callerid(num) and callerid(name) before doing the IAX2 dial. You should always specify the Asterisk version you are using as features often change or are available/not available between different releases.

Re: [asterisk-users] asterisk 11 and DAHDI/i4

2012-12-20 Thread Danny Nicholas
The Asterisk 11 part is irrelevant. You need to use an AGI or local call to use the ChanIsAvail function. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Thursday, December 20, 2012 11:03 AM To: Asterisk Users

Re: [asterisk-users] asterisk 11 and DAHDI/i4

2012-12-20 Thread Danny Nicholas
IMO the local channel call should be the lowest overhead option available. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Thursday, December 20, 2012 11:42 AM To: Asterisk Users Mailing List - Non-Commercial

Re: [asterisk-users] asterisk 11 and DAHDI/i4

2012-12-20 Thread Danny Nicholas
Just for grins, do you have a softphone like xlite that you can try the outgoing call on? I think it's an outgoing issue, not a polycom one. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent:

Re: [asterisk-users] It's possible a redudant Queue?

2012-12-14 Thread Danny Nicholas
In my experience, you should set up two identical queues and configurations. With a little work, you should be able to let server 1 know the phone is in use by server 2 and vice versa. -Original Message- From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] Digital accoustics trying to register to asterisk 1.4.43

2012-12-13 Thread Danny Nicholas
Please post the sip.conf entry with any confidential data xxx'ed out. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Thursday, December 13, 2012 2:09 PM To: Asterisk Users Mailing List -

Re: [asterisk-users] Digital accoustics trying to register to asterisk 1.4.43

2012-12-13 Thread Danny Nicholas
The two things I would try are changing type from friend to peer and sendrpid from no to yes. The no matching peer usually means the device username isn't matching the sip.conf username=. -Original Message- From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] Digital accoustics trying to register to asterisk 1.4.43

2012-12-13 Thread Danny Nicholas
This animal might be like the OBI110 box where you set it up in users.conf instead of sip.conf. Something like this: [5001] transfer=yes call-limit=5 registersip=no host = 1.2.3.4 context=default hasvoicemail=no dtmfmode=inband threewaycalling=no hasdirectory=no callwaiting=no

Re: [asterisk-users] Digital accoustics trying to register to asterisk 1.4.43

2012-12-13 Thread Danny Nicholas
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Thursday, December 13, 2012 3:34 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Digital accoustics trying to register to

Re: [asterisk-users] disconnect supervision

2012-12-11 Thread Danny Nicholas
Could be, but I'd check the easier to fix polarity settings. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Joseph Sent: Tuesday, December 11, 2012 11:27 AM To: asterisk-users@lists.digium.com Subject:

Re: [asterisk-users] disconnect supervision

2012-12-11 Thread Danny Nicholas
On 12/11/12 11:30, Danny Nicholas wrote: Could be, but I'd check the easier to fix polarity settings. How do I do that? Notice, that this channel hang-up/disconnect does not happen all the time, only once a while could be once a day or once a week. -- Joseph

Re: [asterisk-users] MACRO_CONTEXT equivalent for GoSub

2012-12-11 Thread Danny Nicholas
You don't state version, but I'm pretty sure this animal doesn't exist. What I did in 1.4 was to set a variable before the gosub so I could track it. Something like this Exten = s,n,Set(from=foo) Exten = s,n,gosub(showfoo,s,1) Exten = s,n,Set(from=bar) Exten = s,n,gosub(showfoo,s,1) [showfoo]

Re: [asterisk-users] deadagi on 11 and 1.4

2012-12-10 Thread Danny Nicholas
Put a GLOBAL in extensions.conf with the version and use GOTOIF to run AGI/DEADAGI dependent on it. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Monday, December 10, 2012 10:01 AM To:

Re: [asterisk-users] Is there an issue with 11.0.2 and registration

2012-12-10 Thread Danny Nicholas
Sounds like a registration timeout issue. What does the sip.conf entry look like for these? From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Jerry Geis Sent: Monday, December 10, 2012 10:30 AM To: Asterisk Users Mailing List -

Re: [asterisk-users] Problem with SIP trunk I've set up between two * boxes.

2012-12-10 Thread Danny Nicholas
Does each box show up in the others SIP SHOW PEERS? -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ken D'Ambrosio Sent: Monday, December 10, 2012 2:59 PM To: asterisk-users@lists.digium.com Subject:

Re: [asterisk-users] BLF and call-limit in 1.8

2012-12-06 Thread Danny Nicholas
Not sure about this since I use the 10/11 branches and not 1.8, but I think you need to use the deprecated call-limit for BLF and the new busylimit for the other features you need. http://www.voip-info.org/wiki/view/Asterisk+config+sip.conf From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] [OT] Polycom IP450 Firmware Issues

2012-12-06 Thread Danny Nicholas
What happens if you reinitialize a phone, then do the update? (I keep a bottle of Ibuprophen on hand just for Polycom issues). -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Tim Nelson Sent: Thursday, December

  1   2   3   4   5   6   7   8   9   10   >