IRC log for #asterisk on 20130607

00:04.16*** join/#asterisk italorossi (~italoross@187.61.168.117)
00:10.26*** join/#asterisk vlad_starkov (~vlad_star@109.188.127.172)
00:20.54*** join/#asterisk serafie (~erin@user-24-214-173-250.knology.net)
00:20.58*** join/#asterisk blee (~blee@67.8.206.215)
00:36.12*** join/#asterisk c|oneman (cloneman@2605:6400:2:fed5:22:0:3b06:3913)
00:36.29c|onemanis there a voip/sip troubleshooting channel? I have an aastra phone
00:36.33*** join/#asterisk dtascom (~dtascom@cpe-142-129-156-205.socal.res.rr.com)
00:41.23*** join/#asterisk m0spf (~steve@2001:ba8:1f1:f12e::2)
00:44.27*** join/#asterisk petris (znc@ip-50-62-86-130.ip.secureserver.net)
01:03.43*** join/#asterisk Maliuta (~nobusines@kiev.lusan.id.au)
01:18.24*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
01:26.54*** join/#asterisk hebber (~hebber@node-14pg.pool-125-25.dynamic.totbb.net)
01:28.09flingAre g723 and g726 good?
01:29.11*** join/#asterisk mintos (~mvaliyav@114.143.44.1)
01:31.57hebberNever tried them
01:39.57flingI have a lot of these warnings in console > WARNING[9773]: chan_sip.c:7370 in sip_write: Can't send 10 type frames with SIP write
01:50.19*** join/#asterisk serafie (~erin@user-24-214-173-250.knology.net)
02:18.50*** join/#asterisk hackeron (~hackeron@gentoo/user/hackeron)
02:22.04*** join/#asterisk retentiveboy (~pdugas@74-95-28-33-Atlanta.hfc.comcastbusiness.net)
02:27.41*** join/#asterisk timahvo1 (~rogue@41.212.120.45)
02:33.57*** join/#asterisk timahvo1 (~rogue@41.212.120.45)
02:41.55igcewielingAsterisk does not fully support g723.1 so don't use it
03:31.27*** join/#asterisk fakhir (~fakhir@unaffiliated/fakhir)
03:43.16*** join/#asterisk timahvo1 (~rogue@41.212.120.45)
03:46.17*** join/#asterisk andrewyager (~andrewyag@ip-103-23-189-136.static.daraco.com.au)
03:46.41*** join/#asterisk mintos (mvaliyav@nat/redhat/x-btfnaebxienbvgoc)
03:51.06*** join/#asterisk darkbasic_ (~quassel@niko.linuxsystems.it)
03:54.51*** join/#asterisk andrewyager (~andrewyag@syd02s26-fw01.thecore.net.au)
03:57.51*** join/#asterisk ledoktre (~ledoktre@bb-155-182.omnitelcom.com)
03:59.43ledoktreGreetings all.  I was on here earlier working with some fellas trying to figure out a regex that would set my ${CALLERID{NUM}) to UNKNOWN if the variable presently contained anything but numerals.  I had some issues with the proper usage of {} [] and () (when to use them), but I think Ive got that sorted out.  Right now, with a simple test, I cannot get the regex to parse :
04:01.55ledoktreSet(test=${REGEX("[\D]" 1AA2345)})   and Set(test=${REGEX("[\D]" 12345)})    with either one, it returns test=0
04:02.37ledoktreI would have expected the first one to return 1 as it contains "AA" in the string?
04:04.10igcewielinghave you tried [^\d]  maybe Asterisk's regex does not support \D
04:05.06ledoktreigcewieling : so we meet again ;)  No, I haven't tried that one.  Im pretty new to regex
04:05.10ledoktreI'll give it a shot
04:05.13igcewielingor adding a + after the ]
04:06.36igcewielingor better yet just to be paranoid "^[^\d]+$"
04:07.32igcewielingBTW, most people put the num and name in lower case.  CALLERID(num) because that is how it is documented
04:10.25ledoktreigcewieling: thanks for the tips regex and syntax.  Thats all I was after earlier, I didn't intend for it to turn into anything.
04:11.34apb1963watches all the hot groupies groping igcewieling
04:13.34apb1963Are those screams of terror I hear?
04:14.02ledoktreigcewieling:  *sighs*.  I I've got two lines  s,2,Set(testnum=${REGEX("^[^\d]+$" 12345)}) and s,3,Set(testalpha=${REGEX("^[^\d]+$" 12AA345)}).  The output is testnum=1 and testalpha=1.  I think I'm either missing something obvious or it just hates me ;)
04:15.08igcewielingregex is not easy.  ask on #regex
04:15.18igcewielingand go read the book
04:15.33igcewielingusing numbered priorities is like driving a model-t
04:16.00apb1963those are worth a lot of money regardless of condition
04:16.07apb1963:)
04:16.15igcewieling~book
04:16.15infobotAsterisk: The Definitive Guide, 3rd Edition (ISBN 0-596-51734-3) available at http://oreilly.com/catalog/9780596517342 - Asterisk: The Definitive Guide is released under a Creative Commons License (http://creativecommons.org/licenses/by-nc-nd/3.0/us/) and is available for reading online at http://www.asteriskdocs.org/ or see ~buybook
04:18.55ledoktreigcewieling: I'll have to read up on what you mean by not using numbered priorities (but another day I guess).  Ive used Asterisk for a number of years but never really got into it.  Never knew anything else came down the pipe besides numered priorities ;)
04:19.02ledoktrethanks though.
04:19.46igcewielingledoktre: The "n" priority was added around 2005
04:22.12ledoktreigcewieling:  time flies I guess when your having fun
04:22.33apb1963ledoktre: Replace your priority numbers with an "n", except for the first one ("1"), and you're good to go.
04:23.26ledoktreapb1963: thanks, I'll give that a try.   The last time I got into trying to program stuff was back when I bought this yellow book, "VoIP Telephony with Asterisk" by Paul Mahler.  I bought it back when it was new (2003? 2004?)
04:23.44ledoktreStill got it on the shelf (though it probably doesn't cover much anymore)
04:24.37*** join/#asterisk aruntomar (~Thunderbi@49.248.158.113)
04:30.04apb1963does asterisk support the full regex library?  Or does it have it's own internal idea of what regex should do?
04:31.54*** join/#asterisk aruntomar (~Thunderbi@49.248.158.113)
04:34.37*** join/#asterisk vinhdizzo (~vinh@cpe-66-74-182-202.socal.res.rr.com)
04:39.08ledoktreigcewieling:  In case you are curious, I figured it out (mostly).  You can see the details here : https://issues.asterisk.org/jira/browse/ASTERISK-20715
04:39.08LieutPants[ASTERISK-20715] [Status: Closed] REGEX function ignores shorthand character starting with backslash - https://issues.asterisk.org/jira/browse/ASTERISK-20715
05:01.07*** join/#asterisk linocisco (~linocisco@193.134.242.12)
05:03.47linociscohi all
05:04.01linociscois there any digium asterisk training in Thailand?
05:06.31flingIs 'Panasonic KX-TG6611' good if I need a cheap dect phone?
05:07.03flingI have an old d-link pata, I want to use CallerID
05:11.15*** join/#asterisk gerhard7 (~gerhard7@77-172-47-159.ip.telfort.nl)
05:38.19*** join/#asterisk Nemus (~Nemus@unaffiliated/nemus)
05:45.54linociscofling, check this out http://www.google.com/url?q=http%3A%2F%2Fwww.citel.com%2FProducts%2FPortico%2FSpec_Sheets%2FPresentation.pps
05:46.00linociscosave ur money
05:47.01*** join/#asterisk bn-7bc (~bjarne-im@2001:16d8:ee6c:1:12dd:b1ff:febc:87ff)
05:48.08*** join/#asterisk vfabi (~fabi@host-static-93-116-255-140.moldtelecom.md)
05:48.52linociscohttp://www.citel.com/Products/Portico/Spec_Sheets/Presentation.pps
05:49.42*** join/#asterisk andrewyager (~andrewyag@cocnswfw.daraco.com.au)
05:53.14*** join/#asterisk Wiretap (~wiretap@unaffiliated/wiretap)
06:07.38flinglinocisco: Presentation.pps: Composite Document File V2 Document, corrupt: Can't read SAT
06:08.23flingWhat is that?
06:10.04kaldemarnothing useful.
06:10.34*** join/#asterisk santa0536 (~santa@cn-bgp-nat.portaone.com)
06:11.13kaldemarjust an ATA, called a TVA this time.
06:12.54flingkaldemar: hello ;p
06:19.23kaldemarhowdy
06:34.27*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
06:38.47*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
06:44.14*** join/#asterisk andrewyager (~andrewyag@syd02s26-fw01.thecore.net.au)
06:52.09*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
06:57.06*** join/#asterisk vlad_starkov (~vlad_star@109.188.124.126)
06:59.51*** join/#asterisk vlad_starkov (~vlad_star@109.188.124.126)
07:05.06*** join/#asterisk evil_gordita (robert@ip70-188-56-12.rn.hr.cox.net)
07:08.29*** join/#asterisk vlad_starkov (~vlad_star@91.206.59.134)
07:11.04*** join/#asterisk vlad_sta_ (~vlad_star@109.188.127.239)
07:20.32*** join/#asterisk Rumbles (~Rumbles@31.205.54.123)
07:21.54*** join/#asterisk qdel (~Rholk@bny92-1-82-67-178-101.fbx.proxad.net)
07:32.13*** join/#asterisk Faustov (user@gentoo/user/faustov)
07:35.14*** join/#asterisk sekil (~sekil@78.24.104.73)
07:37.29*** join/#asterisk goddva (~glarsen@77.40.154.242)
07:37.44goddvaWe have a small server where we have PostgreSQL 9.2.4 installed together with Asterisk (VOIP) service. We used to run the same setup with MySQL, but had major problems with locking, so therefore the change. Now we are experiencing choppy/stuttering sound during calls, and we really cant figure out why. The memory is low, the IO is low, and the CPU is low. Any ides where to start?
07:41.07ectospasmwhat technology (DAHDI/SIP/etc...) are these calls using?
07:44.49ectospasmgoddva: ^
07:50.25goddvaSIP only
07:50.49*** join/#asterisk felimwhiteley_ (~quassel@89.101.203.26)
07:50.56goddvano transcoding, alaw to alaw
07:54.42*** join/#asterisk c0rnoTa (~c0rnoTa@78.24.154.190)
07:54.49*** join/#asterisk ujjain (ujjain@unaffiliated/ujjain)
07:55.43*** part/#asterisk c0rnoTa (~c0rnoTa@78.24.154.190)
07:57.20*** join/#asterisk troyt (~troyt@2001:1938:240:2000::3)
08:06.45*** join/#asterisk k610 (~K610@cred.epid.ucl.ac.be)
08:07.15*** join/#asterisk nickfennell (~nickfenne@unaffiliated/nickfennell)
08:09.36*** join/#asterisk bulkorok (~chatzilla@gw1.pinguin.ag)
08:09.37*** join/#asterisk amizraa (~amizraa@gateway/tor-sasl/amizraa)
08:20.23*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
08:20.26bulkorokhi
08:22.18*** join/#asterisk qdel (~Rholk@bny92-1-82-67-178-101.fbx.proxad.net)
08:41.09*** join/#asterisk sekil (~sekil@78.24.104.73)
08:42.47*** join/#asterisk Chainsaw (~chainsaw@gentoo/developer/chainsaw)
08:52.09mirela666Hi all
08:52.42mirela666<PROTECTED>
08:53.11mirela666odbc read ODBC_AgentByCode HOT,48 exec
08:53.12mirela666interface             SIP/FonliderPBX/381648854461
08:53.12mirela666Returned 1 row.  Query executed on handle 0 [LocalMySQLD]
08:53.50mirela666But when I try to retrive it, value is empty
08:53.53mirela666Set(ResultSet=${ODBC_AgentByCode(${DefaultQueue},${Option})});
08:54.14mirela666-- Executing [~~s~~@macro-DivertWithCode:1] Set("SIP/mirko-0000000a", "ResultSet=") in new stack
08:57.50*** join/#asterisk kresp0 (~kresp0@35.Red-83-39-25.dynamicIP.rima-tde.net)
09:05.17*** join/#asterisk eject_ck (~Eugene@95.67.72.22)
09:05.33eject_ckhi
09:05.35eject_ck[2013-06-07 12:05:02] WARNING[2703]: db.c:329 ast_db_put: Couldn't execute statment: SQL logic error or missing database
09:05.45eject_ckWhat DB this is about ?
09:06.09kaldemarastdb, i.e. the internal database.
09:10.26kaldemarmirela666: what do you have in ${DefaultQueue} and ${Option}?
09:11.40mirela666kaldemar: HOT,48 strings for examle
09:12.23kaldemarthat's what you assume them to contain. what do they contain?
09:12.29mirela666kaldemar: for that exact example
09:13.08mirela666I logged them with Log and got thesame thing
09:13.11mirela666a sec
09:14.14mirela666kaldemar:         LOG(ERROR,DefaultQueue ${DefaultQueue});
09:14.14mirela666<PROTECTED>
09:14.14mirela666<PROTECTED>
09:15.16mirela666<PROTECTED>
09:15.17mirela666[Jun  7 11:14:44] ERROR[22236]: Ext. ~~s~~:1 @ macro-DivertWithCode: DefaultQueue HOT_PERSONAL
09:15.17mirela666<PROTECTED>
09:15.17mirela666[Jun  7 11:14:44] ERROR[22236]: Ext. ~~s~~:2 @ macro-DivertWithCode: Option 48
09:15.17mirela666<PROTECTED>
09:15.20Greenlight~pb
09:15.21infobotA "pastebin" is a web-based service where you should paste anything over 3 lines so you don't flood the channel. Here are links to a few: http://www.pastebin.com, http://pastebin.ca, http://channels.debian.net/paste, http://paste.lisp.org, http://bin.cakephp.org/; or install pastebinit with yum or aptitude.
09:15.54mirela666http://pastebin.com/1XJFabA9
09:16.06mirela666sorry
09:17.12mirela666aha they are different
09:17.20kaldemarthe output doesn't match your CLI command.
09:19.56mirela666yes, I use like in sql but in a wrong way
09:20.15GreenlightIf I comment out a property against a peer in sip.conf, and "sip reload" doesn't pick up the change, would that be considered a bug?
09:20.41*** part/#asterisk eject_ck (~Eugene@95.67.72.22)
09:27.45*** join/#asterisk danfromuk (~IceChat77@unaffiliated/danfromuk)
09:29.54mirela666kaldemar: Thx for felp, Got it working now :)
09:36.53*** join/#asterisk hehol (~hehol@2001:1438:1009:200:d41e:dfd7:5634:f3b8)
09:40.56*** join/#asterisk bn-7bc (~bjarne-im@2001:16d8:ee6c:1:12dd:b1ff:febc:87ff)
09:57.43*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
10:26.27*** join/#asterisk k611 (~K610@cred.epid.ucl.ac.be)
10:26.38*** join/#asterisk ghost75 (~trechber@dslb-178-002-146-211.pools.arcor-ip.net)
10:47.59*** join/#asterisk evilsk4ter (~evilsk4te@187.60.66.11)
10:54.15*** join/#asterisk vlad_starkov (~vlad_star@195.68.167.197)
10:54.54*** join/#asterisk kresp0 (~kresp0@35.Red-83-39-25.dynamicIP.rima-tde.net)
10:58.23*** join/#asterisk andrewyager (~andrewyag@syd02s26-fw01.thecore.net.au)
11:04.25*** join/#asterisk vlad_starkov (~vlad_star@91.206.59.136)
11:08.42*** join/#asterisk vlad_sta_ (~vlad_star@195.68.167.197)
11:11.13*** join/#asterisk andrewyager (~andrewyag@syd02s26-fw01.thecore.net.au)
11:15.17*** join/#asterisk liamjfoy (~liamjfoy@unaffiliated/liamjfoy)
11:15.30*** join/#asterisk bn-7bc (~bjarne-im@2001:16d8:ee6c:1:12dd:b1ff:febc:87ff)
11:16.48liamjfoyI have everything working in asterisks. However, when I call out the mobile phone receives the call. Upon answer my SIP phone keeps ringing and the mobile user can't hear anything. Is this something to do with RTP?
11:19.43kaldemarliamjfoy: sounds like your asterisk is behind a NAT and you're using a SIP provider to dial out. correct?
11:20.21liamjfoyThe asterisk machine is a routable IP. The SIP phone is at home yes (can receive calls).
11:20.53liamjfoyI am using a provider, yes.
11:24.07kaldemarso a NAT between asterisk and the phone?
11:24.15liamjfoyYes..
11:25.01kaldemaryo most likely have a re-invite going on and need to disable that. what version of asterisk are you using?
11:26.45liamjfoyasterisk-1.8.20
11:26.52liamjfoyOK, I'll look into that.
11:27.31liamjfoyAh, that's directmedia? I have that disabled already
11:28.35kaldemarnat=yes and directmedia=no for the phone. if that doesn't help, enable sip debug and verbosity, make a call and pastebin the output.
11:29.40*** join/#asterisk StaRetji (~LittleAll@91.142.129.1)
11:29.48StaRetjiHowdy folks.
11:31.13StaRetjiI have problem where some times sip user can't hear ringtone.  Is there a way to play fake ring if real ringtone is not heard. I was reading progressinband, 180 and 183, but couldn't quite catch it
11:32.13*** join/#asterisk Rumbles (~Rumbles@host81-133-228-3.in-addr.btopenworld.com)
11:32.29StaRetjiI have option in Gateway SIP 183, but I also have option SIP 180 then 183
11:32.49StaRetjiis SIP 180 then 183 what I am looking for?
11:43.33sekil180 would mean the far endpoint to do local ringing..
11:46.43StaRetjithx sekil, I figure that out, but I am not sure does 180 then 183 means to do local ringing until 183?
11:48.29*** join/#asterisk FiReSTaRT (~dlyh@unaffiliated/firestart)
11:57.30*** join/#asterisk italorossi (~italoross@187.60.66.11)
12:03.41GreenlightIt's unusual to get both 180 and 183 in my experiance
12:04.11Greenlight183 is session progress, and is mostly the remote end playing ringing
12:04.38*** join/#asterisk [TK]D-Fender (~chatzilla@216-191-106-163.dedicated.allstream.net)
12:04.41GreenlightAlthough some IVR's use this to play non-ringing
12:04.48GreenlightSo you want to play what it sends to avoid confusion
12:05.01StaRetjithx Greenlight
12:05.31StaRetjiI have tested and I alway here telco ringing, which is good
12:05.39StaRetjihear telco ringing*
12:05.46StaRetjibut, I have a sip peer
12:05.57StaRetjiand he also get's 183
12:06.04StaRetjibut his client doesn't
12:06.09StaRetji:/
12:06.14GreenlightWhat do you mean his client doesnt ?
12:06.35StaRetjihis sip user, of my sip peer (another sip server)
12:06.53StaRetjihear sound, call is okay, only he doesnt hear ring tone
12:06.54GreenlightSo, you send 183 "progress" ?
12:07.09StaRetjiyes, because works for me and works for my sip peer
12:07.17StaRetjiit doesn't work for his client
12:07.20GreenlightBUt he doesn't hear anything
12:07.37StaRetjiit is like this, his client makes a call, no sound until ANSWER
12:07.43GreenlightAt a guess I'd think that was a possible NAT type issue
12:07.47StaRetjionce ANSWER, he hear sounds
12:07.50GreenlightIf you are using directmedia?
12:07.57StaRetjiyes, I am
12:08.01GreenlightYes, thats the issue
12:08.03GreenlightSo;
12:08.07StaRetjiI should turn it off?
12:08.14Greenlight*before* the lines connects there is no directmedia
12:08.28StaRetjiaha
12:08.31Greenlight*after* the line connects you send a RE-INVITE and so end to end media flows
12:08.37StaRetjigot it
12:08.44GreenlightThe problem is that for some reason the media from your server to him isn't getting through
12:08.59GreenlightOnce it's connected, the end points speak direct and so it's a non-issue
12:09.23StaRetjiso, actually, if I understand well, directmedia=yes is causing this?
12:09.29StaRetjior I am wrong?
12:09.31GreenlightUmm no
12:09.41GreenlightWell, if you disabled directmedia you'd have no audio whatsoever :)(
12:09.47StaRetjiaha, got you
12:09.58StaRetjiso, directmedia is helping me to get audio at all
12:10.02GreenlightDouble check your network settings in sip.conf
12:10.05StaRetjibut is not active until ANSWER
12:10.19StaRetjinat=yes
12:10.26StaRetjibut actually, I have public IP
12:10.28GreenlightYes, directmedia kicks in at answer, when it'll send a "REINVITE" connecting both endpoints RTP
12:10.39Greenlightlocalnet set correctly ?
12:10.49Greenlightexternip set ?
12:10.59StaRetjihm, now that you say, it is not
12:11.15StaRetjishould be public ip/255.255.255.0 ?
12:11.35Greenlightexternip should be your externalip address
12:11.48Greenlight255.255.255 isn't an address, it's a netmask
12:11.57StaRetjiyes, in my case it is already public
12:12.01StaRetjilike 1.2.3.4
12:12.17StaRetjithen, localnet should be 1.2.3.0/255.255.255.0
12:12.18StaRetjiright?
12:12.51GreenlightUsually something line 192.168.1.0/255.255.255.0
12:13.00GreenlightBUt that depends on your LAN size
12:13.08StaRetjiyes, but I dont have local subnet
12:13.15GreenlightThen you don't need that
12:13.16StaRetjiI have directly 1 ip on eth0
12:13.31GreenlightSince there are no local networks
12:13.32StaRetjiI can ; comment it?
12:13.42GreenlightYes, you should be able to
12:13.45StaRetjiwell, there is VPN at local address
12:13.52StaRetjisorry for confusion
12:13.59GreenlightIs you peer connecting from the internet ?
12:14.05StaRetjiyes
12:14.19StaRetjiand I have them several, there issue with only 1
12:14.21GreenlightJust ensure externip is set correctly then
12:14.35GreenlightHmm... the problem could be at his side then
12:14.55StaRetjihow about localnet? I have vpn and gateways connecting trough 10.0.1.0/24 vpn network
12:14.56GreenlightDo you have nat=yes against his peer ?
12:15.02StaRetjiyes, I have
12:15.14GreenlightYes, if you have VPN then treat that as the localnet
12:15.22StaRetjiok, I see now
12:15.27StaRetjidirectmedia=nonat
12:15.36StaRetjithat is my settings in sip.conf
12:16.20StaRetjiso, basicaly, I haven't touch anything now, as it is okay, public ip is external ip
12:16.30StaRetjilocalnet is vpn subnet
12:16.42StaRetjionly I am not sure if directmedia=nonat is good or no
12:17.07GreenlightI would tend to have directmedia=no
12:17.21GreenlightBut in your case I think this may cause issues with this particular peer
12:17.32GreenlightI suspect they've got a "SIP=-aware" router or something
12:17.37GreenlightAt a guess
12:17.48*** join/#asterisk protocoldoug (~doug@unaffiliated/protocoldoug)
12:18.03GreenlightTo be sure you'll need to get a SIP trace of the call
12:18.10StaRetjiI understand
12:18.35StaRetjithank you so much Greenlight, I really appreciate your time
12:18.38GreenlightRight. Lunch :)
12:18.40Greenlightnp
12:21.57*** join/#asterisk sekil (~sekil@78.24.104.73)
12:23.50*** join/#asterisk italorossi (~italoross@187.60.66.11)
12:24.55*** join/#asterisk mihamina (~mihamina@41.188.46.121)
12:38.49*** join/#asterisk mjordan (~mjordan@nat/digium/x-adczgfdqfrslaiuq)
12:38.49*** mode/#asterisk [+o mjordan] by ChanServ
12:42.41GreenlightStaRetji: Just had a thought, as a quick fix/hack you *may* be able to get that peer working by doing directrtpsetup=yes
12:45.25*** join/#asterisk Tarso (~Tarso@186.215.70.48)
12:49.06*** join/#asterisk Cuzner (~ccuzner@198.41.29.45)
12:51.11*** join/#asterisk jmetro (~nickserv@75-150-221-198-Illinois.hfc.comcastbusiness.net)
12:55.57StaRetjiHi Greenlight, thx, will add it
12:56.26*** join/#asterisk serafie (~erin@nat/digium/x-hwudfdpmqvbatnlq)
12:58.35*** join/#asterisk vlad_starkov (~vlad_star@83.220.238.228)
13:01.23StaRetjiGreenlight, 1 more question mate
13:01.28*** join/#asterisk mjordan (~mjordan@nat/digium/x-hmcjfhiwkypijryp)
13:01.29*** mode/#asterisk [+o mjordan] by ChanServ
13:01.36StaRetjiis it possible to send fake ring only to 1 sip user?
13:01.53StaRetjifor example, if I have 3 users, 2 will have early media, no fake ring
13:02.00StaRetjiand this one will have fake ring?
13:02.22*** join/#asterisk davlefouAMD (~david@41.225.172.115)
13:02.58GreenlightHmm... the "Ringing" application will send a 180 ringing. However, I'm not sure if there's a way to supress a 183 if that's coming from the other side
13:03.05GreenlightFor a single peer
13:03.27Greenlightmaybe with an arguemnt to Dial
13:04.00GreenlightAhh yes, "r"
13:04.30GreenlightSo, when that peer makes a call, you'll need to pass the "r" argument to Dial
13:04.49GreenlightHowever, it's generally bad practice
13:04.52StaRetjiI follow you
13:04.59GreenlightTake for example, you're calling into PSTN
13:05.01StaRetjiyes, I have r removed for all outgoung calls
13:05.14GreenlightAnd 183 audio is "This number is currently out of service, please try later"
13:05.24GreenlightYou are replacing that with a ringing sound
13:05.28GreenlightSo your users keep calling
13:05.43StaRetjiyes, yes, well
13:06.26StaRetjistill, I have no clue how to pass r to one particular user :/
13:06.39WIMPyIt's not easy to get such announcements to the phones anyway.
13:07.09GreenlightUnder normal circumstances such audio would pass though
13:08.15WIMPyWhat do you call normal? I had lots of issues trying to get that with dahdi.
13:08.38GreenlightAhh I was meaning with SIP
13:08.45GreenlightDAHDI can be different
13:09.44GreenlightIn fact ISDN30 seems to differ from one call to another
13:09.55GreenlightSometimes "ringing", sometimes "progress"
13:10.00GreenlightLeast with Virgin Media here in UK
13:10.05WIMPyI don;t get anythign from the ITSPs, either.
13:10.24GreenlightYou're ITSP's don't generate any ringing ?
13:10.46WIMPyThat's probably due to what the called party does.
13:11.19WIMPyNFI who generates the ringin. Never looked in to that.
13:11.36WIMPyI hardly ever use the ITSPs anyway.
13:12.21GreenlightWith our AMI application we need to be aware very accurately when the other end has actually started to ring, with DAHDI it was a pain to abstract it all out
13:13.10WIMPyHmm. Shpuld be pretty obvious.
13:25.14*** join/#asterisk brad_mssw (~brad@shop.monetra.com)
13:27.34*** join/#asterisk serafie1 (~erin@nat/digium/x-zxoiuvgzgyjvbezh)
13:34.27*** join/#asterisk zpotoloom (~toomas@tom.data.ee)
13:41.10*** join/#asterisk italorossi (~italoross@187.60.66.11)
13:42.22*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
13:44.39*** join/#asterisk SeRi (~wtf@pdpc/supporter/professional/seri)
14:12.34*** join/#asterisk vfabi (~fabi@host-static-178-132-134-55.moldtelecom.md)
14:16.51carrarmoof
14:18.17*** part/#asterisk StaRetji (~LittleAll@91.142.129.1)
14:33.11*** join/#asterisk TimeRider (~steve@0546d828.skybroadband.com)
14:33.39*** join/#asterisk coppice (~chatzilla@123203240234.ctinets.com)
14:42.39*** join/#asterisk gerhard7 (~gerhard7@77-172-47-159.ip.telfort.nl)
14:44.25*** join/#asterisk bmg505 (~leon@196-209-99-92.dynamic.isadsl.co.za)
14:45.04*** join/#asterisk heffer (felix@fedora/heffer)
14:49.23flingsip guests are calling me but I don't hear anything :|
14:58.40igcewielingWhoo!  Whoo!  We finally found a customer to take all those horrible Polycom VVX500s we have
15:01.30*** join/#asterisk blee (~blee@50-89-200-235.res.bhn.net)
15:01.46carrarwhats wrong with them?
15:03.06igcewielingfor one thing the interface is laggy and they like to randomly reboot
15:04.15*** join/#asterisk sruffell (~sruffell@nat/digium/x-lyjbrxxwyckxynmz)
15:04.15*** mode/#asterisk [+o sruffell] by ChanServ
15:04.19*** join/#asterisk mmlj4 (1000@ip68-11-55-215.no.no.cox.net)
15:04.36igcewielingI'll take a SoundPoint IP with actual real buttons that actually read your input every time
15:05.01mmlj4as opposed to which? I missed it
15:05.43igcewielingmmlj4: VVX
15:06.21mmlj4hey igcewieling... I picked up a gig replacing 650 switches at tulane, factory defective dells, they're paying me to die of boredom, should last 4 months, start next week
15:07.39*** join/#asterisk vinhdizzo (~vinh@cpe-66-74-182-202.socal.res.rr.com)
15:08.20*** join/#asterisk Takapa (vegard@svanberg.no)
15:08.39mmlj4"Premium-quality desktop voice and video solutions" and the buttons don't work? nice
15:09.25igcewielingmmlj4: they don't have many buttons, mostly touch screen
15:09.49*** join/#asterisk pabelanger (~pabelange@asterisk/contributor-and-bug-marshal/pabelanger)
15:09.49*** mode/#asterisk [+o pabelanger] by ChanServ
15:09.53mmlj4ah.
15:12.10*** join/#asterisk nickfennell (~nickfenne@unaffiliated/nickfennell)
15:15.15*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.231)
15:19.51carrarnice
15:26.40*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
15:38.47*** join/#asterisk Addisk (~WhyYouLoo@pool-173-60-252-44.lsanca.fios.verizon.net)
15:49.27*** join/#asterisk Addisk (~WhyYouLoo@pool-173-60-252-44.lsanca.fios.verizon.net)
15:56.15*** join/#asterisk anthm (~anthm@freeswitch/developer/anthm)
15:56.44Kattyhi lads.
15:56.47GreenlightHmm... say I have in-band DTMF as would be getting passed from PSTN. Is there any way to "strip" that out of band, or prevent the DTMF tones being distinguisable at the other end?
15:56.48Kattyand tony.
15:57.12jmetrohi chattykatty
15:57.18Kattywaves to jmetro
15:57.22Kattyjmetro: how stuff n things
15:57.37jmetromy big ol system i was working on for the past 5 months just went live
15:57.44Katty:>>
15:57.46KattyWOOHOO!
15:57.50Kattyfistbump jmetro
15:57.50WIMPyGreenlight: If the receiving channel  can do it...
15:57.55jmetro\o/
15:58.08jmetroonly problem is users & our operator panel
15:58.13Kattyjmetro: running smoothly, for the most part?
15:58.24Kattywhich OP you using?
15:58.35jmetroisymphony
15:58.42Kattyah yes. our users like that one too
15:58.50GreenlightWIMPy: Can you explain? Basically I want the call recordings not to have the DTMF tones on them (don't mind a generic tone to replace). It's to do with compliance
15:58.58Kattyused to be one of the guys that worked at isymphony hung ou in the channel
15:59.00jmetroits nice except for some really bad parts.. that are so easy to fix but lazy devs
15:59.04jmetroprobably myera
15:59.10Kattyhis name was mike
15:59.12jmetrohes the sole tech support guy
15:59.26jmetromichael yera =p
15:59.33WIMPyGreenlight: Usually if it comes in-band, it stays in-band even if out-of-bad is added. What channel?
15:59.36Kattyyup, that's the one!
15:59.40Kattysweet guy.
15:59.51GreenlightChannel ?
15:59.53jmetrohe is, but why u no add call duration to call history :<
16:00.04WIMPychanneltype
16:00.10Kattyjmetro: suggest it!
16:00.14jmetroi have
16:00.14GreenlightOh, it'll be SIP or DAHDI
16:00.20Kattyjmetro: (= all you can do
16:00.24jmetroisymphony 2 is feature frozen
16:00.29GreenlightI guessed that once in-band it's going to be hard to remove
16:00.49GreenlightI heard other companies replace the DTMF with a single tone
16:01.04*** join/#asterisk timahvo1 (~rogue@41.212.120.45)
16:01.13igcewielingAsterisk converts inband dtmf on dahdi to rc2833 dtmf all the time
16:01.25GreenlightBut doesn't it *stay* inband as well /
16:01.32igcewielingGreenlight: I'm not aware of any way to do what you want to do.
16:01.50igcewielingGreenlight: enable dtmf logging on your asterisk.
16:01.55GreenlightYea - I didn't think it would be easy
16:02.14WIMPyOh, even two channels.
16:02.23GreenlightI would need to somehow prevent RTP packets being passed when DTMF starts
16:02.37GreenlightPerhaps a custom function could do it
16:02.57WIMPyThat's probably a bit late.
16:03.17GreenlightAs long as I can detect before the RTP frame has been passed
16:03.24WIMPyWhat about postprocessing the recordings?
16:03.48GreenlightThe timing would need to be spot on
16:04.07jmetroKatty: and not to mention up until a couple days ago the conference function used meetme
16:04.28WIMPyThe thing is that dtmf will always begin before it's detected. So if you mute or replace when it's detected, it will probably be late enough to make it detectable again.
16:04.43GreenlightWIMPy: Damn, that was my fear
16:05.04Kattyjmetro: it's still a very easy to use product. that's awesome!
16:05.11GreenlightI guess I could add a few frames worth of latency, but now starting to go down a tricky path
16:05.49WIMPyAnd you add delay that way.
16:05.55GreenlightYes, indeed
16:06.10GreenlightBut any such solution would have to work like that I'd imagine
16:06.10*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
16:06.11jmetroKatty: it is easy to use except when it loses your custom view.
16:06.20jmetroalso, whats up with only seeing 1 parking context ? this isnt 1.4 anymore
16:07.05WIMPyGreenlight: Unless it's ok for you to do it after recording.
16:07.44GreenlightWIMPy: Not sure how that would sit with the compliance side; perhaps if it was before it left memory (ramdisK) and before it was accessible by anyone
16:08.04*** join/#asterisk Rumbles (~Rumbles@mail.solutiontelecom.co.uk)
16:09.31WIMPyCan the relevant DTMF come any time or is it just the resonse to a certain promt?
16:09.53GreenlightIt would be customers entering their credit card details via their keypads
16:10.23WIMPySo you could pase the recording while that part happens.
16:10.48GreenlightYea, we currently have that functionality where the agents take the details over the phone and pause the call recoriding
16:10.53WIMPypause
16:11.31GreenlightBut after some length discussions with compliance teams it seems they want even more secure solutions
16:11.48GreenlightI think giving the agents ability to pause recording, opens things up too much
16:13.01GreenlightAnd apparently there's another company doing this "tone-replace" thing with DTMF
16:13.48GreenlightWill see if I can fish some more details on it. Thanks for the input though, it's appriciated
16:15.42*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.231)
16:21.29*** join/#asterisk danfromuk (~IceChat77@unaffiliated/danfromuk)
16:25.39*** join/#asterisk yano (yano@freenode/staff/yano)
16:26.10smkellyfile: hi
16:30.31*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
16:37.02*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.231)
16:38.25Kobazso who wants to help fix a nasty sip problem
16:38.38jmetrosounds like a job for your doctor
16:38.56WIMPyLOL
16:40.16Kobazinsert $$, get fix
16:40.19Kobazany takers?
16:40.28*** part/#asterisk nickfennell (~nickfenne@unaffiliated/nickfennell)
16:41.29*** join/#asterisk timahvo1 (~rogue@41.212.120.45)
16:41.44*** join/#asterisk gerhard7 (~gerhard7@77-172-47-159.ip.telfort.nl)
16:41.53*** join/#asterisk TimeRider (~steve@0546d828.skybroadband.com)
16:41.58[TK]D-FenderKobaz: How about you just tell us what the problem is before people start guessing if they can fix it?
16:42.57Kobazwell people need the appropriate skill set first
16:43.07Kobazanyway... so this is happening very randomly
16:43.19Kobazphone a is doing a Dial(SIP/b)
16:43.44[TK]D-FenderSo acrual debug.  Half-assed description is WEAK SAUCE :p
16:43.46Kobazasterisk sends b the INVITE, b sends back OK.. asterisk waits.... and waits... and then complains it missed a critical packet and hangs up the call
16:43.47[TK]D-Fenderactual*
16:43.50Kobazyeah
16:44.00Kobazi have lots of debugs, i'll get one
16:44.11Kobazbut that's the gist
16:44.36Kobazso asterisk is not processing, or is ignoring the OK
16:44.41Kobazand never sends an ACK to the phone
16:45.12igcewielingOur customers, always trying to make us more profitable "  circuit is back up. Someone physically removed the cable connecting the T1 to the router. This was a billable dispatch.  "
16:45.25*** join/#asterisk aidinb (~aidin@unaffiliated/aidinb)
16:45.49mmlj4indeed it is
16:45.57igcewielingsounds like typical NAT issue, Kobaz
16:46.07Kobazyou would think it was a nat issue
16:46.12Kobazbut this is all LAN traffic
16:46.35Kobazand you can clearly see in the sip dump that the server gets the OK
16:46.42Kobazbut asterisk for whatever reason doesnt do anything with it
16:46.43igcewielingunless, of course, asterisk thinks the local LAN is behind NAT based on your sip.conf settings
16:47.00jmetroigcewieling: lol
16:47.05*** join/#asterisk cmendes0101 (~cmendes01@72.1.46.254)
16:47.21igcewielingKobaz: remove localnet= externip= externhost= and set directmedia=no and set nat=no
16:47.34jmetroigcewieling: the amount of times ive fixed something by turning it on... i had a user the other day plugged his POE switch into a POE brick and then back into the POE switch.
16:47.37Kobazanyway, downloading wireshark on this box to extract out the dialog
16:47.38*** join/#asterisk aruntomar (~Thunderbi@49.248.158.113)
16:47.53Kobazdirectmedia is definitely no
16:48.01Kobazand these phones definitely have nat=no
16:48.03Kobazwhat's weird
16:48.10igcewielingwhat about localnet?
16:48.14jmetroforce rport,comedia!
16:48.16*** join/#asterisk thehar (thehar@diddlebox.thehar.com)
16:48.21[TK]D-Fender...is that you're telling us this and still not showing...
16:48.25Kobazis if it was a nat type issue, then it wouldn't be so random i would think
16:48.32[TK]D-Fender</storytime>
16:48.34[TK]D-Fender<debug>
16:48.35Kobaz[TK]D-Fender: donwnloading
16:49.05igcewielingKobaz: if the sky opened up and god himself called me and the call failed, I'd say it was a NAT issue.
16:49.18Kobazi do have a localnet set
16:49.38igcewielingremove it as well as externip and see if the problem continues
16:49.39Kobazand it matches the phone subnet... hopefully it wont break anything
16:49.49Kobazi do have some remote phones
16:49.51igcewielingwhat was localnet= set to?
16:49.59Kobaz192.168.50.0/24
16:50.08igcewielingKobaz: so what?  you are troublehooting right now, they can go down for a while
16:50.14Kobazhaha
16:50.27Kobazif they go down again i'm screwed
16:50.40Kobazas in like... attack lawyers
16:51.20Kobazokay, wireshark installed
16:52.01mmlj4did you notify them that you were working on it? and they all know there's a ticket out on it, and they were the ones that opened it? drop their calls
16:53.01Kobazthis has been going on for weeks
16:53.07Kobazlots of people are pissed, etc
16:53.12Kobazamong other problems
16:57.30Kobazso anyway, gonna take a bit to grab this 50mb sip dump segment
16:57.46Kobazit doesn't help i'm remote
16:59.24mmlj4speaking of POE... I found that those little blue switches really, really don't like being plugged into POE :-)
16:59.43Kobazwhich blue switches?
16:59.57mmlj4linksys
17:00.09mmlj4or linksizzle...
17:00.27Kobazthe blue/black ones?
17:00.32Kobazi have ports die on those all the time
17:00.55mmlj4yeah, blue and black
17:01.06mmlj4POE seems to add more black to them
17:05.31*** join/#asterisk LokiScarlet (~loki@crantrap.cranberrytrap.org)
17:06.32*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.231)
17:06.59Kobazanyway, one of the vpn links is way slow... so i'll have the dump in a little
17:07.08Kobazgot the file using the better one
17:07.18LokiScarletBefore I get laughed at... Anyone mind an asterisknow user coming in with a question?
17:07.47igcewielingLokiScarlet: unlikely we can help
17:07.53blitzrageLokiScarlet: it's unlikely to get much traction
17:07.54Kobazwe dont know asterisknow
17:08.00blitzragewe use asterisk in a vanilla situation
17:08.03Kobazso probably you'll get some uneasy silencer
17:08.41LokiScarletI woulda used it all vanilla buuuuut I'm not the decision maker... And I don't think there's gonna be any activity in #asterisknow...
17:09.20igcewielingIsn't AsteriskNOW a dead product?
17:09.25jmetroi beleive yes.
17:09.41jmetrovanilla + realtime or nothin
17:10.06blitzrageigcewieling: no
17:10.25blitzrageigcewieling: AsteriskNOW 3.0.x was just released and uses Asterisk 11 as the base
17:10.32igcewielingI must be thinking of AsteriskGUI then
17:10.37LokiScarlet... Okay, I get it, I'm terrible at educating my boss. He's just as spiteful as I am.
17:10.39blitzrageonly FreePBX as the interface now though, as the Asterisk-GUI project is no longer receiving development from Digium
17:11.06igcewielingLokiScarlet: ask your question so we can get on with ignoring it
17:11.15jmetroi mean you could always ask, i think the first rule about asking is dont ask if you can ask
17:11.37jmetro~ask
17:11.37infobotQuestions in the channel should be specific, informative, complete, concise, and on-topic.  Don't ask if you can ask a question first.  Don't ask if a person is there; just ask what you intended to ask them.  Better questions more frequently yield better answers.  We are all here voluntarily or against our will.
17:11.37jmetro?
17:11.47leifmadsenbetter to ask for forgiveness than for permission
17:12.59[TK]D-Fenderleifmadsen: Previously there was a barely-nominal amount of development/support for Asterisk-GUI for some measure of Digium's corporate customers.  Is that now completely defunct?
17:13.41LokiScarletTrue. I'll get a more detailed error since my boss who likes to take control on the levels he's not educated for, tells me a million different office-jargon ways
17:14.12jmetrosynergize the workflow
17:14.22Kobaz[TK]D-Fender: allrightey... www.kobaz.net/misc/dump.pcap
17:14.36*** join/#asterisk fish9370 (~Miranda@mbox.fpg.ru)
17:15.30fish9370hello, who help me with dtmf read?
17:15.57WIMPyfish9370: Ask your question
17:16.15[TK]D-FenderKobaz: I accept 1 format of debug... you know that....
17:16.56Kobaz[TK]D-Fender: actually i just found out how to export as text... pastebin: http://pastebin.com/zkQZBn38
17:17.03fish9370when I read dtmf, when I pressed 1# asterisk still waiting button
17:17.03fish9370why?
17:17.05LokiScarletOkay so that was embarrassment for nothing. IT directors, I hate them so much. His anecdote matches none of the data. Sorry bout all that
17:17.55LokiScarlet(This is how I now find out that if I question his anecdotes and do my job, I start fights :P )
17:18.02fish9370but if I pressed 1#<some digit> it's break
17:18.33*** join/#asterisk TimeRider (~steve@timerider.plus.com)
17:18.36Kobaz[TK]D-Fender: server is 192.168.51.1, sip device is 192.168.51.20
17:18.52[TK]D-FenderKobaz: * SIP debug + verbose 10
17:18.54*** join/#asterisk jimi_ (~jimi@unaffiliated/tuxguy)
17:19.07[TK]D-FenderKobaz: I don't do substitutes.
17:19.08jimi_Is/wasn't there a command to show moduletypes? i tried core show moduletypes but that wasnt it
17:19.33[TK]D-Fenderfish9370when I read dtmf, when I pressed 1# asterisk still waiting button <- read where?
17:19.50*** part/#asterisk igcewieling (~igcewieli@ip98-183-25-31.pn.at.cox.net)
17:19.53[TK]D-Fenderfish9370: You are completely vague as to the circumstances...
17:20.12fish9370in agi get_data (function ast_readstring_full)
17:21.01*** join/#asterisk TimeRider (~steve@timerider.plus.com)
17:24.39KattyASTERISK. YEAH.
17:24.52[TK]D-Fenderfish9370: https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+AGICommand_get+data <- I don't see any mention of "#" being a terminator at all
17:24.54*** join/#asterisk danfromuk (~IceChat77@unaffiliated/danfromuk)
17:24.59Kattyhi fender bender
17:25.35fish9370[TK]D-Fender: I look at code, in function ast_readstring_full(struct ast_channel *c, char *s, int len, int timeout, int ftimeout, char *enders, int audiofd, int ctrlfd)
17:25.43fish9370here is enders
17:26.02danfromukHi. Where can I find an explanation of the different options of the 'events' AMI command?
17:26.05fish9370enders it's combination for end reading
17:26.27KattyQwell: o/
17:27.03QwellKatty: ohai
17:27.06Kattyhow'rechu dear
17:27.11QwellI be!
17:27.17Kattyand the ladyfriend, of course.
17:27.47Kattyeggscelent. glad you are being.
17:27.59QwellKatty: We're driving to OK tonight.
17:27.59jmetroDoke, OK?
17:28.01Kattyoooh shenanigans! my favorite!
17:28.05fish9370and when it's called, it's called as ast_readstring_full(c, s, maxlen, to, fto, "#", audiofd, ctrlfd);
17:28.13KattyQwell: what's on the OK agenda
17:28.19Kattyis always looking for new places to go
17:28.21fish9370where # is't enders
17:28.49fish9370[TK]D-Fender: ?
17:29.49WIMPydanfromuk: The wiki
17:29.49danfromukWIMPy: its not there. Just gives a list but no explaination.
17:29.56WIMPySo what exactely are you looking for?
17:30.25*** join/#asterisk luckman212 (~luckman21@unaffiliated/luckman212)
17:30.28danfromukJust want to understand the different options to ensure i'm excluding what i dont need.
17:30.41fish9370danfromuk: look at code
17:31.31LokiScarletAlright. Let's just say I'm using Asterisk and FreePBX on a CentOS6 box, using the asterisk and digium repos for CentOS. I can't seem to get a hold of the chan_console.so module and I dare not try to recompile asterisk manually with an IT director who learned how to use computers from Dell
17:40.08[TK]D-Fenderfish9370: I don't know about your code but I'd go look at the AGI debug to verify what's actually getting called, and then prove that DTMF even works outside that
17:40.20Kattyfender.
17:40.50[TK]D-FenderKatty: Mew.
17:41.17Kattyhow'rechu dear
17:41.40fish9370[TK]D-Fender: what for you need my code, when handler in asterisk core?
17:41.55[TK]D-FenderKatty: Busy bee... new bad in final weeks before gigging starts.
17:42.19[TK]D-FenderKatty: 1st show in 2 weeks, then back at the end of august and then mid-october
17:42.21fish9370[TK]D-Fender: in chanel.c
17:42.47Katty[TK]D-Fender: yay
17:42.53[TK]D-Fenderfish9370: Not talking about * source".  Go prove what AGI call is really being made and debug the calling channel itself
17:44.00fish9370[TK]D-Fender: ?
17:44.23QwellKatty: We're driving to OK tonight.
17:44.28Qwellerm, this isn't my console
17:45.06KattyQwell: visiting any cool stuff out there? i'm always looking for new things to do
17:45.26QwellKatty: not in Tulsa, no.  We're going to Dallas afterwards though.
17:45.48[TK]D-Fender[13:20]fish9370in agi get_data (function ast_readstring_full)
17:45.58Kattydallas was fun.
17:46.03[TK]D-Fenderfish9370: You said you were using an AGI.  So show us the call debug with AGI debug enabled
17:46.07Kattynice little aquarium in the middle of the city.
17:46.33QwellKatty: Yes, Dallas World Aquarium.  We are going.
17:46.35fish9370how? it's so long
17:46.43KattyQwell: you'll love it!
17:46.51KattyQwell: bit chilly. take a hoodie
17:46.59QwellKatty: well, I drive to Chattanooga every other weekend or so.
17:47.01fish9370[TK]D-Fender: what you want to see
17:47.04fish9370?
17:47.08QwellI'm pretty much set in the aquarium dept.
17:47.15Kattywait.
17:47.18*** join/#asterisk Olobola (Olobola@c-71-198-191-166.hsd1.ca.comcast.net)
17:47.19[TK]D-Fenderfish9370: What part of "call debug" is unclear?
17:47.25Kattyaqarium? chattanooga?
17:47.30Kattydetails.
17:47.40[TK]D-Fenderfish9370: Asterisk CLI, verbose 10, AGI debug enabled, and any channel debug pertinent to the device placing the call.
17:47.53LokiScarletAn aquarium in Dallas? Chilly? Tell that to the coldest day of winter, in shorts.
17:48.09fish9370[TK]D-Fender:  ok, 5 sec
17:48.10QwellKatty: Tennessee Aquarium is at the top of the list, of best aquariums.
17:48.49Kattythat's not the gatlinburg one, is it?
17:48.59QwellKatty: no, downtown Chattanooga
17:49.08Kattyresearches
17:49.30LokiScarletQwell: Just saying, Tennessee has some tourist attractions but I feel sorry for you if you're in or move to this state.
17:49.44QwellLokiScarlet: No, no, much worse.  Alabama.
17:49.51fish9370[Jun  7 21:30:39] <SIP/5992-00000022>AGI Rx << GET DATA /var/lib/asterisk/sounds/ru/NovieGrani 5000 3
17:49.51fish9370[Jun  7 21:30:39]     -- <SIP/5992-00000022> Playing '/var/lib/asterisk/sounds/ru/NovieGrani.slin' (language 'ru')
17:49.51fish9370[Jun  7 21:30:47] <SIP/5992-00000022>AGI Tx >> 200 result=1 (timeout)
17:49.51fish9370[Jun  7 21:30:47] <SIP/5992-00000022>AGI Rx << VERBOSE "SIP/5992-00000022 --        . buttons pressed 1" 1
17:49.51fish9370[Jun  7 21:30:47]  in.php: SIP/5992-00000022 --        . buttons pressed 1
17:49.51fish9370[Jun  7 21:30:47] <SIP/5992-00000022>AGI Tx >> 200 result=1
17:50.02KattyQwell: holy bluespotted sunfish batman!
17:50.08fish9370[TK]D-Fender: it's ok?
17:50.09WIMPy~pb
17:50.09infobotA "pastebin" is a web-based service where you should paste anything over 3 lines so you don't flood the channel. Here are links to a few: http://www.pastebin.com, http://pastebin.ca, http://channels.debian.net/paste, http://paste.lisp.org, http://bin.cakephp.org/; or install pastebinit with yum or aptitude.
17:50.10Kattyadds chattanooga on her to do list
17:50.20KattyQwell: any other places of note out there?
17:50.31KattyQwell: or tasty resturants. breweriers, and the like
17:50.34LokiScarletOw. I feel your pain. I'm looking at houses in Pulaski and already feeling like that's waaay too far south. But work is work and land is cheap right now
17:51.16fish9370[TK]D-Fender: I pressed 1# but how you can see it's timed out
17:52.17WIMPyfish9370: That looks like you try to read before the call has even been answered.
17:52.36fish9370WIMPy: no
17:53.23[TK]D-Fenderfish9370: now go prove that SIP/5992 works with anything else using DTMF.
17:53.30fish9370if ($answer)
17:53.30fish9370$agi->answer();
17:53.30fish9370$buttons = $agi->get_data($filename, 5000, $count);
17:53.37fish9370there is logic
17:53.46[TK]D-Fenderfish9370: and pastebin the COMPLETE call <-------
17:53.48[TK]D-Fender^
17:53.50fish9370$answer = true
17:55.44fish9370[TK]D-Fender: ?
17:55.59[TK]D-Fenderfish9370: what is unclear now?
17:56.27fish9370[TK]D-Fender: I don't understand, how prove
17:56.29[TK]D-Fenderfish9370: PASTEBIN ..... the COMPLETE call.
17:56.56[TK]D-Fenderfish9370: and go use something OTHER than AGI to prove that * is even getting DTMF from the other end
17:56.58fish9370what is PASTEBIN?
17:57.09WIMPy~pb
17:57.09infobotA "pastebin" is a web-based service where you should paste anything over 3 lines so you don't flood the channel. Here are links to a few: http://www.pastebin.com, http://pastebin.ca, http://channels.debian.net/paste, http://paste.lisp.org, http://bin.cakephp.org/; or install pastebinit with yum or aptitude.
17:57.11[TK]D-Fenderfish9370: Call Read() from the dialplan, Voicemail(), or whatever...
17:57.23[tpn]leifmadsenProTip: never use While() if you plan to nest subroutines that could call themselves
17:57.35fish9370oh, ok )
17:57.51fish9370sorry
17:58.05[TK]D-Fender[tpn]leifmadsen: I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I...
17:58.07[TK]D-Fender...do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't always recurse, but when I do I don't...
17:58.08[TK]D-Fender...always recurse, but when I do I don't always recurse, but when I do
17:58.16[TK]D-Fender:)
17:59.32Kattyasplodes.
18:00.10fish9370ok, I find bug, can I say about it?
18:00.17fish9370other bug
18:00.26[TK]D-Fenderfish9370: Don't ask if you can ask.
18:00.35fish9370ok,
18:00.39[TK]D-Fenderfish9370: fish9370 Just get it out...
18:01.06fish9370if in dialplan we have template like _X!
18:02.04fish9370and we want transfer call throw this template we missing call
18:02.14fish9370it's bug
18:02.17[TK]D-Fenderthat is a pattern, not a "template", and no....
18:02.27fish9370yes, yes sorry
18:02.33[TK]D-Fenderit's not a bug.  You have not proven your complete code and shown us the actual failed attempt.
18:02.43WIMPyWhat do you think is a bug?
18:02.49[TK]D-FenderBecause it doesn't work!
18:02.58[TK]D-FenderIt couldn't possibly be user error!
18:03.02WIMPyYou're throwing pretty incomplete stuff at us.
18:03.13fish9370becouse _X! it's 1 or any digits, yes?
18:03.30fish9370right?
18:03.34WIMPyAt least one digit.
18:03.35[TK]D-Fenderfish9370: We have NO IDEA where you are talking about that "_X!" even occuring
18:03.41[TK]D-Fenderfish9370: SHOW US!
18:03.43*** join/#asterisk jkroon (~jkroon@kerberos.uls.co.za)
18:03.43[TK]D-Fender^^^^^^^^^^^^^^^^
18:04.01WIMPyOr what you're trying to match or when/from where.
18:05.27*** join/#asterisk kresp0 (~kresp0@35.Red-83-39-25.dynamicIP.rima-tde.net)
18:07.33fish9370i can't explain
18:07.51fish9370english not so good
18:08.48fish9370who speek russian?
18:10.30WIMPyIt's not the language, it's the fact that your descriptions are extremely incomplete so we don;t really know what your question is.
18:10.58fish9370WIMPy: i understand
18:11.06fish9370WIMPy: you right
18:12.47fish9370i try provide proof
18:13.13WIMPyBetter tell us what exactely you're trying to do.
18:14.02fish9370i receive call, answer, and put it in context with pattern _X!
18:14.13fish9370no, wait
18:14.26WIMPyYou don't put a call in to a context after answering.
18:14.27[TK]D-Fenderfish9370: Go do NORMAL dialplan and use the READ() dialplan application and prove that SIP/5992
18:14.45fish9370i receive call, answer, and transfer call int context with pattern _X!
18:14.46WIMPyUnless you use some redirect action.
18:14.55[TK]D-Fenderfish9370i receive call, answer, and put it in context with pattern _X! <------ show us your code and the call.
18:15.05[TK]D-Fenderfish9370: Stop saying "it doesn't work", and show us.
18:15.25WIMPyUsing a feature (inband dtmf) transfer?
18:15.39WIMPyAnd what happens and what do you expect to happen?
18:15.40fish9370WIMPy: yes, it's after transfer
18:16.38fish9370WIMPy: i expect call go throw this pattern.. but i have hangup
18:17.13WIMPyAre you sure you end up in the right context?
18:17.27WIMPyTurn up verbose and show us what happens.
18:17.36[TK]D-Fenderwell ... I've certainly wasted enough time on this...
18:17.39fish9370WIMPy: but, if i replace this pattern with _X. it's work
18:17.51[TK]D-Fendermoves on to more productive matters
18:18.23fish9370WIMPy: it's normal?
18:18.54WIMPyIf that's the only pattern you have in that context, it will match as soon as you dial the first digit. That's the idea.
18:19.45fish9370WIMPy: yes, you right
18:20.29fish9370WIMPy: if i make outbound call throw this pattern like 100 it match
18:20.35WIMPyIf that's not what you want use patterns that do what you want.
18:21.16fish9370WIMPy: yes, i can, but it's wrong
18:21.46WIMPyWhat is wrong?
18:21.47fish9370WIMPy: then i can't handle one digit
18:22.15fish9370becouse _X. it's two or more
18:22.27WIMPyUse two patterns. _X and _X. .
18:22.52fish9370then i need two contexts, but why?
18:23.04WIMPyNo, two extensions in one context.
18:23.12fish9370_X! one or more
18:23.22WIMPyThat's not the only difference.
18:23.47fish9370two extensions, it's to much
18:23.54fish9370*too
18:24.15WIMPy! also means to match as soon as possible. Do no use ! if you want to be able to continue dialling, unless you pass it on to a channel that can handle overlap dialling.
18:24.19fish9370it's wrong
18:25.14*** join/#asterisk igcewieling (~igcewieli@ip98-183-25-31.pn.at.cox.net)
18:25.24*** join/#asterisk Changos (~Changos@unaffiliated/changos)
18:25.29fish9370thanks, WIMPy, i go home..
18:25.32fish9370bye
18:32.06*** join/#asterisk chaz68 (~ChuckMast@wsip-24-234-137-89.lv.lv.cox.net)
18:34.38*** join/#asterisk chaz68 (~ChuckMast@wsip-24-234-137-89.lv.lv.cox.net)
18:37.24*** join/#asterisk serafie1 (~erin@nat/digium/x-lkbjjbaejyyukqmn)
18:50.12*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.179)
18:51.13*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.179)
18:54.12*** join/#asterisk Addisk (~WhyYouLoo@pool-173-60-252-44.lsanca.fios.verizon.net)
18:58.57*** join/#asterisk pabelanger (~pabelange@asterisk/contributor-and-bug-marshal/pabelanger)
18:58.58*** mode/#asterisk [+o pabelanger] by ChanServ
19:04.03*** join/#asterisk coppice (~chatzilla@123203240234.ctinets.com)
19:05.50*** join/#asterisk imox (~imox@24.134.18.71)
19:14.33*** join/#asterisk lorsungcu (~anonymous@65.103.31.33)
19:19.55*** join/#asterisk [TK]D-Fender (~chatzilla@216-191-106-163.dedicated.allstream.net)
19:25.40*** join/#asterisk kpettit (~kpettit@99-116-144-119.lightspeed.hstntx.sbcglobal.net)
19:31.22*** join/#asterisk Addisk (~WhyYouLoo@pool-173-60-252-44.lsanca.fios.verizon.net)
19:49.40*** join/#asterisk aidinb (~aidin@unaffiliated/aidinb)
19:52.20*** join/#asterisk igcewieling1 (~igcewieli@ip98-183-25-31.pn.at.cox.net)
19:56.47*** join/#asterisk cmendes0101 (~cmendes01@72.1.46.254)
19:57.25*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.197)
20:06.32*** join/#asterisk dtascom (~dtascom@cpe-142-129-156-205.socal.res.rr.com)
20:14.30*** join/#asterisk BrokenArrow (~BrokenArr@unaffiliated/brokenarrow)
20:15.25jmetrothese autodestruct messages are killing me
20:15.41jmetroi have no Dials with a g
20:15.46jmetrojust getting spammed
20:20.11pabelangerjmetro: failed to autodestruct or something like that?
20:20.16jmetroyeah
20:20.19jmetrorequesting BYE etc etc
20:20.39*** part/#asterisk mjordan (~mjordan@nat/digium/x-hmcjfhiwkypijryp)
20:20.43[TK]D-FenderAnd how are they "killing you"?
20:20.45pabelangerjmetro: make sure you are not blocking the asterisk thread.... eg: an AGI script or system call.  Had that issue in the past
20:21.03jmetro[TK]D-Fender: after a bunch of them stack up i actually get dialplan malfunctions
20:21.08pabelangerSystem(sleep 120) is bad
20:21.09jmetroperfectly normal dialplan just fails
20:21.22[TK]D-Fenderjmetro: That is a special kind of awesome....
20:22.17jmetroLately its only been for one user - dialing her find/follow will result in dead air on the cellphone for her, or dead-air on the phone when it reaches her vm
20:24.05jmetroonly for these two users apparently now
20:25.19LokiScarletHi. Been googling, I know this has been opened and closed for someone else, but I can't seem to get working what they got working. I seem to get permission denied for the sound device when loading chan_alsa. Asterisk is in the audio group.
20:25.45LokiScarlet(Trying to be as quick and detailed as possible)
20:27.30LokiScarletTLDR I'm a stupid noob and I'm getting permission denied loading the alsa channel
20:27.59jmetro[TK]D-Fender: the autodestructs seem to not happen for a long time, then randomly they start, and its just like once one happens they just STACK UP LIKE MAD
20:28.49jmetro3 or 4 messages every 2 seconds
20:29.43*** join/#asterisk bn-7bc (~bjarne-im@2001:16d8:ee6c:1:12dd:b1ff:febc:87ff)
20:30.46[TK]D-Fender:/
20:30.50[TK]D-Fenderok, heading home, BBIAB
20:32.45jmetroquick question
20:32.59jmetroif i have an announcement on dial eg Dial(SIP/100,a(mymacro))
20:33.07jmetroand at the end of macro-mymacro i have a hangup
20:33.16jmetrowill that fudge the call and hang up stuff that shouldnt be hung up?
20:33.32*** join/#asterisk OneNarrowWay (~OneNarrow@ip503c898d.speed.planet.nl)
20:37.00WIMPyThere's something wrong with that question.
20:37.23WIMPya doesn't take parameters and A takes a file. Where is the macro coming from?
20:37.34jmetroah...
20:37.36jmetroi mean M
20:37.46jmetrom is for macro, thats good enough for me
20:38.38WIMPym doesn't exist any more.
20:38.57*** join/#asterisk OneNarrowWay (~OneNarrow@ip503c898d.speed.planet.nl)
20:39.53jmetroM, capital
20:40.40WIMPyNot found
20:42.14jmetro<.<
20:42.48jmetrosame => n,Dial(${ARG1},20,TKktrM(announceIncoming,${CutExten}))
20:42.52jmetrolike that.
20:44.08WIMPyLooks like that won't work after the next update.
20:44.20WIMPyBetter use gosubs.
20:44.30jmetro:<
20:44.57jmetroso i have to make a separate sound file for all my announces
20:45.20jmetrothats...srsly?
20:45.22WIMPyNo, use the gosub options instead of the old macro versions.
20:45.52jmetroits already a sub, the point is that i want code to be run when the callee picks up that determines their announcement
20:46.31jmetrogetting rid of M is like deciding Dial() cant have a time option
20:46.45jmetrosince you could just time it with the system clock or some crap
20:47.27WIMPyOr removing the ENUM switch?
20:48.34WIMPyDoh
20:48.54jmetroso considering i already have like 5 macros deep
20:49.02jmetroi guess i gotta go 6 just to pop off an announcement with my dial
20:49.19WIMPyM *is* still there. But macros have been depercated in favour of gosub anyway.
20:49.49jmetroim totally okay with getting rid of the "macro-" part but theres gotta be a way to tell dial to use it
20:50.19WIMPyU
20:50.35jmetroi just treat macros as subroutines anway
20:52.48[tpn]leifmadsenjmetro: with M() it's ^ as a separator
20:53.17WIMPySame with U.
20:53.32[tpn]leifmadsen+1
20:53.35jmetroi dont have any ^'s in my code.
20:53.40[tpn]leifmadsenthere's your problem :)
20:53.55jmetroeverything works? <.<
20:54.04WIMPyNooooooo
20:54.22jmetroif i dint have ^'s wouldnt it be broke
20:54.26WIMPyBut I guess it should do what you want there :-)
20:54.57*** join/#asterisk Chainsaw (~chainsaw@gentoo/developer/chainsaw)
20:58.06*** join/#asterisk vlad_starkov (~vlad_star@109.188.124.193)
20:58.28jmetrosame => n(ShortCell),Dial(Local/${EXTEN}@mycompany/n,20,tkM(announce-Incoming,${EXTEN}))
20:58.34jmetromy dialer for cells with short ringers
20:58.51jmetroshouldnt that be announce-incoming^${EXTEN}? it works as it is so..
20:58.55WIMPyAnd still the wrong syntax.
20:58.58WIMPyindeed
20:59.05jmetrothe console never complains when i reload it
20:59.07[tpn]leifmadsen+1
20:59.17[tpn]leifmadsenyou're doing it wrong
20:59.45WIMPyThere are only so many things Asterisk complains about.
20:59.53*** join/#asterisk g_r_eek (~g_r_eek@78-36-8.adsl.cyta.gr)
21:00.13[tpn]leifmadsenM(macro[^arg[^...]]):
21:00.18jmetro^ is such an odd delimeter
21:00.19[tpn]leifmadsenfrom 'core show application Dial"
21:00.35[tpn]leifmadsenjmetro: it's different because , is for the Dial() separator
21:00.44[tpn]leifmadsenso you're nesting, thus you need a different separator
21:00.51[tpn]leifmadsenit's weird because it's unlikely to conflict with another separator
21:00.59[tpn]leifmadsenit's weird on purpose
21:01.03jmetrohm
21:01.09[tpn]leifmadsenso again, you're doing it wrong ;)
21:01.12WIMPyYou don;t need it. If the parser was just a tiny bit cleverer it would find the ().
21:01.23jmetroif it was a problem wouldnt things not work?
21:01.28[tpn]leifmadsenprobably
21:01.32[tpn]leifmadsenit's still wrong ;)
21:01.38jmetrocause, everything works, and the var passes properly
21:01.50[tpn]leifmadsenpossibly due to some lucky parsing
21:01.51[tpn]leifmadsenI wouldn't rely on it
21:03.06jmetrolucky parsing ಠ_ಠ
21:03.07mmlj4don't listen to [tpn]leifmadsen, all he did was write books about this stuff
21:03.12[tpn]leifmadsenI know nothing!
21:03.16[tpn]leifmadsenI make shit up ALL THE TIME
21:04.41jmetroGood luck jmetro gets lucky parsing ( ͡° ͜ʖ ͡°)
21:07.27*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
21:07.45*** join/#asterisk g_r_eek (~g_r_eek@78-36-8.adsl.cyta.gr)
21:09.08*** join/#asterisk blizzow (~jburns@67.50.165.58)
21:43.39*** join/#asterisk serafie1 (~erin@nat/digium/x-cvvblizldphkduch)
21:45.29*** join/#asterisk [TK]D-Fender (~joe@64.235.216.2)
21:49.16*** join/#asterisk olti (~olti@79.106.109.140)
21:58.38*** join/#asterisk vlad_starkov (~vlad_star@109.188.125.204)
22:03.27*** join/#asterisk gtTuna (Tuna@d149-67-253-75.try.wideopenwest.com)
22:14.47*** join/#asterisk Surye (~Surye@li112-98.members.linode.com)
22:23.32*** join/#asterisk EyePulp (~eyepulp@c-67-173-34-83.hsd1.il.comcast.net)
22:23.43EyePulphody
22:23.52EyePulp*howdy*  =)
22:25.07*** join/#asterisk g_r_eek (~g_r_eek@78.87.43.255)
22:25.13*** part/#asterisk EyePulp (~eyepulp@c-67-173-34-83.hsd1.il.comcast.net)
22:28.44SuryeHello, we are using a SIP trunk providor, and we have another site (connected via a VPN tunnel), with multiple phones. We're using ASA5505s in both places, and the PBX communicates with phones on the other end of the VPN
22:29.20SuryeIs there any way to get the media RTP traffic for the phone on the other site to use their internet, and not use the tunnel after the session is negotiated?
22:35.51*** join/#asterisk Dovid (~Dovid@ool-43523afd.dyn.optonline.net)
22:36.09*** join/#asterisk pabelanger (~pabelange@asterisk/contributor-and-bug-marshal/pabelanger)
22:36.10*** mode/#asterisk [+o pabelanger] by ChanServ
22:48.49*** join/#asterisk darkbasic (~quassel@niko.linuxsystems.it)
22:59.17*** join/#asterisk vlad_starkov (~vlad_star@109.188.124.53)
23:34.43*** join/#asterisk blizzow (~jburns@173-8-237-25-Colorado.hfc.comcastbusiness.net)
23:35.46*** join/#asterisk nantou (~phonetic@gateway/tor-sasl/martinphone)
23:59.49*** join/#asterisk vlad_starkov (~vlad_star@109.188.126.182)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.