IRC log for #asterisk on 20071006

00:00.40*** join/#asterisk jtknapp (n=skip@65-126-63-1.dia.static.qwest.net)
00:00.46*** part/#asterisk jtknapp (n=skip@65-126-63-1.dia.static.qwest.net)
00:04.59*** join/#asterisk marcan (i=1337@host214-134.cvd.fit.edu)
00:07.02*** join/#asterisk stkn (n=stkn@gentoo/developer/pdpc.active.stkn)
00:10.06*** join/#asterisk Martinelli (n=claudio@189.25.170.187)
00:15.27CrazyTuxHey guys I want to setup a quick test, I want to be able to dial in, and then dial out (PSTN) or be it, is DISA what I'm looking for?
00:17.44*** join/#asterisk [hC] (n=hardcore@S01060016b61c8983.vf.shawcable.net)
00:18.33blitzrageCrazyTux: pretty much ya
00:18.52blitzrageyou could also just build it with Authenticate() and Read()
00:19.07blitzragebut DISA is probably quicker for what you want
00:21.48CrazyTuxblitzrage, how can I capture
00:21.59CrazyTuxblitzrage, the value from DISA entered rather than apply to an exten
00:22.10blitzrageoh.. then you need Read() if you want to save it to a variable
00:22.16*** join/#asterisk Toerkeium (i=oo@201.216.206.221)
00:22.22CrazyTuxblitzrage, so, DISA(), READ()?
00:22.32blitzrageno, you don't need DISA() if you're going to use Read()
00:22.38blitzrageyou'll use Authenticate() and Read()
00:23.11blitzrageAuthenticate() to grant access via a pin code, and Read() to read the variable, then you would just Dial(SIP/itsp/${VAR_FROM_READ})
00:23.44CrazyTuxblitzrage, would Read() generate dial tone?
00:23.49CrazyTuxblitzrage, or I would have to fake it?
00:23.52blitzrageno, but you can just fake it
00:24.02blitzragesince Read will play a file like Background()
00:25.59CrazyTuxblitzrage, where are the * sound files kept?
00:26.15CrazyTuxblitzrage, nm :)
00:26.19CrazyTux/var/lib/*
00:28.16CrazyTuxblitzrage, say I just wanted to dial out directly for a quick test from Dial()
00:28.25CrazyTuxblitzrage, DIAL(SIP/+1NUMBER@PSTN)?
00:28.54*** join/#asterisk WilliamK (n=noc@static-71-170-144-3.dllstx.fios.verizon.net)
00:29.42*** join/#asterisk brut- (n=brut@66.173.4.254)
00:30.55*** join/#asterisk bmg505 (n=leon@196.209.176.188)
00:39.19blitzrageCrazyTux: well you need to have a method for Asterisk to make a call... whether it is Zap or SIP (via an ITSP)
00:39.35blitzrageDial(SIP/ITSP/15195915119)
00:39.37CrazyTuxblitzrage, SIP
00:39.45blitzrageyou need to have a sip peer configured to do that
00:40.15*** join/#asterisk Qapf (n=Qapf@stevenson-17-2.resnet.ucsc.edu)
00:40.32CrazyTuxblitzrage, so Dial(SIP/SIP_HOSTNAME/phone_number) ?
00:40.49CrazyTuxblitzrage, I can trunk calls through PSTN, just via IP
00:40.55CrazyTuxblitzrage, but how would I do it in *
00:40.59*** part/#asterisk atomicd (n=Atomicd@74-206-0-80.static-ip.m.telepacific.net)
00:41.35Qapfi have 2 asterisk boxes paired together one acting as a branch office and the branch office connection has some issues with packets dropping. what codec has the most packetization so that if packets are lost, the least amount of voice is lost with them, and what codec is the most resistant to dropped packets?
00:45.25MooingLemurI understand RDNIS information from a PRI includes the originally called number, but that's inaccessible in asterisk?
00:46.34blitzrageCrazyTux: I just told you how to do it... you sign up with an ITSP, then set it up in sip.conf, then Dial(SIP/the_itsp_you_setup_in_sip_conf/18005551212)
00:46.51blitzrage~book
00:46.51jbotAsterisk: The Future of Telephony 2nd Edition (ISBN  0-596-51048-9) --- Order yours at http://www.oreilly.com/catalog/9780596510480/ ---  Downloadable PDF http://downloads.oreilly.com/books/9780596510480.pdf
00:46.58CrazyTuxblitzrage, I know, I realize that, :), I have the oreilly addition at home :)
00:46.59blitzrageprobably time to do some reading
00:47.09blitzragethanks for your 33 cents :)
00:47.14CrazyTuxblitzrage, but there has to be a way to do it, for dirty testing
00:47.19CrazyTuxblitzrage, I remember doing it once
00:47.27blitzrageI don't understand what you want to do then...
00:47.38CrazyTuxblitzrage, DIAL(SIP/NUMBER@PROV) for just quick and dirty
00:47.39blitzragehow do you expect it to get to a phone line without an ITSP?
00:47.53CrazyTuxblitzrage, DIAL(SIP/NUMBER@ITSP)
00:47.54MooingLemurQapf: Switching codecs will probably not help with dropped packets.  The voice stream is UDP, and it's as close to realtime as possible, so when there's packet loss, there will be voice loss.  That being said I don't know the specific answer to your question, as in what will yield larger numbers of small packets.
00:48.04CrazyTuxblitzrage, I have an ITSP.
00:48.10blitzragethat's not gonna work -- ITSPs are going to require authentication
00:48.15blitzrageyou need to setup sip.conf
00:48.21blitzrage[itsp]
00:48.24blitzragetype=friend
00:48.30blitzragefromuser=login_name
00:48.33blitzrageusername=login_name
00:48.35blitzragesecret=password
00:48.39blitzragecontext=incoming_calls
00:48.50QwellQwell Communications doesn't require authentication.  We know who's calling, based on an implant^W^Wmagic.
00:48.55blitzragehost=my.itsp.com
00:49.03blitzrageQwell: that's hawt
00:49.12blitzragethen
00:49.16CrazyTuxblitzrage, I have direct sip trunking, and from there have softswitch.
00:49.18blitzrageDial(SIP/itsp/18005551212)
00:49.28blitzragei can't help you any further
00:49.28CrazyTuxblitzrage, which I can create reg.
00:49.37[hC]I use Qwell Communications for my ph0n3 needs.
00:49.38blitzrageregistration doesn't mean anything to dialping
00:49.39[hC]They rule.
00:49.48blitzrages/dialping/dialing
00:49.53Qwell$42/second
00:49.56QwellWe're THAT good
00:50.02blitzrageall registration does is tell the ITSP where you are on the Internet for incoming calls
00:50.06[hC]You pay a premium for quality, but its worth it.
00:50.18Qwell103% uptime guaranteed
00:50.26[hC]btw, dont listen to blitzrage, he's a newb.... what you really want is to find someone thats written the book on asterisk.
00:50.28blitzrageya, somehow Qwell Communications has CD quality audio
00:50.40[hC]like qwell.
00:50.45[hC]:P
00:50.53*** join/#asterisk bkw_ (n=brian@adsl-70-143-51-160.dsl.tul2ok.sbcglobal.net)
00:50.56blitzragethe book even says Qwell is not a newb
00:51.00Qwelltotally
00:51.05[hC]i saw that
00:51.06Qwell(it really does, too)
00:51.08[hC]and almost wet my pants.
00:51.09CrazyTuxAll I want to do is TRUNK directly
00:51.19bkw_oh admit it.. you're a newb
00:51.19CrazyTuxDIAL(SIP/PHONE_NUMBER@PROVIDER)
00:51.24bkw_OM GCAPS
00:51.26Qwellbkw_: book says otherwise
00:51.30CrazyTuxbkw_, :)
00:51.30blitzrageDial(SIP/username:password@provider/18005551212) may or may not work
00:51.46bkw_Qwell, I know shorty
00:52.12blitzragebkw_: guess what I bought....
00:52.44bkw_blitzrage, an apple?
00:52.47blitzrageindeed
00:52.51[hC]<- witness
00:52.53bkw_you running linux on it?
00:52.56blitzragenada
00:52.58bkw_good
00:53.01blitzragewell... kinda... VMware :)
00:53.05bkw_same here
00:53.07blitzrageI actually kinda like OSX here
00:53.12bkw_it just sorta works
00:53.13Qwellsomebody should totally buy me a mac
00:53.14blitzrageI've surprised even myself
00:53.16[hC]osx grows on you more and more
00:53.20bkw_blitzrage, go install fink
00:53.27[hC]it surprised me, i thought it was gonna feel lke i had oven mits on
00:53.29bkw_blitzrage, if you need anything at all just ask m
00:53.30bkw_e
00:53.32blitzrageI haven't quite figured out how to switch windows within an app though
00:53.36[hC]fink/darwinports
00:53.39blitzragebkw_: Leopard? :)
00:53.40bkw_apple+tab
00:53.40[hC]blitzrage: apple `
00:53.42blitzragefink?
00:53.42bkw_apple+~
00:53.52blitzrage[hC]: ya... I tried that... but it doesn't always work
00:53.52bkw_apple tab between apps
00:53.59bkw_apple ~ between windows in the app
00:54.01[hC]blitzrage: should always.. its system wide.
00:54.15blitzrageya... the one app would only switch between two windows when I had 5 open
00:54.15[hC]its ` not ~ (like, you dont want to hold shift)
00:54.18blitzragepgAdmin3 specifically
00:54.18*** join/#asterisk SuPrSluG (n=SuPrSluG@pool-71-126-31-209.bflony.east.verizon.net)
00:54.24[hC]actually
00:54.26[hC]I guess both work
00:54.26bkw_blitzrage, never minimize to the dock
00:54.28[hC]i use apple `
00:54.31bkw_always hide apple+h
00:54.39Qwellbkw_: why?
00:54.45bkw_or alt+apple+h to hide all but the winow on screen
00:54.45[hC]yeah, im curious too
00:54.50bkw_because its just easier
00:54.55[hC]oh.. haha
00:55.00blitzrageoh those are neat
00:55.02karleetocan i program custom buttons on my polycom 501? eg, program a button to transfer to 700 for parking a call, so my people dont have to press so many buttoms to acheive easy tasks?
00:55.04[hC]I run a few priceless apps
00:55.07blitzragehow do I get it back with the keyboard? :)
00:55.15bkw_tab to it
00:55.15blitzragebkw_: why do I want fink again... ?
00:55.22blitzrageoh perfect
00:55.25bkw_http://finkproject.org/
00:55.30bkw_apt-get install blah
00:55.37bkw_it put apt-get on your darwin install
00:55.49bkw_so you can easily install open source software
00:55.50blitzrageoh neat
00:55.52[hC]sshkeychain, virtuedesktops, istatmenus, teleport, synergy, growl,
00:55.53bkw_apt-get install wget
00:56.05blitzrageI have growl... need synergy
00:56.06[hC]bkw_: i find theres more in darwinports
00:56.06*** join/#asterisk l3jj (n=chatzill@dsl093-001-038.det1.dsl.speakeasy.net)
00:56.18blitzrageand I can get all that with fink?
00:56.20bkw_[hC], darwin ports is just aweful compared to fink
00:56.26bkw_blitzrage, sure
00:56.27[hC]synergy i use mainly as a little display/hotkey system for itunes, it gives mtv style indicators when i switch tracks
00:56.28blitzrageneato
00:56.35bkw_blitzrage, I'm an apple guru
00:56.42blitzrageya, you've had one for a while
00:56.53blitzragehrmmm.... what about Xforwarding?
00:57.01bkw_works in xterm
00:57.03bkw_not apple term
00:57.04blitzrageI like to control XMMS on my desktop
00:57.04[hC]bkw_: i abandoned fink about 2 years ago when it didnt always have the apps i wanted, but darwinports did.
00:57.07blitzrageI have iTerm
00:57.15bkw_you can't do much with X in iTerm
00:57.20blitzrageindeed
00:57.23[hC]I use Terminal.app, iterm was too resource intensive
00:57.30bkw_[hC], the new isn't bad
00:57.35blitzrageya, I don't find it slow
00:57.39bkw_blitzrage, me either
00:57.43bkw_the old one waw
00:57.44bkw_er was
00:57.58blitzrageexcept I haven't figured out how to do pgup/pgdn/end/home in vim yet in iTerm
00:58.05blitzrageneither fn or apple work right
00:58.11bkw_the keyboard map
00:58.32blitzrageeh?
00:58.40bkw_their should be something in the keyboard map
00:58.43bkw_to make that work
00:58.48[hC]then of course, for the usable apps,  XchatAqua, Adium, JollysFastVNC, netnewswire, transmit, subnetcalc, zterm
00:58.51blitzrageI don't know what the keyboard map is
00:59.07bkw_Cord.sf.net
00:59.10blitzrage[hC]: pfffft... do subnetting in your head
00:59.15[hC]it wasnt that iterm was bad, its just that terminal.app was faster.
00:59.32[hC]blitzrage: i do mostly, but subnetcalc is great for determining things that you wouldnt normally want to know, really quick
00:59.46blitzrageI find just figuring it out on paper is better than a calc :)
01:00.00blitzragebut I went to school for telecom, so I did a ton of it
01:00.11blitzrageI have this tree method I use in my head to visualize it
01:00.18bkw_blitzrage, you'll find that things just work great on the Mac
01:00.22bkw_its not without its problems too
01:00.24blitzrageit's about the only mathy type thing I can do decent (I suck at math)
01:00.26bkw_so you'll run into a few i'm sure
01:00.29funxiondoes anyone knwo if using exten => 2123434.123,1,Answer would work?
01:00.32[hC]it will tell you class, binary, hex, mask bits, netmask, max subnets, max hosts, network id/broadcast, usable range, CIDR breakdowns
01:00.33blitzrageoh ya... I'm sure, but so far so good
01:00.36[hC]its handy..
01:00.38Qwellfunxion: no, syntax error
01:00.45Qwelloh, .
01:00.55funxioncrap
01:01.00bkw_you can't dial a . on a phone
01:01.01blitzrageit might work since there is no _
01:01.01bkw_good lord
01:01.04Qwellwhat does the . signify?
01:01.10bkw_. is a wildcard
01:01.15blitzrageif there is a pattern match
01:01.15bkw__X.,1,Dial
01:01.18*** join/#asterisk saftsack (n=saftsack@217.224.92.67)
01:01.18Qwellbkw_: no, but it could be sent as the did
01:01.24bkw_it won't
01:01.29Qwellbut it could :P
01:01.32blitzrageor as alphanumeric from a softphone?
01:01.33bkw_because the . means everything else after the 4
01:01.41Qwellif it's a pattern match
01:01.41bkw_no .'s are used in pattern matching
01:02.12[hC]Qwell: get a chance to look at that hold issue i mentioned?
01:02.21[hC]bkw_: are you using vmware fusion or parallels?
01:02.41bkw_I have both
01:02.44QwellI don't suppose there is a version of vmware-server for osx?
01:02.44bkw_they both suck
01:02.49bkw_Qwell, no
01:02.51Qwelllame
01:02.55bkw_not really
01:03.00QwellI like vmware-server
01:03.01[hC]bkw which do you prefer?
01:03.06bkw_[hC], neither
01:03.28bkw_as  I said they both suck
01:03.33bkw_each in its own way
01:03.33[hC]bkw_: haha okay... let me rephrase.   which one sucks less?
01:03.42bkw_parallels
01:03.45[hC]i havent tried fusion yet
01:03.52[hC]but people are talking it up.. ive just stuck with parallels
01:04.44blitzrageI like fusion for my centos VMs
01:04.46bkw_you don't run parallels for gaming
01:04.53bkw_hell you don't run any vm for games
01:05.01bkw_you boot into a bootcamp install
01:05.05Nuggetfusion is a bit more flexible than parallels.
01:05.08blitzrageI don't play games at all
01:05.08bkw_because you know XP native on the hardware just rocks
01:05.13bkw_blitzrage, me either
01:05.18bkw_thats what XBOX 360 is for
01:05.23blitzrageindeed
01:05.25NuggetI had to use fusion to fiddle with pfsense because parallels wouldn't let me set up a bunch of network interfaces
01:06.08Nuggetthey're both available for free trial, so just play with each and see what works best for you
01:06.13bkw_blitzrage, welcome to the mac world... you can see now why I went to mac now?
01:06.21bkw_blitzrage, no spyware
01:06.38bkw_muhaha you and your .exe malware can go to hell bastards
01:06.46QapfMooingLemur, thanks for the response, it seems to be my best bet would be to either apply the asterisk patch for packetization or upgrade to 1.4 so i can tune the amount of voice in a packet by hand, then i can stick it to something like 10ms and hopefully save as much of the conversation as i can
01:07.06karleetoanyone programmed the buttons on a polycom 501 ?
01:07.06Qapfim stuck in a shitty situation where im on a wireless link until the hard lines can be fixed and i have no choice
01:07.40Qapfand the wireless just aint perfect
01:08.06blitzrageI like the fact I can run 4 vmware sessions of CentOS without significant slow down, with bridged networking
01:10.13*** join/#asterisk danalien (n=danalien@unaffiliated/danalien)
01:11.19Qapfaccording to the list http://lists.digium.com/pipermail/asterisk-dev/2007-January/025690.html it seems 20ms is as low as it gets on defaults, ilbc which im using is 30 so i guess switching to anything else will be an improvment :)
01:12.40Qwell[ebuild   R   ] media-tv/mythtv-0.20.2_p14324  USE="alsa dvd ivtv jack joystick lirc mmx opengl perl vorbis (-altivec) -autostart -backendonly -crciprec -dbox2 -debug -directv -dts -dvb -freebox -frontendonly -hdhomerun -ieee1394 -lcd -xvmc" VIDEO_CARDS="nvidia -i810 -via" 0 kB
01:12.43Qwellwtf is it using oss?
01:17.29funxionwhen dialing a local channel in the same context do I lose all variables?
01:19.09*** join/#asterisk CCFL_Man2 (n=root@UNUSED-216-222-246-32.UNUSED.epix.net)
01:19.53CCFL_Man2danmn power flickered
01:19.59CCFL_Man2i need a ups
01:20.02russellbQwell: wrong channel :-p
01:20.11Qwellrussellb: yeah, I know :p
01:20.31russellbQwell: and i don't see oss in there
01:20.41Qwellexactly
01:20.44QwellO.o
01:20.53Qwellgot it solved though..was trivial
01:20.58russellboic
01:21.03CCFL_Man2as my cisco voice gateway was booting up it seems to send a ringing signal on all channels of the T1 connected to my channel bank
01:21.17Qwellit's nice being able to have sound from other things while watching TV
01:21.27funxionwhen dialing a local channel in the same context do I lose all variables?
01:25.24*** join/#asterisk tzafrir_home (n=tzafrir@bzq-179-75-202.static.bezeqint.net)
01:27.45CrazyTuxIs there any special handling I need to do
01:27.58CrazyTuxWhen Dialing INTO an extension, then Dialing OUT OF back through PSTN?
01:30.01*** join/#asterisk moprilo (n=jjohn@190.10.0.64)
01:38.37*** join/#asterisk rmayorga (n=rmayorga@unaffiliated/rmayorga)
01:44.41*** join/#asterisk DirtyD (n=DirtyD@ool-4571b24d.dyn.optonline.net)
01:44.42DirtyDHi.
01:45.04DirtyDis Asterisk-Java any good?
01:47.03blitzragefunxion: you're creating a new channel -- so yes. So to get the channel variables to the new channel, you have to make them inherited
01:47.16blitzrageSet(__VARIABLE=foo)
01:49.01*** join/#asterisk lirakis (n=lirakis@cpe-68-175-38-65.nyc.res.rr.com)
01:49.04lirakishi
01:49.17blitzragefunxion: notice you said "local channel" -- it's an entire new channel, so it has it's own set of variables
01:50.02blitzrageso you don't lose the variables, they are just on the OTHER channel, not the new channel that you just created
01:50.23ectospasmglobal variables, as in most other programming languages, should be avoided if possible
01:50.31blitzrageindeed
01:50.39blitzrageI think of global variables as constants
01:51.06ectospasmmainly because if you use a global variable where a channel variable is more appropriate, every new channel will step on every other channels global variables...
01:51.58blitzrageof course :)
01:52.11blitzragethat's why thinking of it as a constant I think is better practice
01:52.25russellbglobal variables are fine when they make sense
01:52.37russellbthey are more efficient than allocating a variable for every channel
01:52.52blitzrageindeed
01:53.24ectospasmrussellb:  can you put more complex structs in global variables?  Or is it just simple scalars?
01:53.55blitzragerussellb: btw -- evening! :)
01:54.22*** join/#asterisk bkw_ (n=brian@adsl-70-142-53-22.dsl.tul2ok.sbcglobal.net)
01:54.42*** join/#asterisk remmo (n=junk@203.32.47.250)
01:55.30russellbblitzrage: good evening :)
01:55.50russellbectospasm: well ... it's just a string
01:56.12russellbbut if you're crazy, you could store variable strings in them to have them evaluated later with ${EVAL()}
01:56.17*** join/#asterisk ELBunce (n=erik@kde/developer/bunce)
01:56.42blitzrageeven I'm not that crazy
01:56.44*** join/#asterisk Defraz (n=t0tal@65.121.20.50)
01:56.56*** join/#asterisk caio1982 (i=caio1982@CAcert-br/caio1982)
01:58.21blitzrageI'm just gonna throw this out there, but has anyone used ReadFile() to read in a file into a variable, then parse each line individually? I tried using CUT() with \n as the separator, but it doesn't work (it parses on just the letter 'n'). Is there any other application or function I'm not thinking of that I could use to split out the individual lines of the file in the dialplan?  I actually opened a but for the CUT() not
01:58.22blitzrage<PROTECTED>
02:00.23lirakisblitzrage: just bought the new book.. looking foward to some.. uhh.. what do they call that... oh yeah.. "free time" .. to go over it
02:00.45lirakisblitzrage: thanks for your efforts
02:01.20blitzragelirakis: haha... thanks! Ya... free time is something of a commodity
02:01.34blitzragein my "free time" I'm starting to work on building voicemail in dialplan logic
02:01.50blitzragewhich is how I found the above mentioned bug... I got about 3 lines of dialplan in when I found it... :(
02:01.56lirakisblitzrage: as opposed to the application?
02:02.05blitzragecorrect
02:02.12russellbReadFile?  hm
02:02.15blitzragerussellb: yes sir
02:02.39blitzragefor example:  ReadFile(ENVELOPE=/var/spool/asterisk/default/100/INBOX/msg0000.txt)
02:02.41russellbright
02:02.42funxiondoes asterisk 1.0 have the ability of inheriting variables?
02:02.43*** join/#asterisk ftumch (n=jimi@homer.chinafight.com)
02:02.47russellbfunxion: doubt it
02:02.56funxionthats what I figured
02:03.00russellbi'm pretty sure that came after 1.0
02:03.00blitzrageo.O
02:03.06blitzragesounds like a 1.2 feature
02:03.07funxionexactly
02:03.48russellbblitzrage: i ... can't think of a way
02:04.05russellbblitzrage: unless you use func_shell
02:04.08Qwellheh
02:04.11blitzrageya... the only thing I could think of was to make CUT() accept a carriage return as a separator
02:04.11QwellI was just gonna say
02:04.12QwellHACK
02:04.16russellbQwell: ;)
02:04.32russellb${SHELL()} is cheating ..
02:04.40funxionany idea of how to pass variables through contexts in * 1.0
02:04.54russellbfunxion: better question, why 1.0?
02:05.01russellbeven I don't touch 1.0 anymore :)
02:05.09blitzrageI don't even touch 1.2...
02:05.14funxionwell its an old box
02:05.25funxionin the process of updating code
02:05.32russellbi see
02:05.43funxionbut need to make some stuff work in the meantime
02:05.43lirakisblitzrage: lol .. i was going to say .. i use 1.2 for my deployment still ..but .. 1.0 ? thats really old
02:05.50Qwellrussellb: extremely random question..  you wouldn't happen to have a coax crimper, would you?
02:05.53funxionits 2-3 years old
02:06.10russellbnice
02:06.15russellbQwell: no, i don't
02:06.20funxionand still runs liek achamp
02:06.31russellbfunxion: glad to see 1.0 has served you well :)
02:06.33[TK]D-Fenderfunxion, PM
02:06.42lirakisfunxion: remindes me of a gateway 2000 233mmx i bought on ebay a few years back as a webserver.. ha ha :P
02:07.53*** join/#asterisk PepOSX (n=pepOSX@190.72.149.53)
02:08.03russellb[TK]D-Fender: whispering is rude!
02:13.58[hC]Qwell: did you take a look at the hold issue in chan_skinny today?
02:14.06*** join/#asterisk DrAk0 (n=ljd@nelug/coreteam/luisjose)
02:14.11*** join/#asterisk drako (n=ljd@nelug/coreteam/luisjose)
02:14.24Qwellnope, didn't have time..
02:19.25*** join/#asterisk snewpy (n=markl@ppp121-44-18-33.lns10.syd7.internode.on.net)
02:19.58*** join/#asterisk putnopvut (n=putnopvu@user-24-214-112-81.knology.net)
02:20.42*** join/#asterisk r0d3nt (i=nobody@foster.stonedcoder.org)
02:21.28lirakisokay .. sleep
02:21.36[TK]D-Fenderrussellb, So I should tell people to #%^$ off to their face, right? ;)
02:21.38*** join/#asterisk Corydon76-dig (i=blush@pdpc/supporter/bronze/Corydon76-home)
02:21.38*** mode/#asterisk [+o Corydon76-dig] by ChanServ
02:21.44putnopvutCorydon76-dig: gtfo
02:21.54*** part/#asterisk lirakis (n=lirakis@cpe-68-175-38-65.nyc.res.rr.com)
02:21.59[TK]D-Fender:O
02:22.02russellb[TK]D-Fender: ha ... yes?
02:22.25*** join/#asterisk Corydon76-home (i=peuce@pdpc/supporter/bronze/Corydon76-home)
02:22.25*** mode/#asterisk [+o Corydon76-home] by ChanServ
02:22.34[TK]D-Fenderrussellb, I've been the harbinger for "getting what you wished for" for a few years now :)
02:23.07*** join/#asterisk Iamnacho (i=Iamnacho@ip68-103-153-140.ks.ok.cox.net)
02:25.15[hC]Qwell: ok cool.. ill play around with it myself some more on monday
02:29.30*** join/#asterisk ivanfm (n=ivanfm@c906b486.virtua.com.br)
02:32.13funxionanyone have an idea of how to remove a . from a variable?
02:34.18*** join/#asterisk tristansbs (i=hu2u@c-76-102-118-44.hsd1.ca.comcast.net)
02:35.48*** join/#asterisk Defraz (n=t0tal@fw.fuzecore.com)
02:37.23ixxis CDR() not available in 1.4.x?  I am getting no function registered
02:37.53Nuggethttp://www.notafront.org/~agit/compilation/imgpages/image063.html
02:39.43ixxI see func_cdr.c
02:40.40ixxblah.. it was not autoloaded
02:40.47ixxsomething must have changed in the config
02:41.52*** join/#asterisk kavelot (i=x@201-92-27-66.dsl.telesp.net.br)
02:42.45kavelotI have the codec_g726.so file, but still get "no compatible codecs" when trying to use "allow=g726"... any hints?
02:43.05kavelot(I also have format_g726.so)
02:43.37ixxtype core show codecs
02:43.42ixxat the CLI
02:44.21kavelotit's there
02:44.37kavelot16 (1 << 4) (0x8) audio g726 (G.726)
02:44.57*** join/#asterisk voipsanchez (i=12@189.151.59.33)
02:45.01kavelotAFAIK it's 32kbps and I'm trying to use it with 3cx phone, which is also 32kbps..
02:45.37voipsanchezHello, Any asterisk guru that might help me on private?
02:47.47kavelotanyone knows another win32 SIP softphone that supports g726 so I can test?
02:49.15*** join/#asterisk putnopvut (n=putnopvu@user-24-214-112-81.knology.net)
02:50.07blitzrageputnopvut: wb :)
02:50.15russellbputnopvut: nub
02:50.17putnopvutThanks blitzy
02:50.24blitzragenub^2
02:50.26putnopvuteat my ass russellb
02:50.31russellbdude, gross
02:50.49russellbputnopvut: try #asstricks for that
02:51.08*** join/#asterisk NormB (n=NormB@24.115.181.11)
02:51.32*** part/#asterisk NormB (n=NormB@24.115.181.11)
02:52.59AlcateLXperthey.. if in voicemail.conf I put   100 => 100,frank,frank@here.com
02:53.05AlcateLXpertthe password should be '100' no ?
02:53.16AlcateLXpertwhen i try to login with mailbox 100 and password 100, it says login incorrect
02:53.21AlcateLXpertany idea what i did wrong ?
02:53.31putnopvutAlcateLXpert: what is the context for the voicemail box?
02:53.45AlcateLXpertinternal
02:53.57AlcateLXpertBUT
02:54.01AlcateLXpertin the logs, I have
02:54.01AlcateLXpert<PROTECTED>
02:54.11putnopvutTry putting searchcontexts=yes in general section of voicemail.conf
02:54.25AlcateLXpertand in voicemail.conf, I put
02:54.28AlcateLXpert[internal]
02:54.28AlcateLXpert100 => 100,frank,frank@here.com
02:54.46russellboh ... then yeah
02:54.50russellbwhat putnopvut said will fix it
02:54.50putnopvutVoicemail has this habit of assuming you mean internal.
02:54.53putnopvutI mean default.
02:54.55*** join/#asterisk arcanine (n=saxon_m2@203.82.44.179)
02:55.00russellbor, fix Voicemail(100@default) in the dialplan
02:55.05arcaninehi
02:55.11putnopvutVoiceMailMain, you mean.
02:55.42arcaninehi
02:55.49russellbhi
02:55.52blitzragehi
02:55.54putnopvuthigh
02:56.02blitzragehye
02:56.07putnopvuthie
02:56.11arcaninehav my outbound lines got cut, i get this message
02:56.28AlcateLXpertputnopvut, I change the searchcontexts = yes
02:56.31AlcateLXpertand now the error in the logs is
02:56.32AlcateLXpert<PROTECTED>
02:56.41putnopvuthmmm....
02:56.58AlcateLXpertnever mind
02:57.00AlcateLXpertit works now
02:57.03putnopvutcool
02:57.09AlcateLXperti guess i typed too fast the 100
02:57.11arcaninehere is the message : -- Executing Dial("SIP/1216-09cc41b8", "SIP/17607410281@PCSI") in new stack
02:57.11arcanine<PROTECTED>
02:57.11arcanine<PROTECTED>
02:57.11arcanineOct  6 10:52:44 ERROR[3653]: chan_sip.c:11507 sipsock_read: We could NOT get the channel lock for SIP/1216-09cf4f68 - Call ID YWFlNzcyN2IzNjFiYmIwYTY4MTAzZjMwNmE4NTEzOTM.!
02:57.11arcanineOct  6 10:52:44 ERROR[3653]: chan_sip.c:11508 sipsock_read: SIP MESSAGE JUST IGNORED: CANCEL
02:57.12arcanineOct  6 10:52:44 ERROR[3653]: chan_sip.c:11509 sipsock_read: BAD! BAD! BAD!
02:57.13AlcateLXpert-login-
02:57.14arcanine<PROTECTED>
02:57.16arcanine<PROTECTED>
02:57.17AlcateLXpertasterisk is pretty damn cool
02:57.18arcanine<PROTECTED>
02:57.20arcanineOct  6 10:52:47 WARNING[32495]: channel.c:785 channel_find_locked: Avoide
02:57.23*** mode/#asterisk [+b %arcanine!*@*] by russellb
02:57.26putnopvutHoly flood, Batman!
02:57.31russellbarcanine: pastebin
02:57.36*** mode/#asterisk [-b %arcanine!*@*] by russellb
02:57.37arcanineok
02:57.42arcanineok
02:57.47russellbAlcateLXpert: glad you think so :)
02:57.55russellbok
02:58.50AlcateLXpertthe only bad thing is that I'm running it on vmware right now, and the voicemail / messages are totally segmented
02:59.08russellbyeah, i've heard mixed results with asterisk on vmware
02:59.29blitzrageI've got Asterisk running in VMware. Works great, but I haven't tried audio :)
02:59.41russellbo.O
02:59.51putnopvutAudio is overrated :)
02:59.56blitzragemaybe I will now... see what happens :)
02:59.58AlcateLXpertblitzrage, can u try the voicemail quickly ?
03:00.11blitzragenope... working on rebuilding voicemail actually
03:00.42AlcateLXpertdamn it s too bad
03:00.52AlcateLXpertI can t wait to have this work with my alcatel pbx
03:01.26*** join/#asterisk [hC] (n=hardcore@S01060016b61c8983.vf.shawcable.net)
03:02.00AlcateLXpertone of my customers had this setting, with asterisk -> nec -> alcatel on sip turnk
03:02.24AlcateLXpertbut when the alcatel would send the reinvite to the destination mailbox, asterisk would go to the main mvoicemail greeting, instead of the user's one
03:02.36AlcateLXperti have to work on that this week ..
03:03.41*** join/#asterisk stkn_ (n=stkn@gentoo/developer/pdpc.active.stkn)
03:03.57blitzrageAlcateLXpert: actually Voicemail() works fine in VMware Fusion running CentOS 5 with ztdummy installed on my MacBook Pro
03:04.03blitzrageaudio quality is fine
03:04.09blitzrage(for 1 call)
03:04.17AlcateLXpertblitzrage, i don t have vmware on my mac
03:04.27AlcateLXperti m running it on XP, 1Gb RAM, with CentOS 5.5
03:04.42AlcateLXpertall but recorded messages is ok
03:04.46AlcateLXpertMOH is good too
03:04.50AlcateLXpertit s just the voicemail processing
03:04.59blitzrageit's has tiny little chops every once in a while... but I'm running 5 Asterisk boxes on this laptop
03:05.07blitzragemy recorded msg sounded fine
03:05.16blitzrageand it accepts DTMF
03:05.31blitzrageprocesses my voicemails fine
03:05.36AlcateLXpertit accept DTMF ok , but the VM totally chops.. greetings, and recorded messages
03:05.40blitzrageguess VMware Fusion is better than VMware Server on XP... ? :)
03:05.41AlcateLXpertlike I said, MOH is ok
03:05.44AlcateLXpertlol
03:05.47blitzrageya, my recorded msg was fine
03:05.55blitzrageit sounded just as good as the recorded prompts
03:05.55AlcateLXpertactually it s vmWare workstation
03:06.00blitzragestill sucks :)
03:06.06blitzrage(apparently.......)
03:06.18AlcateLXpertyeah. i have another machine here.. maybe i ll rebuild it, put a kvm, and work on it ..
03:06.40blitzragethis is cool... I'm running a cluster of 3 Asterisk, 1 OpenSER, 1 Web/DB server, all bridged IPs, with X-Lite in OSX, and it all works great
03:06.59AlcateLXpertblitzrage, what mac do you have ? powerbook ?
03:07.07blitzrageMacBook Pro
03:07.09russellbblitzrage: speaking of clusters
03:07.14blitzragethe newest one
03:07.26blitzrageCore 2 Duo w/ 2GB RAM
03:07.34blitzragerussellb: yes sir?
03:07.58russellbblitzrage: http://svn.digium.com/view/asterisk/team/russell/events/configs/ais.conf.sample?view=markup
03:08.07blitzrageo.O
03:08.09AlcateLXperti m thinking about getting the latest iMac :) It's da bomb
03:08.13russellbmy sample config for sharing MWI on a LAN
03:08.14AlcateLXpertafter my iPhone :D :D
03:08.21russellbi made a sample config that IMO doesn't suck :)
03:08.33russellbbut that's only for the asterisk part ... there is other config for setting up AIS
03:08.48blitzragerussellb: this is sweet!
03:09.01blitzrageI know what I'm playing with this weekend probably :)
03:09.05russellbha
03:09.17blitzrageespecially now that I can build clusters on my laptop
03:09.24russellbthat's hot
03:09.25blitzrageit kills my HD though
03:09.36blitzrage120GB's GONE, just like that
03:09.41russellbsetting up the openais app is pretty easy, though
03:09.49russellbfor what i have so far, anyway
03:09.49blitzragealthough I have this USB HD that has 500 MB I might hook up
03:09.55russellbyou have to change like 1 line
03:09.59russellbin the default config
03:10.04blitzragehawt
03:10.11blitzragemeans there is lots of potential :)
03:10.15AlcateLXpertis there anything to do for the web vmail to work ?
03:10.18russellboh, and i wrote the distributed locks functions already
03:10.20russellbbut haven't tested them
03:10.21blitzrageheh... I like how SHELL() can just be copied from trunk to 1.4
03:10.31russellbnice
03:10.44blitzragerussellb: sweet! let me know when you come up with a test that actually proves it's a problem, heh
03:11.16russellba test that proves that they work?
03:11.41russellbor proves that they ... don't?
03:11.52filerussellb: how about a test that proves they both work and don't work
03:11.56russellbthat's hot
03:11.57blitzrageno, something that proves the problem that was discussed at astricon is reproducable
03:12.02putnopvutquantum mechanics
03:12.08blitzragethat's what I was trying to say (what file said)
03:12.12*** join/#asterisk ming_zym (n=ming_zym@124.254.54.14)
03:12.58russellbblitzrage: ohhhh
03:13.10blitzrageputnopvut: what was that "hack" you were thinking if I were to use SHELL to pull data back from the file... ?
03:13.21russellblike ... implementing a dialplan that shows a distributed race condition?
03:13.25russellband then having it fixed with this stuff?
03:13.26blitzragerussellb: yes
03:13.28blitzrageyes
03:13.28russellbnice.
03:13.34russellbsounds like a challenge!
03:13.36blitzrageindeed
03:13.47blitzrageit's all really just a theory that you're even fixing something that is a problem :D
03:13.48blitzrageheh
03:13.55AlcateLXperthey
03:14.09AlcateLXpertfor the web voicemail to work, on centos , did you have to install perl-suid  ?
03:14.24russellbblitzrage: well, what about a read, process, write cycle with func_odbc?
03:14.39russellbyou do some lookup, do some logic, update the database, and you want it to be atomic
03:15.02russellbi guess you lock tables for that, huh ...
03:15.02putnopvutblitzrage: what? hack? shell?
03:15.08filerussellb: you're an atomic operation.
03:16.12*** topic/#asterisk by russellb -> Asterisk: The Open Source Telephony Application Platform -=- Asterisk 1.4.12, Asterisk-addons 1.4.3 (Oct. 2, 2007) -=- Join #asterisknow or #asterisk-gui for AsteriskNOW and Asterisk-GUI info -=- Join #asterisk-commits to monitor svn changes -=- Join #freepbx for freepbx/#trixbox for trixbox support. -=- http://www.digium.com/en/company/switchvox-acquisition-faq.php -=- Happy Birthday file!!!!
03:16.15blitzrageputnopvut: I was trying to parse 1 line at a time of a text documentation from the dialplan
03:16.42voipsanchezis digium's ftp down??
03:16.48blitzrageI was wondering if you could think of a system call I might perform to read back a single line of a file....
03:16.50blitzragethere is no FTP
03:16.51blitzragejust HTTP
03:17.31voipsancheztryign to download the instalation files.. reading the manual it shows
03:17.33voipsanchez# wget -–passive-ftp ftp.digium.com/pub/asterisk/asterisk-1.*.tar.gz
03:17.37blitzragewhich book?
03:17.45blitzragesounds like you've got the 1st edition
03:17.47blitzrage~book
03:17.47jbotAsterisk: The Future of Telephony 2nd Edition (ISBN  0-596-51048-9) --- Order yours at http://www.oreilly.com/catalog/9780596510480/ ---  Downloadable PDF http://downloads.oreilly.com/books/9780596510480.pdf
03:17.59voipsanchezAsteriskTFOT.pfd
03:18.05voipsanchezok
03:18.11blitzragevoipsanchez: you've got an outdated book
03:18.23voipsanchezgot it at digium hehe
03:18.31blitzragedigium needs a new link! :)
03:18.34blitzragethey are always behind the times
03:18.35voipsanchezwill check that one, thank you blitzrage
03:21.53*** join/#asterisk famicon (i=redz@c51447ddc.cable.wanadoo.nl)
03:22.37fileputnopvut: this is a no slam dunk zone
03:23.44blitzrageno jumping; it makes me nervous
03:24.13putnopvutI can dunk without jumping!
03:25.14blitzrageI've seen you... it would have to be one of those little kid nets
03:25.22blitzrage(oh burn)
03:25.40putnopvutNo, I just stretch my arm REALLY far.
03:26.13filethat's what she said.
03:26.19putnopvutsssssssss
03:26.49blitzrageI'd do /that/ for a buck
03:27.27putnopvutThat's what russellb said.
03:33.18putnopvutThe only species of mammal that can both fly and swim is the appalachian hooded snapfox.
03:33.26putnopvutThat is a fact I just made up.
03:33.54blitzragelol
03:34.01blitzrageindeed
03:34.11filehe's almost too creative...
03:34.17russellbi can't compete with his randomness abilities
03:34.27blitzrageI agree with that assessment
03:34.29fileOFF WITH HIS HEAD!
03:34.43*** mode/#asterisk [+b %putnopvut!*@*] by russellb
03:34.45russellbhar har har
03:34.58codefreezethat'd make 2 of him--- are you really sure you'd wanna do that?
03:35.11*** mode/#asterisk [-b %putnopvut!*@*] by russellb
03:35.19putnopvutThanks for removing the gag.
03:35.21russellbha
03:35.31russellbyou weren't supposed to tell
03:35.33blitzragerussellb has gone power crazy
03:35.40russellb:(
03:35.43*** mode/#asterisk [-o russellb] by russellb
03:35.44fileputnopvut: what was the safety word?
03:35.46putnopvutYeah, and unfortunately I'm not an op in this channel.
03:35.51russellbi'm not either
03:35.58putnopvutfile: "lotion"
03:36.01blitzragehey, I'm in favour of the power craze
03:36.04*** mode/#asterisk [+o russellb] by blitzrage
03:36.12*** mode/#asterisk [+o putnopvut] by ChanServ
03:36.14*** mode/#asterisk [+o putnopvut] by blitzrage
03:36.17*** mode/#asterisk [-o russellb] by ChanServ
03:36.19putnopvut!!
03:36.25blitzragemy my my
03:36.28russellbo.O
03:36.28blitzragehow the roles have switched
03:36.33*** mode/#asterisk [+o russellb] by ChanServ
03:36.39blitzragehe's a magician!
03:36.41*** mode/#asterisk [-o blitzrage] by russellb
03:36.45*** mode/#asterisk [-o putnopvut] by russellb
03:36.56putnopvutargh
03:37.05*** mode/#asterisk [+o blitzrage] by ChanServ
03:37.08blitzragemwahahaha
03:37.08russellbwho wants some!
03:37.12*** mode/#asterisk [+o putnopvut] by russellb
03:37.13putnopvutI don't!
03:37.15fileme me me
03:37.16putnopvutDammit!!
03:37.18*** mode/#asterisk [+o file] by russellb
03:37.28*** kick/#asterisk [putnopvut!n=putnopvu@user-24-214-112-81.knology.net] by putnopvut (putnopvut)
03:37.38*** join/#asterisk putnopvut (n=putnopvu@user-24-214-112-81.knology.net)
03:37.40*** mode/#asterisk [+o codefreeze] by russellb
03:37.54*** mode/#asterisk [+ooo codefreeze codefreeze codefreeze] by russellb
03:37.57blitzragethe girls say he is quick with his fingers
03:38.09russellbyes, i type fast.
03:38.15fileblitzrage: too quick I heard
03:38.18blitzragethat's what i was implying
03:38.28*** mode/#asterisk [-o file] by russellb
03:38.39file*gasp*
03:38.40putnopvutmode (-o file ) by russelb
03:38.47*** mode/#asterisk [+o file] by russellb
03:38.52*** mode/#asterisk [+o putnopvut] by russellb
03:39.04putnopvutfeels nice
03:39.17putnopvut(that's what she said)
03:39.22russellbguess nobody else wants some :-p
03:39.44blitzrageonly the Digium crew is alive
03:39.48russellbit's like ... people had something else to do on this fine evening
03:39.51russellbso it appears
03:39.57blitzrageya... what the hell would you do on a Friday night?
03:40.02russellbcode?
03:40.02putnopvutIt's FridaY?
03:40.09russellbIRC it up?!
03:40.14blitzragetry and figure out how the hell to read in a text file to the dialplan one line at a time!
03:40.18blitzragethat's what is keeping me up
03:40.57blitzrageI love how twisted always has an IRC presence, but I never see him talk anymore
03:41.12putnopvutHe's been talking off and on the past couple of weeks.
03:41.12fileseems a little... twisted?
03:41.22putnopvutmsg nickserv help
03:42.19fileputnopvut: I refuse to msg nickserv for you, lazy bugger
03:42.22russellbblitzrage: he was talking earlier today
03:42.25russellb~seen twisted
03:42.26jbottwisted is currently on #asterisk. Has said a total of 44 messages. Is idling for 7h 20m 56s, last said: 'nice :)'.
03:43.23codefreezewow. better watch what I say. Jbot will remember!!!! and report!!!
03:43.33codefreeze~seen codefreeze
03:43.34jbotcodefreeze is currently on #asterisk-doc (2d 18h 10m 2s) #asterisk-dev (2d 18h 10m 2s) #asterisk (2d 18h 10m 2s) #asterisk-bugs (2d 18h 10m 2s). Has said a total of 40 messages. Is idling for 1s, last said: '~seen codefreeze'.
03:43.35filejbot: file?
03:43.36jbotsomebody said file was Joshua Colp, jcolp@digium.com
03:43.39filelame
03:43.43russellbjbot: russellb
03:43.44jboti guess russellb is Russell Bryant <russell@digium.com>. He is also kind of a big deal, people know him. ...NOT!!
03:43.52russellbjbot: forget russellb
03:43.52jboti forgot russellb, russellb
03:44.08putnopvutjbot: forget putnopvut
03:44.08jboti forgot putnopvut, putnopvut
03:44.34russellbjbot: russellb is Russell Bryant <russell@digium.com>
03:44.35jbotrussellb: okay
03:44.45codefreezejbot: codefreeze
03:44.46jbotmethinks codefreeze is the most wonderful guy you'd ever like to meet!, or an alias for Steve Murphy
03:44.58codefreezeI can live with that!
03:45.13russellbjbot: asterisk
03:45.14jbot[asterisk] the best free PBX in the world
03:45.31russellbjbot: asterisk is also #asterisk on irc.freenode.net
03:45.31jbotrussellb: okay
03:45.38russellbjbot: asterisk is also http://www.asterisk.org
03:45.39jbotrussellb: okay
03:45.49putnopvutjbot: putnopvut is putnopvut's nickname on IRC. He once went skydiving.
03:45.49jbotokay, putnopvut
03:46.17russellbjbot: forget putnopvut
03:46.17jbotrussellb: i forgot putnopvut
03:46.42codefreezeputnopvut: uh, just once, huh? Is your motto "If at first you don't succeed, try, try again" ???
03:47.03russellbjbot: putnopvut is a german shepard that lost his rear left leg fighting the war against cheap dog food
03:47.03jbotrussellb: okay
03:47.05putnopvutcodefreeze: I actually have a shirt that says "If at first you don't succeed, skydiving isn't right for you"
03:47.30putnopvutI wear it when I go to the gym.
03:47.39putnopvutSometimes.
03:47.48russellbi wear shirts sometimes too
03:47.58fileno way
03:48.12*** join/#asterisk mltlnx (n=mltlnx@64.3.170.41.ptr.us.xo.net)
03:48.25russellbmltlnx: welcome to #asterisk, you get ops!
03:48.27*** mode/#asterisk [+o mltlnx] by russellb
03:49.04codefreezeA Russian joke: Russian paratrooper instructor is teaching a class. One of the men asks: what do you do if the parachute doesn't open. He answers: Pull the secondary. Another q: "What if the secondary doesn't open?": Ans: "Come back and get a new parachute"
03:49.20fileI'm off to sleep
03:49.21putnopvutlol
03:49.27filerussellb: try not to destroy civilization as we know it in here
03:49.31*** mode/#asterisk [-o mltlnx] by russellb
03:49.34russellbfile: k!
03:49.39russellbfile: good night BIRTHDAY BOY
03:49.46file<3
03:49.49russellb<3
03:49.53putnopvut<r
03:49.56putnopvutoops.
03:49.58codefreezeWait!! is it file's b-day today?
03:50.04russellbcodefreeze: Saturday
03:50.05putnopvutIn his time zone it is.
03:50.10russellbbut it is Saturday for some already :)
03:50.17codefreezeHappy b-day, Josh!!!!!!
03:50.34russellbbrownies actually
03:50.36russellbin honor of file!!!!
03:50.50fileawwwww
03:51.58*** join/#asterisk deaftone (n=eh@CPE-76-177-169-180.natsoe.res.rr.com)
03:52.35codefreezedeaftone shows up just as the brownies are served? How'd he know?
03:52.38*** join/#asterisk gremzoid (n=gremzoid@d58-111-173-16.rdl5.qld.optusnet.com.au)
03:53.45russellbi feel like coding
03:53.52russellbsort of
03:54.06russellbi feel like watching code appear on the screen
03:54.12russellbthat'd be a cool tv show
03:54.22gremzoidthat'd be boring as fuck
03:54.25russellblol
03:54.30putnopvutfuck isn't boring!
03:55.23gremzoidafter two days i finally has asterisk working with mysql (sip/iax users/peers)
03:55.38russellbyayyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
03:55.39putnopvutcool
03:55.51gremzoidnow moving onto extensions... how does the switch application work in the dialplan
03:55.58gremzoidi don't seem to be getting much success
03:56.11blitzrageyou don't want extensions.conf in the DB
03:56.22blitzrage(well... probably not, might depend what you're doing)
03:56.32gremzoidwell can i do it partially?
03:56.57gremzoidi'm writing a pretty UI in php to handle IAX/SIP/H323 peers/users...
03:57.26gremzoidi only want to add a couple of entires to the dialplan... point extens at macros, etc
03:57.48russellbyou'd be better off implementing that with a common dialplan
03:58.00russellbthat uses func_odbc to do the database lookup(s)
03:58.16russellb~thebook
03:58.17jbotAsterisk: The Future of Telephony 2nd Edition (ISBN  0-596-51048-9) --- Order yours at http://www.oreilly.com/catalog/9780596510480/ ---  Downloadable PDF http://downloads.oreilly.com/books/9780596510480.pdf
03:58.22russellbthe book has some examples of how to use func_odbc
03:59.02gremzoidrussellb, i've already got sip/iax/h323 peers and users in mysql... i'd like to get extensions as well
03:59.16gremzoidthe book hasn't got much info
04:00.14*** join/#asterisk stkn__ (n=stkn@gentoo/developer/pdpc.active.stkn)
04:02.05russellbyeah, those 600 something pages are all pretty much blank
04:02.06russellb:-p
04:02.25gremzoidrussellb, i've already setup a table, etc for it... for some reason i can't get the switch Realtime/context@exten to work
04:03.10blitzrage<PROTECTED>
04:03.12blitzragew0000t!
04:03.20blitzragenow to pass that to SHELL() somehow, and I'm golden
04:03.31blitzragetime to play :)
04:03.35russellbblitzrage: lol!
04:03.39gremzoidrussellb, well i'm reading pages, 250-350... part about ODBC... there is nothing here about extensions in mysql... or odbc...
04:03.51blitzragegremzoid: that is a reason for that :)
04:04.05russellbgremzoid: *shrugs* ... it's really just not a recommend thing to use if you can get away with it
04:04.29blitzrageuse subversion to store your /etc/asterisk directory to keep similar dialplans (that's what I prefer)
04:04.50gremzoidbut then i have to deal with system permissions...
04:05.07gremzoidhmmm
04:05.12blitzrageheh
04:05.18gremzoidkinda negates the point
04:05.38blitzrageI guess... I personally just don't understand why you'd keep the dialplan in the database...
04:05.43blitzragedoesn't that make it hard to modify?
04:06.22gremzoidwell it's not the entire dialplan, i want to configure asterisk from a pretty web UI, rather than force the user to learn the in's and out's of asterisk, linux and what-not
04:07.55gremzoidsiemens voip platforms are configured via your browser... i'd like to have a similar process with asterisk
04:10.01gremzoidhttp://www.voip-info.org/wiki/view/Asterisk+RealTime+Extensions
04:10.24gremzoidthe first 1/3 of that page... is there any decent into on using the 'switch' app like that?
04:10.32gremzoidinto/info
04:11.54*** join/#asterisk mltlnx (n=mltlnx@64.3.170.41.ptr.us.xo.net)
04:17.13*** join/#asterisk coppice (n=chatzill@142.204.17.210.dyn.pacific.net.hk)
04:20.50blitzragegah! now I gotta learn how to escape this...
04:20.54blitzragethe dialplan hates me :)
04:21.53*** join/#asterisk mltlnx (n=mltlnx@64.3.170.41.ptr.us.xo.net)
04:27.59*** join/#asterisk mog (n=mog@c-71-207-200-130.hsd1.al.comcast.net)
04:27.59*** mode/#asterisk [+o mog] by ChanServ
04:28.59blitzrageYES!
04:29.04blitzrageSUCCESS!
04:29.23blitzrageexten => 8,n,NoOp(${SHELL(tr "\\\n"\, "&" < /var/spool/asterisk/voicemail/default/100/INBOX/msg0000.txt \| cut -d \\\& -f 5)})
04:29.31blitzragereturns line 5 of a file
04:29.32putnopvutUGH!
04:29.46blitzrageI only need to do it until someone fixes M10903 :)
04:29.47putnopvutO my GOD that is ugly.
04:29.52blitzragehells ya
04:29.57putnopvutM10903
04:30.13putnopvutOh, muffinman isn't in here.
04:30.43blitzrageexten => 8,n,NoOp(${CUT(PATH_TO_FILE,\\\n,1)}) wouldbe better
04:38.43*** join/#asterisk asdx (n=foo@adsl-154-33.click.com.py)
04:39.34*** join/#asterisk mltlnx (n=mltlnx@64.3.170.41.ptr.us.xo.net)
04:49.19*** join/#asterisk gazza1019 (n=gazza101@ip24-255-141-170.ks.ks.cox.net)
04:52.24putnopvutblitzrage: if you're still around, I commented on 10903.
04:53.07blitzragestill here
04:53.25putnopvutAll I said was that the \n seems to be accounted for in trunk.
04:53.37blitzrageah gotcha
04:53.38putnopvutI was wondering if you had tried your test in trunk, just to see if I'm right.
04:53.42blitzrageI had not
04:53.56blitzragebut I might be able to do a diff and such
04:54.29blitzrageI'm gonna try and not get distracted for now and see if I can make the logic work, then I can do that part and replace it with a cleaner parsing statement
04:54.52putnopvutOkay. I think I'm about done with asterisk-related things for the night. I'll talk to you later.
05:01.16blitzrageok, I FINALLY got all the data into the dialplan!
05:01.17blitzragew00t
05:01.53blitzragehttp://pastebin.ca/727595
05:02.04blitzragenow I have all the variables set
05:03.19JunK-Yyay!
05:03.24blitzrageyay indeed!
05:03.36blitzragetook a few hours to figure that ut
05:03.38blitzrageout*
05:10.33JunK-Yblitzrage for prez!
05:14.33*** join/#asterisk CCFL_Man2 (i=d1115dcb@pool-71-245-2-19.scr.east.verizon.net)
05:22.38*** join/#asterisk kiscokid (n=Ron_Laut@adsl-216-101-109-187.dsl.snfc21.pacbell.net)
05:34.10*** part/#asterisk kiscokid (n=Ron_Laut@adsl-216-101-109-187.dsl.snfc21.pacbell.net)
05:38.11blitzragew00t!
05:38.13blitzragemore working!
05:38.14blitzragehttp://pastebin.ca/727620
05:48.25sheppardHow bad is a VoxZone X100P ?
05:49.05*** join/#asterisk bmg505 (n=leon@196.209.176.188)
05:49.43schuebaa ha ha ha.
05:49.45schuehttp://www.lobstertech.com/code/voicechanger/
05:49.59schuethats so fun.
05:59.50JunK-Yya, voicechanger rocks!
05:59.59schuehilarious.
06:00.28schueI'm fighting some weird issue where I'm trying to route on the incoming DID right now and it seems to do it every 2 out of 3 times.
06:03.02*** join/#asterisk L|NUX (n=linux@unaffiliated/lnux/x-10290)
06:12.46*** join/#asterisk Beave (n=beave@DCC.SEND.startkeylogger.000.telephreak.org)
06:26.25*** join/#asterisk munmun (n=mun_mun@203.80.176.168)
06:30.52*** join/#asterisk scardinal (n=supreme@port816.ds1-suoe.adsl.cybercity.dk)
06:32.01DirtyDI notice some "clicking" sounds when using Asterisk::AGI->get_data.. Am I the only one?
06:55.27*** join/#asterisk jeffgus (n=jeffgus@greengables.zimage.com)
07:46.14*** join/#asterisk yannj_fr (n=yannj@vpn.intelunix.fr)
07:48.58*** join/#asterisk mltlnx (n=mltlnx@cpe-72-225-244-190.nyc.res.rr.com)
08:13.05*** join/#asterisk USSRBACK (n=MAX@80.92.183.84)
08:13.25*** join/#asterisk ghenry (n=ghenry@suretecsystems.plus.com)
08:32.32*** join/#asterisk ToTo (n=ToTo@host75-142-dynamic.8-87-r.retail.telecomitalia.it)
08:42.34*** join/#asterisk blq (n=Bl@dslb-088-067-041-017.pools.arcor-ip.net)
08:51.47*** join/#asterisk duki (n=duki@host-85-27-58-159.brutele.be)
09:11.57*** join/#asterisk porche (n=porche@81.215.212.233)
09:12.06porchehi all
09:12.14porchei have got an AGI question
09:23.07porche:) ok here is the question
09:23.28porchewhen an AGI command launched either via direct agi or fastagi
09:23.49porcheis there a way to track key punched during the call flow, like in extensions?
09:28.16blitzragew00000h00000!
09:28.31blitzragealmost have Voicemail() basically created in dialplan logic now
09:31.44gremzoidswitch => Realtime/default@extensions <--- does this actually work in 1.4.11?
09:45.23blitzrageif anyone is bored and wants to see what I've been working on
09:45.25blitzragehttp://www.pastebin.ca/727732
09:45.35blitzrageand now, I must sleep.. it's nearly 6am... eeesh!
09:48.24*** join/#asterisk jengelh (n=jengelh@sovereign.computergmbh.de)
09:49.41XQZMEhi alll
09:49.53XQZMEi have some delay with Sub routine
09:50.45XQZMEhttp://www.pastebin.ca/727734
09:50.50XQZMEwhat is a problem?
09:50.56*** join/#asterisk grEvenX (n=even@pc107-130.ktv.no)
09:50.58XQZMEI have time delay with it
09:51.19*** join/#asterisk saftsack (n=saftsack@pD9E05456.dip.t-dialin.net)
09:53.18*** join/#asterisk Tili (n=tili@cm48.gamma244.maxonline.com.sg)
10:15.41*** join/#asterisk littleball (n=littleba@bb220-255-76-228.singnet.com.sg)
10:15.54littleballhello, how to get the current timestamp in dial plan?
10:17.03*** join/#asterisk adorah (n=Michael@87.69.57.246.cable.012.net.il)
10:18.18*** part/#asterisk porche (n=porche@81.215.212.233)
10:33.51*** join/#asterisk coppice (n=chatzill@142.204.17.210.dyn.pacific.net.hk)
10:38.11*** join/#asterisk ToTo (n=ToTo@host75-142-dynamic.8-87-r.retail.telecomitalia.it)
10:40.39XQZMEHello I have some context.
10:40.44XQZME[yes-no]
10:40.45XQZMEexten => s,1,Read(DIGIT,,1,,,)
10:40.45XQZMEexten => s,n,NoOp(${DIGIT})
10:40.45XQZMEexten => s,n,Return()
10:40.45XQZMEexten => t,1,Playback(invalid)
10:41.10XQZMEIt should accept only 2 digits 0 and 1
10:41.21XQZMEHow can i restrict all other digits??
10:41.37XQZMEand receive only this two digits?
10:45.52Fluor_XQZME, use WaitExten() instead of Read() and make extensions in your [yes-no] context for those digits you want to accept.
10:46.36*** join/#asterisk ToTo (n=ToTo@host75-142-dynamic.8-87-r.retail.telecomitalia.it)
10:49.51*** join/#asterisk Strom_M (n=strom@208.127.172.112)
10:50.30XQZMEok
10:50.54XQZME10xs
10:51.02*** join/#asterisk Strom_M (n=strom@208.127.172.112)
10:51.18*** join/#asterisk Qapf (n=Qapf@stevenson-17-2.resnet.ucsc.edu)
10:57.44XQZMEI want to store some data from IVR in database, how hoild i do this?
11:00.49Fluor_I think you need an AGI script to store data in a RDBMS like MySQL/PostgreSQL, or DBSet to store values in *'s database.
11:01.27XQZMEFor example when astersk prompts to user
11:01.33XQZMEenter your age
11:01.38XQZMEand some data like this
11:01.52XQZMEi want to store them in mysqla database
11:03.16Fluor_AFAIK you need to pass the info to an AGI script, as Asterisk does not support interaction with databases directly.
11:03.33Fluor_See the DeadAGI() AEL-call.
11:03.58XQZMEDeadAGI is for dead channels as i know
11:05.02*** join/#asterisk ToTo (n=ToTo@87.8.142.75)
11:06.36Fluor_Correct. You need AGI().
11:07.02XQZMEwhat about Asterisk cmd MYSQL
11:07.03XQZME?
11:07.34Fluor_i am not familiar with that and do not know of it's existence.
11:07.50Fluor_well, now i do.
11:08.21*** join/#asterisk duki (n=duki@host-85-27-58-159.brutele.be)
11:08.42Fluor_seems like the exact thing you need!
11:09.27gremzoidXQZME, http://www.voip-info.org/wiki/index.php?page=Asterisk+func+realtime
11:09.49XQZME10xs
11:09.51gremzoidand http://www.voip-info.org/wiki/view/Asterisk+cmd+MYSQL
11:10.27gremzoidXQZME, be warned, you will loose a majority of your hair getting it to work
11:10.37XQZME:)
11:10.44gremzoidnearly there tho... :)
11:10.51Strom_Mgremzoid: i dont think he's looking for Realtime
11:11.09XQZMEyes i need realtime
11:11.22gremzoidStrom_M, more likely the later... but don't take my word for gospel
11:11.43gremzoid... on the intrawebz no one knows your a dog!
11:11.59Strom_Mum
11:12.06Strom_M....yeah
11:12.13Strom_Mless your horrid grammar :)
11:12.35gremzoidirc, not an english class
11:13.09tzafrir_homeIn the intranet, they actually do
11:13.34Strom_Mirc: you're using written English to communicate with people
11:14.16gremzoidi could be a cheese eating surrender monkey?
11:14.31Strom_MTWINKIES
11:15.34*** join/#asterisk zotz (n=zotz@24.244.163.157)
11:16.43tzafrir_home1f prsng ur centense teks 2 mach CPU pwr, people will have less brain CPU power to actually answer you
11:17.02Strom_Mdg dfg gr erew rgsdmfhsfj,er56 Qapf 3adfg ae ,m!!!!!!!!!!
11:17.32tzafrir_homeStrom_M, what makes you so sure of that?
11:17.48Strom_Mmostly the cocks
11:18.22gremzoidtimmy!
11:49.56XQZMEI have Asterisk 1.4. How can i install PHP-CLI for it?
12:00.57*** join/#asterisk axscode (n=axscode@203.213.217.123)
12:02.45*** join/#asterisk [TK]D-Fender (n=Joe@64.235.216.2)
12:05.08orcimrepus<PROTECTED>
12:05.49[TK]D-Fenderorcimrepus, you don't say!
12:06.19[TK]D-Fender<mark>
12:06.29XQZME[TK]D-Fender: Helloooooooo
12:06.44orcimrepusjust saying hello
12:06.52XQZMEI have Asterisk 1.4 i want to use php scripts
12:07.01XQZMEwhat should i install ?
12:08.50XQZMEphp-cli?
12:08.55[TK]D-FenderXQZME, * + PHP
12:09.10XQZMEI have PHP already
12:09.20[TK]D-FenderXQZME, what do you want to DO exactly?
12:09.52XQZMEi want to interact with databases
12:10.02XQZMEi want to receive something from IVR
12:10.11XQZMEfor example IVR asks for age
12:10.27XQZMEpress 2 digits for age
12:10.43gremzoidyou want AGI
12:10.47XQZMEthis digits will be stored in database
12:10.55XQZMEyes i want AGI
12:11.09XQZMEand i want to use PHP scripts in AGI
12:11.37gremzoidhttp://www.voip-info.org/wiki-Asterisk+cmd+AGI
12:12.31XQZMEhttp://www.voip-info.org/wiki/view/Asterisk+AGI+php
12:12.47[TK]D-FenderXQZME, Go look for the php-agi script
12:12.48XQZMEthis document describes something about PHP
12:13.14XQZMEhttp://phpagi.sourceforge.net/ <---- this one?
12:13.55XQZMEthere is also http://eder.us/projects/asterisk_php/
12:14.01XQZMEand im confused now
12:14.05[TK]D-FenderXQZME, yes
12:14.07XQZMEwhich one should i need
12:14.15[TK]D-Fenderhttp://phpagi.sourceforge.net/
12:14.21XQZMEand also php-cli
12:14.36[TK]D-FenderXQZME, only if you need to call cli stuff, etc, which I doubt.
12:15.05XQZMEok and what is this ---> http://eder.us/projects/asterisk_php/
12:16.26XQZMEnick USSRBACK
12:18.57gremzoidYEY! i finnally have dynamic extensions from mysql
12:19.22USSRBACKHowww
12:19.39USSRBACKI want to interact with mysql too
12:19.42gremzoidwith much tearing out off the hair, caffine and persistance!
12:21.18[TK]D-FenderUSSRBACK, Sorry, this isn't a channel on prorgamming
12:21.31gremzoidUSSRBACK, http://asterisk.pbx.in/asterisk-mysql-realtime-howto
12:21.57USSRBACKok sorrryyy
12:21.59gremzoidfollowed that then a heap of REALTIME/SET/CUT functions in my dialplan
12:22.47USSRBACK[TK]D-Fender: I have downloaded this phpagi. what should i do? there is not any install file in that tar
12:23.30[TK]D-FenderUSSRBACK, you don't NEED anything for AGI.  all that library does is give you a convenient setr of procedures to interact with *.
12:23.37[TK]D-FenderUSSRBACK, go read... THE BOOK
12:23.38[TK]D-Fender~book
12:23.39jbotAsterisk: The Future of Telephony 2nd Edition (ISBN  0-596-51048-9) --- Order yours at http://www.oreilly.com/catalog/9780596510480/ ---  Downloadable PDF http://downloads.oreilly.com/books/9780596510480.pdf
12:27.55*** join/#asterisk steliosk (n=Stelios@ipa226.211.tellas.gr)
12:29.00*** join/#asterisk Ch0Hag (i=mking@knight.monnsta.net)
12:30.06Ch0HagIn sip.conf I can have 'setvar=FOO=something' to have FOO set to something for that peer.
12:30.18Ch0HagIs there a similar option for IAX?
12:39.45*** join/#asterisk bjorkintosh (n=bjork@ip72-204-54-41.fv.ks.cox.net)
12:39.50bjorkintoshdoes asterisk do faxes?
12:40.55ai-a[out]no.
12:41.10bjorkintoshhow do i find out about those?
12:41.26bjorkintoshi'd like to be able to send from web/mail to fax and back.
12:41.42ai-atried reading the forum bjorkintosh ?
12:41.55*** join/#asterisk davevg-btwtech (n=davevg-b@nj-67-76-177-147.sta.embarqhsd.net)
12:42.11bjorkintoshi just joined.
12:43.10bjorkintoshi'll check it out though.
12:43.19ai-abjorkintosh: www.voip-info.org
12:44.09ai-ahttp://www.voip-info.org/wiki-Asterisk+fax sounds like a good place.
13:11.45*** join/#asterisk jetlagmk2 (i=jetlag@pool-70-17-60-139.pskn.east.verizon.net)
13:11.56*** join/#asterisk ivrc (n=chatzill@adsl-067-035-109-224.sip.bct.bellsouth.net)
13:14.02*** join/#asterisk munmun (n=mun_mun@202.122.127.252)
13:14.59*** part/#asterisk davevg-btwtech (n=davevg-b@nj-67-76-177-147.sta.embarqhsd.net)
13:15.34ivrcHaving an issue receiving faxes - either live or '666' test mode, ends with:  Spawn extension (macro-faxreceive, s, 3) exited non-zero on 'SIP/300-af608ef8' in macro 'faxreceive'  --- using 1.4.11 with FreePBX 2.3.0.3 on Centos 4.5
13:16.18*** join/#asterisk traxx (n=traxx@ipd50ab9f5.speed.planet.nl)
13:17.22*** join/#asterisk Datawell (n=monopoli@82.53.180.174)
13:18.48DatawellHi all
13:21.53*** join/#asterisk ming_zym (n=ming_zym@124.254.57.226)
13:22.01zirmanHello
13:36.24*** join/#asterisk munmun (n=mun_mun@203.80.176.168)
13:38.00Datawellsomeone who can help me on a trunk stuff ?
13:40.29*** join/#asterisk Schumie (i=SteveWri@cpc2-rdng2-0-0-cust382.winn.cable.ntl.com)
13:41.50Qwell~msg
13:41.50jbot(1) Use private messages to the bots to reduce channel spam, but don't message people on #debian without asking permission first.  Most questions should be asked on channel, so that others can benefit from the question and the answers received.  (2) Always feel free to message freenode network staff.  They're the people with hostnames ending in 'staff.freenode'.  ...
13:42.02Qwellthat was not what I wanted
13:44.33*** join/#asterisk vykarian (n=risadinh@200.155.56.41)
13:44.39*** part/#asterisk vykarian (n=risadinh@200.155.56.41)
13:48.41bjorkintoshdoes jbot know this is not #debian?
13:49.08Qwellprobably
13:51.52*** join/#asterisk moprilo (n=jjohn@190.10.0.64)
13:53.25moprilohi guys, sometimes, i get calls so fast, after someone hangups the Zap channel, that asterisk doesn't have time to kill the zap.  So the next call gets congestion, (1 second too early)  Is there a way to make it wait?
13:53.57moprilojmm wait(1) ..! jaja, i'll try that
13:56.01mopriloautoanswer on.. hehe
13:57.12moprilobut maybe i can do something like check zap.. if busy wait(2) n try again
14:10.55*** join/#asterisk funxion (n=nunya@adsl-065-013-053-031.sip.mia.bellsouth.net)
14:11.25funxionanyone up
14:13.38*** join/#asterisk zotz (n=zotz@24.244.163.157)
14:14.05mopriloi am
14:25.51*** join/#asterisk bintut (n=chatzill@cm244.gamma178.maxonline.com.sg)
14:31.45USSRBACKanyone used res_php? Asterisk PHP http://eder.us/projects/asterisk_php/
14:32.40Qwellres_php?
14:32.50Qwellwhy not just use an agi?
14:33.15USSRBACKAsterisk PHP allows you to control the dial-plan and write applications for Asterisk in PHP. This is faster and more flexible than phpAGI
14:33.29USSRBACKThis is written in Asterisk wiki page
14:41.04*** join/#asterisk L|NUX (n=linux@unaffiliated/lnux/x-10290)
14:46.21bintuthhmmm.. conference mode?
14:46.42USSRBACKwhat?
14:47.22*** join/#asterisk rmayorga (n=rmayorga@unaffiliated/rmayorga)
14:49.05bintut[INFO]Conference Mode has been enabled for this view; joins, leaves, quits and nickname changes will be hidden.
14:50.09*** join/#asterisk tdi (n=tdi@gvf90.internetdsl.tpnet.pl)
14:51.37traxxhi. anybody know how to show missed calls in asterisk?
14:52.33tdilokk in cdr maybe
14:52.45*** join/#asterisk adorah (n=Michael@87.69.57.246.cable.012.net.il)
14:52.46tdifor sure even ;)
14:53.11traxxyeah, that was my question, whether anybody knows the command for that?
14:54.06tdii do not, but look for it on voip-info.org, you will find for sure
14:54.48tdiif you keep cdrs in databse you can easily look for it with sql
14:54.56tdior even write some pl/sql funcition
14:55.56*** join/#asterisk famicon (i=redz@c51447ddc.cable.wanadoo.nl)
14:57.01*** join/#asterisk sysreq (n=sysreq@unaffiliated/sysreq)
15:01.03gremzoidchan_iax2.c:5160 register_verify: No registration for peer 'test1' <--- i'm trying to use mysql iaxusers
15:01.51gremzoidwhen i try to make my softphone login i get that error msg... why does it say 'peer' instead of 'user' (which is what is in the DB)... should i split the peers/users into two seperate tables?
15:02.40gremzoidsippeers seems to work perfectly fine...
15:02.40*** join/#asterisk tdi (n=tdi@gvf90.internetdsl.tpnet.pl)
15:05.30*** join/#asterisk _ShrikE (n=ShrikE@adsl-074-185-215-060.sip.msy.bellsouth.net)
15:10.40*** join/#asterisk WilliamK (n=noc@static-71-170-144-3.dllstx.fios.verizon.net)
15:12.10[TK]D-Fendertraxx, How do you define a "missed" call?
15:12.25[TK]D-Fendertraxx, From where?  To who?... huh?!
15:14.11traxx[TK]D-Fender: ok, let me put it this way: i'd just like to show the number(s) of any incoming calls.
15:15.37traxx[TK]D-Fender: i have already input 'core set verbosity 20'. numbers are shown as the calls arrive, but i'd still like to be able to see some sort of history if possible.
15:16.42traxx[TK]D-Fender: i see now my original question was not very clear.
15:17.28funxionhay tk
15:18.31funxiontraxx wouldnt that be in the cdr?
15:18.43[TK]D-Fendertraxx, it STILL isn't
15:19.26funxionI think he just wants to log incoming calls into *
15:19.36funxionbut I figured thats what cdr is for
15:20.20[TK]D-Fenderfunxion, it is.  Then again you could just dump it in your own log with 1 dialplan call.
15:20.52funxionyeah
15:21.15funxionyou could do an easy but chessy exten h,1
15:21.31funxionthen echo out anything with dialstatus not answered to a .txt file
15:22.01funxiono btw I got that problem figured out
15:22.09funxionand I still have immedioate yes
15:22.17funxionand without dialing local channel
15:22.28funxionI got lucky
15:22.29gremzoid*cough* shell script that sends a funky email :P
15:23.25[TK]D-Fenderfunxion,  woohoo
15:31.13*** join/#asterisk fakhir (n=fakhir@unaffiliated/fakhir)
15:37.48*** part/#asterisk Ch0Hag (i=mking@knight.monnsta.net)
15:40.37Sci_05anyone know of some good online places to get voip equipment?
15:40.50funxionvoipsupply.org
15:41.06funxionor something like that
15:41.31[TK]D-Fenderwww.telephonydepot.com
15:41.33*** join/#asterisk GiantPickle (n=GiantPic@S01060016b600537f.gv.shawcable.net)
15:41.35[TK]D-Fendermuch better pricing
15:41.38funxionsorry thats .com
15:41.40funxionreally
15:41.41funxionkewl
15:41.43funxionthnks
15:41.45funxionlol
15:41.49Sci_05ok i will check them out. I use to use atacomm till they closed up
15:44.05Sci_05thanks guys
15:52.07*** join/#asterisk Yourname`` (i=Miranda@unaffiliated/yourname/x-837320)
15:52.34Yourname``I don't know how you guys do it, but the sip debug sometimes makes NO sense to me! :( Can someone tell me what I need to be looking for when malfunction happens?
15:54.59*** join/#asterisk Defraz (n=t0tal@24-116-152-177.cpe.cableone.net)
15:56.21*** join/#asterisk ReD-MaN (i=daemon@CPE0002b38bce8b-CM0018c0b357cc.cpe.net.cable.rogers.com)
15:57.42[TK]D-FenderYourname``, depends what kind out of the 1000 that CAN go wrong IS happening.
15:58.12[TK]D-FenderYourname``, What you just asked is like asking "what do you look for when your car doesn't work?".  Nice open ended question....
15:58.13Yourname``Ok. Well, here's my SIP debug. What it's supposed to do is, get the phone call inbound via DID, and then forward it via SIP to another box. Right now, when I call the DID.. it gives a busy signal. http://pastebin.ca/727973
15:58.15*** join/#asterisk nighty^ (n=nighty@sushi.rural-networks.com)
15:58.40Yourname``[TK]D-Fender: Good morning, good sir. Usually it's the engine ;)
15:58.50Yourname``[TK]D-Fender: Can you please help me out with that pb?
15:59.06[TK]D-FenderYourname``, SIP/2.0 401 Unauthorized <--- bad user/pass on register
15:59.42Yourname``Where is that happening though? On the box where it's forwarding by SIP? or the provider?
16:01.46*** join/#asterisk ToTo (n=ToTo@host75-142-dynamic.8-87-r.retail.telecomitalia.it)
16:03.56Yourname``vitel-outbound
16:04.03Yourname``Anything else at all?
16:04.20Yourname``[TK]D-Fender : But if it's by SIP, then why does it matter?
16:08.49*** join/#asterisk r0d3nt (i=nobody@foster.stonedcoder.org)
16:11.33Yourname``[TK]D-Fender: Now, for some weird reason, it worked. Here's the pb -> http://pastebin.ca/727987
16:11.37Yourname``What's different not?
16:11.38Yourname``now*
16:12.40*** join/#asterisk Mr_Varmit (n=varmit@rrcs-64-183-163-178.west.biz.rr.com)
16:12.49Mr_Varmithello all
16:13.10*** part/#asterisk Mr_Varmit (n=varmit@rrcs-64-183-163-178.west.biz.rr.com)
16:14.28*** join/#asterisk Mr_Varmit (n=varmit@rrcs-64-183-163-178.west.biz.rr.com)
16:14.50Mr_Varmitcan someone help me with a problem im having
16:17.57Yourname``They say, don't ask to ask. Just ask.
16:20.16Mr_Varmitok...i can make calls inside the office...but i cant make a call out...i have a X100P card
16:24.28CCFL_Man2Strom_M: my replacement cords came for my green imperial WE 202
16:24.56Mr_Varmiti get a instant busy when i try to dial out
16:25.05CCFL_Man2subset cord matches perfectly and the green cloth handset cord looks super authentic
16:25.26Mr_Varmit_9XXXXXXXX
16:25.37Mr_Varmitdoes the _ have to be in there?
16:27.12CCFL_Man2Mr_Vomit: i think it does
16:27.44*** join/#asterisk saftsack (n=saftsack@pD9E05456.dip.t-dialin.net)
16:30.10Mr_Varmiti dont understand why i cant make a call on my ptsn line
16:31.20*** join/#asterisk |[_Caf_]| (i=___Caf__@229.85.252.216.dsl1.colba.net)
16:32.16|[_Caf_]|quick question, i have a problem with call on hold, after 5 minutes the line hangup any idea where i can adjust this setting ?
16:36.37*** join/#asterisk saftsack (n=saftsack@pD9E05456.dip.t-dialin.net)
16:38.06Mr_Varmitis there somthing i can do to make this work?
16:38.44Mr_Varmitwhat would cause me not to be able to call outside ?
16:39.52Mr_Varmitive tried 9 then the number...instant busy
16:44.17Mr_Varmit|[_Caf_]| seems like no one gives a answear in here
16:46.13*** join/#asterisk Datawell (n=monopoli@82.53.180.174)
16:48.04*** join/#asterisk MrNacho (n=boster@c-67-175-108-46.hsd1.il.comcast.net)
16:48.14*** join/#asterisk santiago (n=santiago@debian/developer/santiago)
16:48.15Fluor_Mr_Varmit, have you tried watching the debug logs while dialing out?  Asterisk usually logs why it sent you a busy signal.
16:48.19DatawellHi guys i'v a problem, on my Asterisk there's 2 ch. g729 installe and licensed. A provider redirect a phone number on my Asterisk IP. Without doing any configuration o doing a lot of configuration when a call come my Asterisk asnwer me "chan_sip.c:5256 process_sdp: No compatible codecs, not accepting this offer!" someone can help me ?!
16:48.27*** join/#asterisk famicon (i=redz@c51447ddc.cable.wanadoo.nl)
16:48.58Mr_VarmitFluor_ your talking asterisk -rvvvvvv
16:49.40MrNachoI'm getting a lot of "Client '%s' using deprecated BYE/Also transfer method.  Ask vendor to support REFER instead" messages which coredumps asterisk, is there a way I can catch this, as I have to use the current softphone, at least for now
16:51.31Mr_Varmitwhen i call inside to another extention, i see it pop up and show that i have made a call, but when i try to dial out, it shows nothing
16:52.06Fluor_what does your outbound extension look like?
16:52.11*** join/#asterisk puzzled (n=patrick@puzzled.xs4all.nl)
16:52.47fakhirMr_Varmit, you have 9 and then 8 digits it should be 7 for local calls
16:54.00Mr_Varmithot dog!
16:54.09Mr_Varmitlolol....
16:54.19Mr_Varmitsuch a stupid idiot i can be somtimes
16:54.26Fluor_zomg
16:54.54fakhirnot your fault dont know why the default is 8 in the asteriskNOW config
16:55.07Mr_Varmitthat just struck me kind of odd that asterisk cli didnt even show a call being made
16:55.44Mr_Varmitnow i have to tackle the mainmenu task....to figure out how to make the selections thing work...press 1 2 3 etc....
16:55.45Mr_Varmitlol
16:55.55*** join/#asterisk asdx (n=foo@adsl-158-254.click.com.py)
16:56.01Mr_Varmiti thank you all for the help....
16:56.45Datawellis it possible no one can help me :( :( :(
16:56.47Mr_Varmitso if i wanted to make a 1800 call...would i have to make another dialplan?
16:57.02fakhiryes
16:57.33fakhirwell not dialplan but calling rule
16:57.58Mr_Varmitis there anyway to not have the 9?
16:58.09Mr_Varmiti mean...i can remove it...and it would still let me dial out?
16:58.19Mr_Varmitlol..duh...try it
16:58.19Mr_Varmitlol
16:59.12fakhirthe GUI will not let you do that but yes you can if you edit the conf manually
17:02.05Mr_Varmitcustom (_9XXXXXXXXXXX)
17:02.08Mr_Varmitwould that work?
17:02.58Mr_Varmitim used to trixbox....i do apologize for the ignorance....
17:03.31Mr_Varmiti wanted asterisknow and im learning....
17:03.41fakhir_91XXXXXXXXXX
17:05.04Mr_Varmitahhhh....so it puts the 1 in there for you
17:05.43fakhirno so it looks for a 91 then 10 digits
17:06.26Mr_Varmitok..got ya
17:06.39*** join/#asterisk masus (n=tet@88.248.14.186)
17:06.50masus"Got SIP response 481 "Call/Transaction Does Not Exist" back from x.x.x.x" is this an error
17:07.14masusthanks
17:07.21Mr_Varmitso dont dial a 1 when dialing correct fakhir?
17:08.47fakhirfor that call rule you would dial 91 then area code then rest fo the number
17:09.22Mr_Varmitok...i see...dialing rules can be a powerful tool to limit which phone can dial where
17:09.26Mr_Varmitthats cool
17:10.16*** join/#asterisk gremzoid (n=gremzoid@d58-111-173-16.rdl5.qld.optusnet.com.au)
17:14.20*** part/#asterisk masus (n=tet@88.248.14.186)
17:14.49*** join/#asterisk CunningPike (n=CunningP@S010600095b33697f.vc.shawcable.net)
17:15.58Mr_Varmitis it nessesary to click activate changes when changing the dialing plan?
17:16.57fakhiryes i think so
17:18.06Mr_Varmiti got if number begins with 9, followed by 11 digits, then in the custom i have _91XXXXXXXXXX
17:18.13Mr_Varmitwould that work...
17:18.22Mr_Varmitive tried calling and i get a instant busy again
17:18.50Mr_Varmitstrip 0
17:20.01fakhiryou got to strip the 9
17:21.21Mr_Varmitmercy...its a stickler isnt it
17:24.19Mr_Varmitit wont let me get past 7 numbers
17:25.16Mr_Varmiti think i might have it
17:26.14Mr_Varmiti feel like a novice
17:26.15Mr_Varmitlol
17:27.26Mr_Varmitive programed a full interface for the polycom phones, with buddy lists sip.cfg files logo files...full web interface that creates the tftp files, but i cant figure out a simple dialing plan
17:28.39Mr_Varmitwrote it in php, make a few clicks and it creates the individual sip.cfg <mac>-directory files etc....
17:29.11gremzoidMr_Varmit, typical...
17:29.24Mr_Varmitlol
17:29.27Mr_Varmiti know...
17:29.45*** join/#asterisk sysreq (n=sysreq@unaffiliated/sysreq)
17:29.49gremzoidi've been doing something similar... almost bald now :P
17:30.09Mr_Varmitlolol
17:30.16Mr_Varmitim already done with mine....
17:30.19wothinnI order the club sandwich all the time.  I don't know how.  I'm not even a member.
17:30.25Mr_Varmitive done one for the grandstream gxp-2000
17:30.57Mr_Varmiteveryone on trixbox is begging for me to release it
17:31.36Mr_Varmitsomeone at fontality wanted to buy it from me....
17:31.42MrNachowas the "##" transfer option removed in asterisk 1.4?
17:32.30Mr_VarmitBegins with 9 and followed by 11 digits
17:33.16gremzoid_9XXXXXXXXXXX,1,Macro(bleh,s,1) ?
17:33.33Mr_Varmithmmmm...it keeps taking my 1 out
17:33.41Mr_Varmit_91XXXXXXXXXX
17:34.06|[_Caf_]|another question, i've call queues and agents configured on my asterisk box, what software that i could run on linux would give good reports on the call statistic, like how many out going calls made by an agent, how many answered call by a agent, how much time the average call lasted etc...
17:35.30gremzoidMr_Varmit, or be crude and go _9.,1,CMD...?
17:36.26ectospasmMrNacho:  you can set the "##" transfer feature in features.conf
17:37.33Mr_Varmit_9.,1,XXXXXXXXXXX
17:37.45Mr_Varmitthat gremzoid
17:38.36MrNachothanks ectospasm
17:38.38Mr_Varmitwhats strange is it wont let me dial anything past 7 numbers
17:38.39gremzoidwon't have the desired effect if there are 9XX or less than 12 digits extensions tho
17:39.57Mr_Varmitlol
17:40.20ectospasmMr_Varmit:  if you're dialing an outside line in North America, you probably want something like _91NXXNXXXXXX
17:40.46ectospasmMr_Varmit:  or is your 7 digit getting matched before the 11 digit?
17:41.14Mr_Varmit7 numbers is BEFORE the 11
17:41.25Mr_Varmiti see that now that you said that
17:41.38Mr_Varmitthe 11 one has to be 1st correct?
17:43.13ectospasmI can't remember exactly, but I think it will match the first one listed, if it could match more than one...
17:43.57ectospasmremember, X will match 1-9, so if you have 9XXXXXXX, that will match before 91XXXXXXXXXX
17:44.08ectospasmhence the N's, which match 2-9
17:44.12Mr_Varmitahhhhhhhhhhhh
17:44.13*** join/#asterisk sacitec (n=tobi@189.149.49.243)
17:44.21sacitechi, morning
17:45.04ectospasmMr_Varmit:  I must qualify
17:45.23ectospasmX matches 0-9, Z matches 1-9, and N matches 2-9
17:46.02sacitecjust a doubt, a have an * server running on 32 bits core 2 duo processor, i bought a G.729 license on digium. My question is, what is the correct file for useing G729 with core 2 duo proc ?
17:46.10ectospasmTypical North American numbers are +1 NXX NXX XXXX
17:46.40Mr_Varmitdang
17:47.07J4k3sacitec: i686, if you look around on the 'net you'll find more optimized g729 codecs around
17:47.17Mr_Varmithow in the heck did i miss that... ectospasm, lolol..its right there....it has the same syntax you just gave me....smarter dummy teaching a bigger dummy
17:47.19Mr_Varmitlolol
17:47.50J4k3I was suprised the 'default' * g729 refused to work at all on my laughably-crappy * box (P3-700, 192mb ram)...  found a 3rd party build - worked great.
17:47.51Mr_Varmitsheesh....need some redbull
17:48.19sacitecthanks =)
17:48.27Mr_Varmiti got my hands on two nice Dell blades
17:48.39J4k3put them on ebay and get some real gear ;)
17:48.46Mr_Varmitthey where given to me by the police station
17:49.05blitzrageMr_Varmit: redbull is for pansies... get some redline!
17:49.13Mr_Varmitlololol
17:49.25blitzrageI just imported it from the USA... it's crazy
17:49.26Mr_Varmitblitzrage ill start a IV bag
17:49.28J4k3get some adrenochrome
17:49.34Mr_Varmitsheesh
17:49.34blitzrageI was up till 6am writing dialplans
17:49.35Mr_Varmitgood?
17:49.36J4k3quit being a bunch of wussies, LETS GO STRAIGHT FOR THE RUSH!
17:49.44Mr_Varmitlolol
17:49.54blitzrageand then I got up at 10:30am without an alarm clock
17:49.58Mr_Varmityou must be a master on thedial plans
17:50.01J4k3shopping for cellular service makes baby jesus cry
17:50.07blitzrageMr_Varmit: I know a couple things :)
17:50.13J4k3especially when AT&T/Cingular can't manage to get any signal at my house... fuck :(
17:50.26Mr_VarmitJ4k3 they have repeaters
17:50.28Mr_Varmitlolol
17:50.32gremzoid"this wouldn't happen in australia!!!"
17:50.32blitzrageJ4k3: everytime you use a peice of sangoma hardware, god kills a kitten :D
17:50.53blitzrage(I'm joking around, I don't even use hardware, so I'm not *really* trying to start a flamewar :))
17:51.09ectospasmI should tell that to the guy I know of who got a piece of Sangoma hardware...
17:51.29Mr_Varmiti got a TMD800B coming
17:51.30blitzragesignal works great in Canada on the GSM network... but you only have a choice between Rogers and Rogers
17:51.44MrNachomeh, I hate kittens anyway
17:51.46blitzrageMr_Varmit: nice! let me know how that works. I think it has the new Octastic chip instead of the Tigerjet
17:51.56blitzrageI love pussies!
17:52.08gremzoidtasty
17:52.15Mr_Varmiti have no idea....all i know is im writing a few programs for this guy...he sends me anything i want
17:52.17MrNachoblitzrage, btw, I loved your talk at astricon
17:52.25blitzrageMrNacho: really? thanks!
17:52.31blitzrageI'm glad you could make it!
17:52.43blitzragethe slides should be up on teh astricon.net site already, or early next week
17:52.48MrNachome too, yours was one of the toppers
17:52.50blitzragethe 101, or the Why Cluster? talk?
17:52.51J4k3Mr_Varmit: I have a tower in my side yard...  AT&T could put a repeater on it, I'd rent them space.
17:52.52*** join/#asterisk bjweeks (n=bjweeks@unaffiliated/bjweeks)
17:53.01J4k3except it'd have to be built to my specifications, not theirs :P
17:53.02Mr_Varmitjesus h christ.....dont EVER eat the candy DOTS...the shit sticks in your teeth
17:53.09MrNachocool, I'm looking forward to getting the detail from the slides
17:53.12blitzrageMrNacho: wow... that's awesome! I wrote most of it in the van while driving across the country :)
17:53.13MrNachothe cluster one
17:53.30J4k3(the US cellular industry is too stupid to make their own decitions... they should really give up on things like 'tower placement', their engineers suck)
17:53.34blitzrageMr_Varmit: I found that out too when in the US of A
17:53.42blitzrageMrNacho: awesome, I'm glad it was somewhat informative
17:53.51blitzrageI got a new laptop, so I can actually build those clusters I was speaking about :)
17:53.51*** join/#asterisk lirakis (n=lirakis@cpe-68-175-38-65.nyc.res.rr.com)
17:54.05Mr_VarmitJ4k3 get a bucket and put it over your head....and you will get about .2 more watts and you can reach that tower
17:54.11blitzrageI'm running 5 CentOS 5 VMs on this MacBook Pro with very little slow down
17:54.19MrNachoimpressive
17:54.31MrNachoxen? vmware?
17:54.46Mr_Varmitwho here has a iphone?
17:54.58ectospasmI couldn't afford one
17:54.58J4k3Mr_Varmit: no, but I could put a stainless steel bowl on the opposite side of my head as the tower and get signal assuming I found the focal point.
17:55.12Mr_Varmitlolol J4k3 oh hell
17:55.16Mr_Varmitthats funny
17:55.16J4k3... or I could go grab one of the wideband 900 yagis out of the living room
17:55.22Mr_VarmitYEA!
17:55.27Mr_Varmitlove the yagis
17:55.40J4k3"can I get a phone with an SMA connector on the back?"
17:55.55Mr_Varmitwe used a old primestar dish and pointed it and got free net
17:56.00*** join/#asterisk drako (n=ljd@nelug/coreteam/luisjose)
17:56.03J4k3I miss phones that weighed more than the average 40-something female's purse, and had a real TNC connector.
17:56.08gremzoidJ4k3, i've actully used a steel bowl as a parabolic dish to get a signal while hiking once
17:56.22J4k3gremzoid: it works, no doubt
17:56.59*** join/#asterisk DrAk0 (n=ljd@nelug/coreteam/luisjose)
17:57.16blitzrageMrNacho: VMware Fusion
17:57.17J4k3oh well, I'ma go take this phone back to the store and be like "ewps, nevermind" :|
17:58.13MrNachoblitzrage, does it actually  do the video acceration that it claims to do?
17:58.29J4k3VMWare Random Downtime Edition
17:58.42*** join/#asterisk ivrc (n=chatzill@adsl-074-228-054-164.sip.bct.bellsouth.net)
17:59.09blitzrageMrNacho: not sure... haven't done anything with GUI in it -- just text (CentOS 5 minimal install running Asterisk)
17:59.11J4k3VMWare - finding new ways to make your pager go off at 4am.
17:59.21blitzrage(and OpenSER, and PostgreSQL, and Apache)
17:59.35MrNachoyeah, I've been burned by vmware a few too many times to trust it for anything production
17:59.36blitzrageI just use it for creating clusters on my laptop for testing
17:59.46MrNachotesting's fine
17:59.55blitzrageVMware Server works awesome for my WinXP that runs Quickbooks
18:01.11MrNachothe last time I used it, it was semistable, but a resource hog
18:01.35blitzragegotcha
18:01.46blitzrageI like VMware a lot, and my buddy uses it a ton at work for his developers
18:01.58blitzragebut I must admit to not using it heavily in production -- I have no use for it
18:02.03tzafrir_homeanybody gotten Zaptel to work well under Xen or VMWare? (or kvm, or whatever)
18:02.07blitzragecan't really run Asterisk in it (you can... but.... ya :))
18:02.19blitzragetzafrir_home: ztdummy works in VMware for me here.... :)
18:03.39MrNachotzafrir_home, you can make it work in xen, until you try to do something that actually requires timing (meetme)
18:04.00MrNachoat that point, you kind of need a card
18:04.16MrNachoI hear that vmware makes a decent virtual rtc
18:07.02*** join/#asterisk tripps (n=ss@66.60.235.100)
18:07.14J4k3the lowest product they sell that isn't a total joke is ESX, and its licensing is STIFF.
18:07.25J4k3you better have some ungodly $15k+ servers to load it on to make it worthwhile.
18:07.26*** join/#asterisk PepOSX (n=pepOSX@190.72.149.53)
18:07.30J4k3and $50k+ sans
18:07.31J4k3etc.
18:07.56J4k3vmware workstation/server/etc has absolutely no 'server' value at all unless you're into babysitting.
18:08.25gremzoidyey! i finally got my dynamic extens to work...
18:08.32gremzoidand they said i shouldn't do it :P
18:08.37gremzoidhttp://shells.homeunix.net/~chps/unicommAsterisk/conf/extensions.conf
18:08.51*** join/#asterisk aktaha (n=aktaha@aktaha.plus.com)
18:09.12Strom_Mgremzoid: _. is a very bad idea for use as a pattern match
18:09.22Strom_Mbecause it will match your special extensions too...
18:09.27blitzragegremzoid: nice! you're a dialplan guru too :)
18:09.39blitzrageStrom_M: but it's the only way to match something that doesn't start with a number
18:09.45gremzoidStrom_M, nar it's only proof of concept atm... very incomplete.
18:09.48Strom_Mblitzrage: true
18:09.55blitzrageand as long as you're not trying to match any special extensions in that context, you should be ok
18:10.04blitzragebut I agree with your assessment either way :)
18:10.18Strom_Mblitzrage: however, right below _. are the special extensions in that context
18:10.22blitzragejust like my app_voicemail in dialplan logic is in the proof of concept stage too :)
18:10.30blitzrageStrom_M: aha... I didn't look carefully enough
18:10.32blitzrageright you are
18:10.41blitzrageunexpected things are going to happen in the context :)
18:11.06gremzoidheh joy!
18:11.57gremzoidblitzrage, would it be better to shove it in a macro or something?
18:12.01blitzrageif you can, make whatever is going to use that context append a 0 or something to the beginning so you can use _X.
18:12.17blitzragethen just ${EXTEN:0}
18:12.21blitzrageerr
18:12.24blitzrage${EXTEN:1}
18:12.25blitzrageheh
18:12.41gremzoidah ok...
18:12.43blitzrage${EXTEN:offset:length}
18:12.47blitzragefyi
18:13.05blitzragethat's a handy trick for splitting variable values
18:13.29gremzoidwhats the second one do? exten=12345 ${EXTEN:1:3} would = 234 ?
18:13.37blitzrageyou got it
18:13.53blitzrageyou can also use a negative length to go backwards
18:13.58gremzoidi can do this in normal vars to get rid of the cuts?
18:14.18blitzrage${EXTEN:4:-2} should give 23 I think
18:14.24blitzrageyes, you can do that in normal vars
18:14.28blitzrageall vars accept that format
18:14.42blitzrageor ${EXTEN:-3} would give 345
18:14.43gremzoidcool, cuts a bitch at times
18:14.48*** join/#asterisk zotz (n=zotz@24.244.163.157)
18:14.52blitzrageit's only useful when you have a delimiter
18:15.13blitzragebut it's SUPER handy when you have a delimiter :)
18:15.36gremzoideasier to write if you know what the data is tho
18:15.37Strom_Mgremzoid: i'd also recommend that you use "n" and priority labels rather than numbering them 1 2 3 4 5
18:15.39*** join/#asterisk Blackthorn (n=support@76-77-161-226.smyth.net)
18:15.40*** join/#asterisk tomcontr3 (n=tomcontr@206-76-246-201.adsl.terra.cl)
18:15.49MrNachoanyone pro agentcallbacklogin()?
18:15.59gremzoidStrom_M, i wasn't sure if that worked or was just something i read in manuals
18:16.05blitzragenever had that need... but I think I'd write it in dialplan
18:16.05BlackthornHi, i'm looking for a softphone software.. had one recommended in here but forgot it's name.
18:16.08tomcontr3hi,  Im looking for someone that could develop a little system for asterisk using PHP AGI
18:16.14blitzrageBlackthorn: X-Lite
18:16.23Blackthornyup thats it. tahnks blitz
18:16.39blitzrageBlackthorn: np -- nice softphone especially now that they've upgraded it
18:16.55MrNachoI'm having a discussion with a co-worker, and I'm against it, as it seems to be on the way out.
18:17.01blitzragegremzoid: heh, you are wise beyond your years :)
18:17.14Strom_MMrNacho: yes, it's deprecated
18:17.17tomcontr3Im willing to pay
18:17.24Strom_Msays so right there in UPGRADE.txt
18:17.39gremzoidblitzrage, so much of it is either out of date or obsolete...
18:17.47blitzrageMrNacho: ya... you're supposed to be creating the dialplan logic for it... maybe one of these days I'll get around to creating a decent sample dialplan to include in the docs (it's lacking)
18:17.57gremzoid... or written by twits who can speak semi-engrish
18:18.00blitzragegremzoid: indeed -- we just updated the starfish book for 1.4 at least
18:18.02gremzoidcan/can't
18:18.17blitzrages/can//
18:18.38blitzragechinglish, swinglish, etc...
18:18.40gremzoidyea i downloaded that this morning... it's the only half decent doc around... but it dosn't help much on the advanced configuration things
18:18.51blitzragegremzoid: unfortunately that is true
18:19.14blitzragewriting documentation is VERY time consuming and not very monetarily rewarding... so the people who have the skills aren't enticed to do it full time or anything
18:19.17gremzoidluckly i have good hair genes and the bald patches should grow out
18:19.28blitzragehehehe
18:19.39gremzoidblitzrage, i'll put a few notes on voip-info.org when i get a spare few hours
18:19.52blitzragewe all say that :)
18:20.12gremzoidwill save someone else a lot of frustration should they follow me down the evil path of asterisk+mysql
18:20.14blitzrageI'm thinking of trying to transition to making more of my daily hours spent on writing documentation and articles
18:20.21blitzrageewwww
18:20.26blitzrageI prefer pgsql personally
18:20.32gremzoidlike i said... evil path
18:20.41blitzragebut ya, it certainly has it's own learning curve :)
18:20.57gremzoidi don't have pgsql installed... project i'm intergrating asterisk into uses mysql...
18:21.12blitzrageuse ODBC to save some troubles...
18:21.28gremzoidblitzrage, i wrote a funky php ui for it if you're interested...
18:21.41gremzoidhttp://shells.homeunix.net/~chps/unicommAsterisk/
18:21.46gremzoidit's in phpUI
18:22.09blitzrageoh nice
18:22.11gremzoiddoes sip/iax/h323 peers/users and some of the dialplan
18:22.21blitzragehawt... gives you a basic working system eh?
18:22.31blitzrageI built one of those once, but not that fancy :)
18:22.42gremzoidthe main sh script does yeah... made life easy when i was testing/developing
18:22.50blitzragetotally
18:22.55blitzragesaves a lot of keystrokes
18:23.05gremzoidit's in parts... so you can compile without downloading... configure without compiling etc
18:23.26gremzoidvery beta but it's starting to take shape
18:23.34*** join/#asterisk Daejeo1 (n=chatzill@211.177.189.128)
18:24.06blitzrageeverything takes time, that's for sure
18:24.22Daejeo1anyone knows about FXS port Impedance for south korea?
18:27.12gremzoidgod damn it... i should have drank so much coffee
18:27.14Yourname``Hi. Can a GotoIfTime be used with a Queue() instead of having a Dial()?
18:27.18gremzoid... it's 4:30am!
18:29.26J4k3gremzoid: now its time to start on the downers!
18:30.32tripps[TK]D-Fender: trying to config this T1 card/mediant 1000 to work with * and not sure what i'm doing wrong. i have mediant registered in * and have set up a context for my cisco sip phone extension to use the mediant when dialing but i get a fast busy and mediant log messages complaining about not finding endpoint for the phone number I'm dialing
18:30.43gremzoidJ4k3, i'm onto my third beer :P
18:32.20J4k3gremzoid: good plan
18:32.28J4k3its saturday @ 1:30PM here
18:32.31J4k3beer sounds prime.
18:32.52Daejeo1any help?
18:32.57tripps[TK]D-Fender: with the copious amounts of sip debug messages on asterisk -cvr and the mediant i'm not sure if it's something entirely more in terms of config, etc. it constantly talks about "scheduling destruction of call '<a really long string>@<mediant ip address>' in the sip debug
18:32.59gremzoidyea, i went and got some nice ones made by a local microbrewery earlier...
18:33.27blitzragegremzoid: I did the same thing last night... when you came on, it was like 4am for me
18:33.37trippsif anyone here has configured a mediant to work with * i would welcome the help
18:34.21gremzoidheh
18:37.02*** join/#asterisk tengulre (n=tengulre@222.90.140.142)
18:37.04tengulrehi,all
18:37.35tengulreI known a VoIP provider, but I forgot the fullname, singouma, sougouma?
18:37.44tengulreanybody know the fullname?
18:37.55Yourname``Sangoma?
18:38.04Yourname``That's a hardware provider, I think.
18:38.05tengulreOh, Yes!
18:39.28*** join/#asterisk Krooks (n=Blahme@60.54.95.216)
18:40.48KrooksIf I just wanna talk to someone across the globe, is there any advantage to using asterisk compared to just using asterisk ? I'm just a user wanting to talk to another person.
18:41.25blitzrageKrooks: asterisk might be a bit more than what you need then
18:41.34blitzrageuse something like X-Lite and FWD
18:41.47blitzragethen you have a "number" to call the other person at, and nothing inbetween
18:41.55blitzragejust phone <--proxy--> phone basically
18:42.29gremzoidyers asterisk is for tinkering nerds that like to say up until 4:41 in the morning...
18:42.38KrooksFWD is something like skype too, right ?
18:43.01Krooksso no need to run asterisk on my computer.
18:43.12gremzoidyea
18:44.16gremzoidactually how does skype work? can i use it as a voip provider via sip/iax/h323/bleh?
18:44.36*** part/#asterisk MrNacho (n=boster@c-67-175-108-46.hsd1.il.comcast.net)
18:45.08gremzoidsweet yes you can...
18:45.22trippsi think my mediant perhaps isn't registering properly - anyone care to take a look at an excerpt from my full log?
18:45.26tripps~pastebin
18:45.27jboti guess pastebin is a place to paste your stuff without flooding the channel - try  http://pastebin.ca, or http://channels.debian.net/paste, or http://rafb.net/paste/, or http://pastebin.com is usually painfully too slow and unresponsive to use, use one of the other pastebin sites, or dpaste.com is a very nice pastebin as well
18:47.42Yourname``THUNDER!
18:48.03blitzrageYourname``: I was trying to take pics!
18:48.08blitzrageof the lightnight
18:48.09Yourname``HAHA, me too.
18:48.12blitzragelightning
18:48.12Yourname``And I failed :(
18:48.14blitzrageme too
18:48.20blitzragetoo much flash lightning
18:48.24Yourname``My little Canon SD650 couldn't bear it.
18:48.26blitzragenot enough touching the ground
18:48.34Yourname``Yeah, I think it touched down somewhere.
18:48.35blitzragethe fog is nearly right on me
18:48.38blitzrageI saw it twice
18:48.45blitzragemost of it is staying in the clouds though
18:48.49Yourname``I saw it like 3 times already..
18:48.50blitzrageoh... there is it!
18:48.55blitzragethere it is*
18:49.00Yourname``Oh yeah? Over here, I KNEW it was touching the ground.
18:49.05blitzragerain is right on me now... that was cool to see the clouds move in to me
18:49.05Yourname``A streak right down to the bottom!
18:49.16blitzragewhere are you again?
18:49.24blitzrageI was probably watching it hit your area :)
18:49.41Yourname``Same here, I can't see the TD towers anymore. They were visible like 5 mins ago.
18:49.42blitzrageYourname``: did you come to the TAUG meeting a couple nights ago?
18:49.44Yourname``Yeah, hahaha
18:49.50blitzrageI can't see Fort York anymore
18:50.02blitzrageand it's across the street
18:50.09*** part/#asterisk aktaha (n=aktaha@aktaha.plus.com)
18:50.10Yourname``Shit, nope. I haven't kept track of TAUG at all. Don't want to be embarassed, lol
18:50.22blitzrageheh... just checking to see if I had met you there
18:50.28Yourname``I can't wait for pulse24 to get updated!
18:50.34Yourname``WHOA, I had a power outage just now, lol
18:50.34blitzrageeh?
18:50.42blitzragewoh -- hope I don't get one
18:50.48blitzragehaven't had one yet in over a year
18:50.51blitzragethat was a good one!
18:51.01Yourname``It was for a second though, lol
18:51.05trippsi'm getting incessant numbers of messages like "device SIP/mediant changed to state 1 but we don't care because blah . . . along with found call id and no match their call id . . .
18:51.08Yourname``I heard UPSes beep all around the house, haha
18:51.23Yourname``Were you hear during "The Blackout"?
18:51.25Yourname``here*
18:51.29blitzragetripps: sounds like you have debug on
18:51.30blitzragewoh!
18:51.37blitzrageYourname``: I was in Waterloo
18:51.47blitzrageit lasted 2 hours there, and I slept through it on the couch, woke up, never went out again
18:51.51blitzrageit was the weirdest thing
18:52.04Yourname``Oh man, I was stuck on the 45th floor of Scotia Plaza. For close to 30 mins.
18:52.09blitzrageprobably RIM powering Waterloo off it's UPSs or some crazyness
18:52.14Yourname``But it was fun too, picked up loads of drinks, lol
18:52.19Yourname``haha
18:52.29blitzrageI was supposed to be studying for a DB exam, but then it got cancelled :)
18:52.42Yourname``I like when exams or classes get cancelled, heh
18:52.44trippsblitzrage: yes i do but only from that device. i'm wondering if it's indicative of something wrong with the config. sip show peers does show it however with status OK
18:52.54blitzragewow, there is so much rain pooring down that the gardiner is flooding a bit
18:53.06Yourname``OOOOOOOH
18:53.15Yourname``Did you see that? You could've got that one for sure, lol
18:53.40blitzragetripps: you have debug on the console enabled though -- you don't normally see those messages (they are normal) when you have debug on. Check logger.conf to make sure you don't have 'debug' on the console => line, and 'set debug 0' on the CLI
18:53.56blitzrageYourname``: it's too cloudy here now... and one basically hit my building :)
18:54.05Yourname``Crazy!
18:54.07blitzragetotally
18:54.25blitzrageit's neat having someone else on IRC experiencing the same thing as me :)
18:54.27Yourname``Funny how they were like "This weekend is going to have off the chart temperatures, record breaking in 40 years!"
18:54.30Yourname``Yeah, right.
18:54.38blitzrageit was super warm earlier
18:54.42blitzrageand this rain won't last long
18:54.48blitzrageseems too heavy to last
18:55.05Yourname``Hope so. Gotta walk to Eaton's to get a rice cooker for the in-laws.
18:55.06blitzragethe rain is good though, everything will be green a bit longer
18:55.18blitzragethe trees have barely changed colour across the road, and it's October
18:55.23blitzragethey are all still green
18:55.24blitzragein the park
18:55.27trippsblitzrage: ok - i did set sip debug for that device because i can't seem to get it to work. didn't know if these messages were indicative of something i should look at
18:55.45blitzragenope, its just information about what the code is doing
18:55.53Yourname``I was in Scarb the other day, everything is colorful there. Unfortunately, I don't even know where to look for trees in downtown, lol
18:56.02blitzrageFort York :)
18:56.19blitzragethis apt. is $$$ but is totally worth it
18:56.40Yourname``Yeah. Hey, do you get to see the RCMP guys in training and stuff from where you are?
18:56.54blitzrageoh ya -- they train with the horses in the part across the road
18:57.00blitzrageI see them do drills and stuff
18:57.06blitzrageI have a pic... let me find it
18:57.18Yourname``Nice. I was there for a friends party and got to check that out, pretty cool.
18:57.42Yourname``I didn't know if they still do it, cuz I think I came around there like 3 yrs ago.
18:57.49blitzragehttp://www.facebook.com/photo.php?pid=24788&l=73317&id=512680761
18:58.10blitzragethat pic actually turned out pretty good!
18:58.26blitzragehttp://www.facebook.com/photo.php?pid=24782&l=cb2f5&id=512680761
18:58.28blitzragestill a fav
18:58.29Yourname``Yeah! That's the same scene I got to see!!
18:58.48Yourname``Awww, man, wicked view!
18:58.59trippsi've got "found no match for SIP option norefersub (please file bug report!). what does that mean?
18:59.10blitzrageYourname``: this is why I pay rent here... :)
18:59.11Yourname``Did you get a similar one after they got the new LEDs on CN?
18:59.15blitzrageand why I can't bring myself to move
18:59.20blitzrageyep!
18:59.21blitzragehold
18:59.29Yourname``Sweet!
18:59.38blitzragehttp://www.facebook.com/photo.php?pid=109071&l=bf5df&id=512680761
18:59.53Yourname``That. Is. Amazing!
19:00.07Yourname``They had green ones the other day, I think.
19:00.18Yourname``Green and blue or red, can't remember.
19:00.20blitzrageyep, I was watching them
19:00.25blitzragethe green one was cool
19:00.35blitzrageit went up and down the side of the tower
19:00.44Yourname``I guess it seemed cool only cuz we saw some change from the red one. ;)
19:00.49Yourname``But cool, nevertheless.
19:00.50gremzoidcrappy arse broadband in AU... bandwidth quotas and capping... pffft what a stupid concept
19:00.53blitzragesince I moved in here last summer, all I thought was, "why the hell don't they light that thing up at night"
19:00.56blitzragethey must have heard me
19:01.00Yourname``LOL
19:01.15Yourname``For some weird reason, I always thought it had lights.
19:01.18blitzrageYourname``: I look at it every single night -- it's still awesome
19:01.20blitzrageI never get bored of it
19:01.29blitzrageit has flashing plane lights....
19:01.32blitzragethat's about it
19:01.37Yourname``Yeah man, that view is so worth it.
19:01.41gremzoidblitzrage, wtf is that crazy tall tower?
19:01.42blitzragehttp://www.facebook.com/photo.php?pid=24776&l=5cac5&id=512680761
19:01.49blitzragegremzoid: it's the CN Tower in Toronto, ON, Canada
19:01.53*** join/#asterisk gazza1019 (n=gazza101@ip24-255-141-170.ks.ks.cox.net)
19:01.58Yourname``gremzoid: That tower keeps the 'zoids and aliens off our city.
19:02.02blitzrageuntil about a month ago, the worlds largest free standing structure
19:02.02gremzoidcool...
19:02.10Yourname``HAHA, look how plain it looks now.
19:02.11blitzrageit has a frickin' laser beam on it's head
19:02.17Yourname``Yeah, I hate dumbai. :(
19:02.20gremzoidyea i was reading about that building in dubai
19:02.26Yourname``But when I'm there, I love it.
19:02.32blitzragemeh... you'd have to go to Dubai... and what the hell is there to do there? :)
19:02.35gremzoidnow _thats_ and impressive feat of engineering
19:02.46blitzrageya, the CN Tower is something of a marvel
19:02.54blitzragewhat the hell would Toronto be without it?
19:02.54Yourname``Funny enough, there's LOTs to do there in Dubai.
19:02.59blitzrage(boring)
19:03.02Yourname``A boring city with buildings.
19:03.03gremzoidhmmm i wonder how high the tower in melbourne is?
19:03.05Yourname``What else.
19:03.17Yourname``gremzoid: Pretty sure not taller than CN.
19:03.23J4k3yeah, and you can buy a home practically anywhere in north america for the price of a coca-cola in dubai.
19:03.23Yourname``:P
19:03.35gremzoidit has a similar tower that dominates the city skyline... not that our buildings are that high anyway
19:03.35blitzrageYourname``: I know... I was just being facetious :)
19:03.47Yourname``haha
19:04.05blitzrageas long as a city has a skyline that is interesting, I pretty much like it
19:04.26Yourname``No, but you're right though. Who wouldda thought that a place like Dubai would have so much. I've been in and out of that place for close to 15 years, and I've seen it go from a fully clothed burkha regime for the muslim women to mini skirts.
19:04.46gremzoidamazing pace of development
19:04.50CCFL_Man2hmm..
19:04.52Yourname``brb
19:04.54blitzragecan't argue that
19:05.00gremzoid... makes you wonder how long it'll last tho... until the oil runs out?
19:05.17Daejeo1anyone knows Spanish?
19:05.23blitzrageit's sunny enough there they will transition to solar based systems
19:05.40blitzrageif we don't, and the oil runs out... no where will be any better :)
19:05.43CCFL_Man2my green imperial 202 looks so cool with a new subset and handset cord
19:06.49gremzoidworking for a telecommunications company, the only decent phones are ericsson and siemens... they have the nicest buttons
19:07.11gremzoideverything else just feels cheap and inferiour to them....
19:07.40CCFL_Man2gremzoid: i collect western electric phones
19:07.43J4k3one of the worst pbx phones I've ever touched was a siemens
19:07.48gremzoidnow the suns come up, i've finished my beer, i think i should hit the hay...
19:07.51gremzoidnight
19:08.48trippscould this be indicative of the trouble i'm having: "channel.c: no path to translate from SIP/mediant-0905f0b0(256) to SIP/5711-b7a3f408(4)
19:09.02CCFL_Man2J4k3: what about SRX?
19:09.28J4k3CCFL_Man2: ubiquiti srx?
19:09.53CCFL_Man2srx is the brand of pbx and phones
19:10.06blitzragegremzoid: night
19:10.17trippsthen "everyone is busy/congested at this time"
19:11.12J4k3CCFL_Man2: ahh... I was 13 or 14 when this system was installed (jr high school)
19:11.16J4k3I'm 29 now
19:11.19J4k3so its been a while.
19:11.28CCFL_Man2ahh
19:11.31trippsi can't believe making a phone call out the mediant PRI can be that difficult. there must be something simple that i'm missing
19:11.34CCFL_Man2yeah, it's old
19:12.04CCFL_Man2it's shit
19:12.54*** join/#asterisk FireMac (n=firemac@CPE000d88ae88b9-CM0011ae8bb0ee.cpe.net.cable.rogers.com)
19:13.05blitzrageYourname``: and now it's almost sunny out :)
19:13.06J4k3bbl
19:13.54CCFL_Man2radio shack. you've got questions, we've got cell phones
19:14.41Strom_Mradio shack - you've got questions, we've got DAAAAAUUHHHHHHHHHHHHAHHHAHHHHHHHHBLBBLBLBLBBLBLLBBL
19:15.03CCFL_Man2heh
19:15.16CCFL_Man2radio shack is failing
19:15.33CCFL_Man2they use republican selling techniques
19:15.47CCFL_Man2which don't work on smart people
19:17.21CCFL_Man2Strom_M: my authentic-looking moss green cloth coiled handset cord for F1 handsets came today as well as my vinyl 6 wire green subset cord
19:17.56CCFL_Man2my green imperial WE202 looks great, a 684A subset and it'll be complete
19:19.31Strom_Mi know
19:19.41Strom_Mit's like you can't shut up about it :)
19:20.16CCFL_Man2sorry :P
19:20.50CCFL_Man2it's exciting for me to own a piece of bell history
19:21.56CCFL_Man2and as rare as it is
19:23.36ivrcHello! Have a problem with a TDM400 - port 1 works fine, but nothing on the other ports. Suggestions?
19:27.20*** join/#asterisk duki (n=duki@host-85-27-58-159.brutele.be)
19:29.40*** join/#asterisk drako (n=ljd@nelug/coreteam/luisjose)
19:34.57tzafrir_homeivrc, yeah: give more details. What modules exactly? How can you tell that one module works well and that one module doesn't work well?
19:35.58ivrctzafrir_home: ztcfg -vv shows 4 channels     ----     zap show channels only shows 1
19:37.40tzafrir_homeivrc, ztcfg really means nothing there
19:38.00tzafrir_homethis means that you have only one channel defined in zapata.conf
19:38.24ivrctzafrir_home: can you help out a noob? :) How would I get the other ports to work?
19:39.10_ShrikEivrc: pastebin your zapata.conf
19:39.33ivrc_ShrikE: 2 minutes
19:39.49tzafrir_homeivrc, zapconf
19:41.57ivrcI _think_ I see the problem (don't know how to solve, but I think I see it) - zapata.conf [channels] section only has channel=1 nothing for the other channels
19:42.39ivrcand spanmap is commented out
19:43.14trippscan i insert context=sip in one of the sip_xxx.conf files that are included in sip.conf and not put it directly in the [general] section?
19:44.58ivrczapata.conf is posted at http://pastebin.com/d430f6e1a
19:46.26_ShrikEerrr.. trixbox
19:54.16*** join/#asterisk airjump (n=MZ@p508AE1ED.dip.t-dialin.net)
19:54.36*** join/#asterisk Lawbringer (n=Lawbring@212.183.134.67)
19:55.56Yourname``Very sunny now blitzrage lol
19:55.56*** join/#asterisk flenders_ (n=fserto@unaffiliated/flenders)
19:56.11tzafrir_homeivrc, you have there  channel=1
19:56.21tzafrir_homeThis only sets it to Zaptel channel 1.
19:56.30tzafrir_homeWhat channels to do you actually have?
19:57.18ivrcjust added channel=2 channel=3 and channel=4 - looks like some progress is being made - inbound calls are now ringing and being hung up on - need to check my inbound route
19:57.21Davieyhey.. zttest is giving me an average accuracy of ~90% (ztdummy) any ideas how i can improve it?
19:57.44DavieyBest: 95.503 -- Worst: 87.695 -- Average: 91.181519
19:58.34*** join/#asterisk MooingLemur (n=troy@unaffiliated/mooinglemur)
20:07.15ivrcinbound now seems to be working - how would I go about adding the trunks to outbound? Trunk g0 was created on install, tried add zap trunk in freepbx but they don't work
20:08.19*** join/#asterisk FireMac (n=firemac@CPE000d88ae88b9-CM0011ae8bb0ee.cpe.net.cable.rogers.com)
20:08.38trippswhat does it mean exactly when debug messages show "sending to <IP>: 5060 (non-NAT) and then SIP/2.0 404 Not found?
20:08.52trippssepcifically the 404 message
20:09.28trippsthis is part of a CSeq REGISTER message
20:09.52[TK]D-Fendertripps, Register?!  "Who the ^%$# are you?  get lost"
20:10.06[TK]D-Fendertripps, bad user....
20:10.35blitzrageYourname``: indeed
20:10.39tripps[TK]D-Fender: ok bad u/p then . . . mmm nothing changed. that's being generated from * saying I don't know who you are?
20:11.30[TK]D-Fendertripps, depends who;s doing the asking.  Your description wasn't clear on that.
20:12.34trippsi think the mediant in this case - SIP read from <IP of mediant> REGISTER sip:<IP of *> etc was prior SIP message
20:13.50trippsok got it - put username back and voila . . . guess that would help ;)
20:16.51ivrc<PROTECTED>
20:18.33Yourname``blitzrage: It's good now so I think I can finally go shopping,..
20:18.39blitzrageheh
20:18.41blitzrageindeed
20:18.52[TK]D-Fenderivrc, you are in the WRONG place for that...
20:18.54[TK]D-Fender~freepbx
20:18.54jbotrumour has it, freepbx is unable to be supported here. It's a complex piece of dialplan and GUI, and can't be easily supported by people who aren't deeply involved. Try joining #freepbx and asking there
20:19.09ivrcnever mind - realized they are set as a trunk group
20:21.47blitzrageapparently the freepbx guys have the largest asterisk community in the world :)
20:21.58blitzrage(I saw it on their booth at AstriCon)
20:24.03bkruseanyone here have misdn (b410p) and asterisk working together? and know a little bri?
20:24.17bkruseI need your help with integrating it into the asterisk gui, I will include in the credits :D if that means anything.... lol
20:27.22*** join/#asterisk hijacked (n=argh@66.255.220.17)
20:27.58*** join/#asterisk hyphen (n=root@c-71-224-205-90.hsd1.pa.comcast.net)
20:43.15*** join/#asterisk HedgeMage (n=HedgeMag@ubuntu/member/hedgemage)
20:43.19HedgeMageI am attempting to filter calls which do not present caller ID, what do I specify to match no caller id?
20:46.12trippsman i could really use some help with this mediant T1 set up. i'm going nowhere fast and only have a couple of days before the port of DIDs is completed . . .
20:46.34trippsit should be really basic but i've tried everything
20:46.56martin[ug]HedgeMage: check PrivacyManager
20:49.05HedgeMagemartin[ug]: Thanks muchly :)
20:51.00martin[ug]np
20:55.13bkruseanyone here have experience with the b410p and mISDN?
21:04.20*** join/#asterisk _ShrikE (n=ShrikE@adsl-074-185-215-060.sip.msy.bellsouth.net)
21:05.34*** join/#asterisk kay2 (n=two@gob75-7-82-247-113-230.fbx.proxad.net)
21:10.00KrooksWill AIX ever ever be a standard ?
21:11.52*** part/#asterisk HedgeMage (n=HedgeMag@ubuntu/member/hedgemage)
21:12.07bkruseAIX=IAX?
21:12.48bkruseor did you really mean AIX
21:12.50KrooksIAX I mean
21:12.55Krooksyes
21:13.49bkruseKrooks: it is
21:14.27KrooksBut its not being used industry wide. Mostly SIP
21:15.30bkruseKrooks: true, sip is more widely adopted
21:15.37bkrusebut iax(2) has many advantages
21:15.43bkrusesips been around forever.
21:16.11KrooksDoes it look like iax2 is getting more and more acceptance and being used more widely ?
21:17.02bkruseKrooks: absolutely
21:17.34KrooksWhat is skype using ?
21:17.50bkruseproprietary protocol i believe
21:17.59Krooksok
21:18.18bkruseI believe there is a chan_skype, however
21:20.16*** join/#asterisk HedgeMage (n=HedgeMag@ubuntu/member/hedgemage)
21:20.26HedgeMage"does Playtones() function correctly on nonzap channels, and if not how does one simulate "three rising tones"?
21:30.16*** join/#asterisk frenzy (n=frenzy@unaffiliated/frenzy)
21:33.35*** join/#asterisk CrazyTux[m] (n=CrazyTux@adsl-68-92-214-219.dsl.hstntx.swbell.net)
21:34.21*** part/#asterisk Toerkeium (i=oo@201.216.206.221)
21:45.05*** join/#asterisk DarkRift (n=dark@206.167.240.40)
21:55.05*** join/#asterisk Strom_M (n=strom@208.127.172.112)
22:05.16*** join/#asterisk BrokenArrow (n=Lp@wikipedia/BrokenArrow)
22:21.42Yourname``Hi. Is there a way I can do a GotoIfTime in a context so it continues to the next priority without having to create a whole other context?
22:22.52*** join/#asterisk Defraz (n=t0tal@208-44-169-242.dia.static.qwest.net)
22:23.14*** join/#asterisk waKKu (n=worth@unaffiliated/wakku)
22:24.45Strom_MYourname``: the destination works just like goto
22:25.06Strom_M[[context,]extension,]priority
22:25.07QwellStrom_M:
22:25.13Strom_MQwell: hi
22:25.18Qwellwhen you coming out to check out the new building?
22:25.26Strom_Mno idea
22:28.24*** join/#asterisk Thematrix-vzla (n=The-Matr@190.38.154.174)
22:30.04Yourname``Let me try..
22:30.07Yourname``Thanks man.
22:31.04*** join/#asterisk |omni| (n=rob@c-67-185-56-106.hsd1.wa.comcast.net)
22:36.22Yourname``If I'm transfering a call by SIP, like 100@10.0.0.1 .. would that need a context like [incoming]? Or what context does it go under?
22:36.52*** part/#asterisk jengelh (n=jengelh@sovereign.computergmbh.de)
22:37.06Yourname``So, every call that comes in via DID, or via SIP, can go into extension s at [incoming], right?
22:45.42waKKu[TK]D-Fender: wth [TK] means ? :D
22:45.49*** join/#asterisk kavelot (i=x@201-68-26-13.dsl.telesp.net.br)
22:46.05kavelotis it possible to do something similar do GotoIfTime but with a Year parameter?
22:46.34*** join/#asterisk jetlagmk2 (i=jetlag@pool-70-17-60-139.pskn.east.verizon.net)
22:47.47*** join/#asterisk _Soul_ (n=sergio@suporte.3gnt.net)
22:48.16*** join/#asterisk DeltaT (n=ttucker@65.100.98.109)
22:49.38DeltaTDoes anybody have experince with the digium TDM808B and AsteriskNOW?
22:49.46*** join/#asterisk luisjose (n=ljd@nelug/coreteam/luisjose)
22:50.25DeltaTrather... am I in the right place?
22:51.40blitzrageright place, just slaw in here
22:51.42blitzrageslow*
22:51.45blitzragemmmm... slaw
22:52.06blitzrageYourname``: you define it with TRANSFER_CONTEXT I think
22:52.59Yourname``Ok, trying..
22:53.08DeltaTumm.
22:53.10DeltaTme?
22:54.21DeltaTnevermind, I got it
22:55.02DeltaT#asterisk-gui
22:55.28*** part/#asterisk DeltaT (n=ttucker@65.100.98.109)
22:56.20Yourname``Wait, blitzrage, you mean for my 2nd statement?
22:56.39blitzrageYourname``: ummm... not sure :)
22:57.29Yourname``blitzrage: Basically, I have two calls coming into the asterisk, one is via a DID, and the other is via SIP. I was wondering if having an s extension in [incoming] should be fine to handle both of these incoming calls.
23:04.07*** join/#asterisk Spida_ (n=timo@spinnennetz.org)
23:09.35*** join/#asterisk MrTexor (n=MrTexor@cpe-72-178-164-122.rgv.res.rr.com)
23:10.11MrTexorhullo everyone.. I'm looking for a cordless (but not 802.*) IP phone that plays well with asterisk ... anyone has a recommendation?
23:11.46_ShrikEon the same note... anyone tried the aastra sip dect phones?
23:14.04Yourname``Hmm, this is so weird. Unless I put the DID extension in [incoming] it doesn't work. I thought I could try putting the s extension so it could handle all inbound calls via SIP or DID.. but apparently not.
23:15.24*** join/#asterisk russellb_ (n=russell@asterisk/developer-and-stable-maintainer/drumkilla)
23:15.24*** mode/#asterisk [+o russellb_] by ChanServ
23:15.35_ShrikEYourname``: I have noticed the same.  Glad its not just me.
23:15.38Strom_MYourname``: that's not what s is for
23:16.03Strom_Ms is only if your incoming call has NO dialed number information associated with the call setup message
23:16.28Yourname``How is that possible though, Strom_M.. how would there be no dialed number information when a call comes in?
23:16.37Strom_MYourname``: analog lines ringing
23:16.40Strom_MPLAR circuits
23:16.48Strom_Metc
23:16.48Yourname``Ahhhh.
23:16.53Yourname``Gotcha.
23:17.09Yourname``What about SIP transfers coming in then?
23:17.35Strom_Mprobably contains the transferred-to number
23:17.50_ShrikE<PROTECTED>
23:18.09Strom_Mno
23:18.24Yourname``Exactly what I thought.
23:18.31Strom_Mand also no.
23:18.48Yourname``I thought I could put s instead of having to list all DIDs or extension in the [incoming
23:18.50_ShrikEs seems to work in IVR's when dialed number info is present.
23:19.03Strom_MYourname``: you can pattern match, you know
23:19.14Strom_M_ShrikE: oh?  give me an example
23:24.12Yourname``Ah.
23:24.54Yourname``Ok. So exten=> 12344,1,GotoIfTime(09:30-10:30|mon-sat|||?queue-test,100,1) and then exten=>12344,n,Goto(queue-test,200,1)
23:25.09Yourname``Doesn't seem to work.. it's sending the call to 200.. instead of 100 as it matches the time.
23:25.31Strom_Mis it between 9:30 and 10:30 AM right now?
23:26.01Yourname``Shit, it's supposed to be 24 hours?
23:26.02CCFL_Man2rudholm would be excited
23:26.08Strom_MYourname``: duh
23:26.08*** join/#asterisk davevg-btwtech (n=davevg-b@nj-67-76-177-147.sta.embarqhsd.net)
23:26.13Yourname``lol one sec
23:26.15Strom_Mhow do you think it tells AM from PM?
23:26.24Yourname``Yeah, duh me.
23:26.26Yourname``:(
23:26.43Strom_MYourname``: also, if you're already in the queue-test context, you can omit that from your goto
23:27.07Yourname``What do you mean?
23:27.15Strom_M[[context,]extension,]priority
23:27.44Yourname``ah
23:28.36Yourname``Now, in that line I just pasted, I'm slightly confused as to what would happen on sunday :S
23:28.50Strom_Mit would fall through to the second priority
23:28.59Yourname``Oh, yes!
23:29.19Strom_Myou're very polite, but i think you need to turn your brain up a little bit
23:29.56Yourname``haha yeah, just got back from a shopping spree and dinner is still an hour away.. need to get "into" it right now.
23:34.19Yourname``There are so many extensions coming into to queue-test, and I want all of them to go through GotoIfTime. I wish s worked! :(
23:34.41Strom_MPATTERN MATCHING
23:35.29Yourname``Could you give me an example, please? :$
23:35.31*** join/#asterisk Bhaal (i=bhaal@freenode/staff/bhaal)
23:36.04Strom_MYourname``: web search asterisk pattern matching
23:36.10Yourname``k
23:38.41Yourname``Ahhhhh, I don't know why this wasn't ringing a bell in my head! lol
23:41.16*** join/#asterisk mishkiz (i=mishkiz@bd219398.virtua.com.br)
23:42.14mishkizhello all...I have a problem here with Monitor. Asterisk itsnt joing the wav files. I have sox with soxmix installed...my asterisk version is 1.4.11
23:42.32Strom_Mmishkiz: use mixmonitor
23:43.33mishkizStrom_M, ok...I will search it in google....thanks..
23:44.48*** join/#asterisk anthm (n=anthm@CPE-72-131-113-50.wi.res.rr.com)
23:44.48*** mode/#asterisk [+o anthm] by ChanServ
23:47.42*** join/#asterisk drwelby (n=mpfister@mail.enplan.com)
23:51.22mishkizStrom_M, thanks....it works !!!
23:57.33*** join/#asterisk Ryushin (i=proxy@windwalker.openinnovations.com)

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