Displaying 20 results from an estimated 160 matches for "1000,1".
Did you mean:
100,1
2003 Aug 07
1
MWI bug ?
Hi Lee,
You need to specify the VM context that you are using..
so using your examples..
extensions.conf entry..
exten => 1000,1,Dial(SIP/1000,20)
exten => 1000,2,Voicemail2(u1000)
exten => 1000,102,Voicemail2(b1000)
exten => 1000,103,Hangup
should be..
exten => 1000,1,Dial(SIP/1000,20)
exten => 1000,2,Voicemail2(u1000@sip)
exten => 1000,102,Voicemail2(b1000@sip)
exten => 1000,103,Hangup
and..
exte...
2006 Aug 11
2
AgentcallbackLogin()
Can someone tell me why this is not valid...
[start]
exten => 1000,1,Answer
exten => 1000,2,Wait,1
exten => 1000,3,AgentcallbackLogin(1000||2000@Local)
exten => 2000,1,Macro(DialProxy,115551212)
exten => 3000,1,Queue(testq||||45)
while this is:
[start]
exten => 1000,1,Answer
exten => 1000,2,Wait,1
exten => 1000,3,AgentcallbackLogin(1000||200...
2005 Sep 12
4
CallerID Name in dialplan
Is it possible to show CallerID names for dialplan applications? When I call
from phone-to-phone, it shows the CallerID from sip.conf or iax.conf, but I
don't know of any way to show CallerID Name when I call the extension for an
application (voicemail for example):
exten => 1000,1,Answer
exten => 1000,n,VoicemailMain
I'd like the display to read "VOICE MAIL" when I dial extension 1000.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050912/e1eee4b9/attachment.ht...
2008 Feb 09
2
oneway audio with asterisk behind cisco pix 506
...> customer_ivr
include => incoming
[customer_ivr]
include => local-extensions
exten => s,1,Answer
exten => s,n,Background(agnosco_intro)
exten => s,n,WaitExten
;Dial said extensions
exten => 5,1,Dial(SIP/4028805362 at incoming,30)
[incoming]
exten => 4025901000,1,Goto(1000,1)
exten => 1000,1,Goto(customer_ivr,s,1)
Thanks
sunMoonstar.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20080208/e2c6cb72/attachment.htm
2011 Apr 11
1
Help on calculating a variable using random numbers
I'm new to R, but I'm trying to write a program for a dissertation that generates a dataset as follows...
subject=1:1000
treat=rbinom(1*1000,1,.13)
gender=rbinom(1*1000,1,.5)
eth=runif(1*1000, min=1, max=4)
cogat=rnorm(1*1000, 100, 16)
map=rnorm(1*1000, 200, 9)
simtest=data.frame (subject=subject, treat=treat, gender=gender, eth=round(eth,digits=0), cogat=round(cogat,digits=0),map=round(map,digits=0))
simtest
I ne...
2004 Apr 25
2
asterisk dials wrong numbers ?!?
Hi,
I've got an important question:
I use an E100P directly connected to PSTN, but it does not *really* work as it should
be:
exten => 1000,1,Dial(Zap/1/1234)
BUT: It does NOT dial "1234" but it says in debug mode:
-- Called 1/72976451
Apr 26 00:53:00 WARNING[10251]: chan_zap.c:5979 zt_pri_error: PRI: !! Facility
message shorter than 14 bytes
-- Channel 1, span 1 got hangup
Apr 26 00:53:00 WARNING[25617]: app_dial.c:34...
2005 Feb 28
1
Weird behaviour on incoming DIDs
...oto(internal_context,s,1)
; munged numbers, obviously
exten => i,1,Background(invalid)
exten => #,1,Background(goodbye)
exten => #,2,Wait(2)
exten => #,3,Hangup
exten => t,1,Background(goodbye)
exten => t,2,Wait(2)
exten => t,3,Hangup
exten => h,1,Hangup
exten => 1000,1,Background(goodbye);
exten => 1000,2,Wait(2);
exten => 1000,3,Hangup
#include <other_extensions.conf>
And, my other_extensions.conf has:
[internal_context]
exten => #,1,Goto(incoming_context,1000,1)
exten => *,1,VoiceMailMain()
exten => *,2,Background(demo-congrats)
ex...
2008 Jan 31
7
pulling my hair out over voicemail
...oming voip. Last week I got
everything setup, calls were working, etc.,.
I cam across a tutorial for voicemail, followed it, and it worked. When
I call my phone and dont answer, it goes to voicemail, and message is
stored on server.
I created an extension to retrieve the messages:
exten => 1000,1,Ringing
exten => 1000,2,Wait(2)
exten => 1000,3,VoicemailMain
And that worked. Granted, everything is still defaults, so when I dial
1000, I get the "Comedian Mail" greeting, then it prompts for mailbox
and password, then I get the menu.
Now, here is how it gets weird. Today I...
2005 Jan 27
1
Stumped by BroadVoice SIP
...exten => s,6,BackGround(demo-instruct) ; Play some instructions
exten => 2,1,BackGround(demo-moreinfo) ; Give some more information.
exten => 2,2,Goto(s,6)
exten => 3,1,SetLanguage(fr) ; Set language to french
exten => 3,2,Goto(s,5) ; Start with the congratulations
exten => 1000,1,Goto(default,s,1)
exten => 1234,1,Playback(transfer,skip) ; "Please hold while..."
; (but skip if channel is not up)
exten => 1234,2,Macro(stdexten,1234,${CONSOLE})
exten => 1235,1,Voicemail(u1234) ; Right to voicemail
exten => 1236,1,Dial(Console/dsp) ; Ring forev...
2009 Jun 19
1
Alternate ways of finding number of occurrence of an element in a vector.
Hi,
I have a vector "v" and would like to find the number of occurrence of
element "x" in the same.
Is there a way other than,
sum(as.integer(v==x)) or length(which(x==v))
to do the this.
I have a huge file to process and do this. Both the above described methods
are pretty slow while dealing with a large vector.
Please have your comments.
Praveen
2010 Aug 02
1
lm length
...about the levels of a variable parting on an ols
regression. The regression in done on the rate of return of the variable.
Imagine R_{t}=a+b*R_{t-1}
So If P, the "estimated" price would be P_{t}=P_{t-1}*R_{t}
Imagine that I obtain lm fitted values and the original
R_{t}, R_{t-1} are [1000,1] dimmension...
How it is posible to obtain also 1000,1 fitted values? They should be
999,1, no?
If I want to use the fitted values to multiply and obtain estimated
prices....P_{t}=P_{t-1}*R_{t} how should I proceed?
Many thanks in advance. I try it but I was surprised about the fitted values...
2005 Feb 08
1
Fastagi question
Hi All,
I have a question about Fastagi because I can't get
it to work for some reason. Everytime I execute the
fastagi command, i get an error:
my extensions.conf:
..
exten => 1000,1,agi(agi://some_ip_address)
..
output from asterisk console:
-- Executing AGI("Zap/1-1",
"agi://some_ip_address") in new stack
-- Launched AGI Script
/var/lib/asterisk/agi-bin/agi://some_ip_address
Failed to execute
'/var/lib/asterisk/agi-bin/agi://some_ip_address...
2006 Mar 03
2
Meetme Participant Announcement
I have the following in extensions.conf:
exten => 1000,1,Meetme(|dMic|)
According to the 'show application meetme' docs:
'i' - announce user join/leave (new in Asterisk 1.2)
Well, when users join the conference, Asterisk records their name, but does not broadcast it into the conference. I have Asterisk version 1.2.4. I know this has...
2011 May 01
1
Simulation Questions
...s and correlations, the distribution is very narrow and only represents a small portion of the possible scores. Can I force it to encompass a wider range of scores, while maintaining my desired parameters and correlations?
Please help...
Shane
Script follows...
#Number the subjects
subject=1:1000
#Assign a treatment condition from a binomial distribution with a probability of 0.13
treat=rbinom(1*1000,1,.13)
#Assign a lunch status condition froma binomial distribution with a probability of 0.35
lunch=rbinom(1*1000,1,.35)
#Generate age in months from a random normal distribution with mean of...
2004 Dec 18
1
Setting up asterisk for one user in private ip NAT.
...port=5060
bindaddr=0.0.0.0
srvlookup=yes
externip = <public ip of router>
localnet = 192.168.0.0/255.255.255.0 ; Internal NETWORK address
allow=ulaw
allow=alaw
allow=gsm
allow=all
nat=yes
register => xxxxxxxx:yyyyyyy@astrofix.rixtele.com/1000
[alex]
type=friend
host=dynamic
username=alex
secret=zzzzzzzz
context=outgoing
[rix]
type=peer
username=xxxxxxxxxx
fromuser=xxxxxxxxxx
secret=yyyyyyyy
host=astrofix.rixtele.com
fromdomain=astrofix.rixtele.com
context=sip-in
insecure=very
nat=yes
----------------------------
extensions.conf
--...
2008 Sep 09
2
naive variance in GEE
Hi,
The standard error from logistic regression is slightly different
from the naive SE from GEE under independence working correlation structure.
Shouldn't they be identical? Anyone has insight about this?
Thanks,
Qiong
a<-rbinom(1000,1)
b<-rbinom(1000,2,0.1)
c<-rbinom(1000,10,0.5)
summary(gee(a~b, id=c,family="binomial",corstr="independence"))$coef
summary(glm(a~b,family="binomial"))
2003 Oct 11
1
SIP / IAX over satellite
...; Max length of incoming registration we
allow
defaultexpirey=12000 ; Default length of incoming/outoing
registration
;notifymimetype=text/plain ; Allow overriding of mime type in NOTIFY
[opoffice]
type=friend
secret=opoffice
host=dynamic
dtmfmode=rfc2833
mailbox=1000
context=local
callerid="Operator Office" <1000>
[opfield]
type=friend
secret=opfield
host=dynamic
dtmfmode=rfc2833
mailbox=2000
context=local
callerid="Operator Field" <2000>
extensions.conf
===========
;
; Static extension configuration files, used by
; the pbx_...
2013 Aug 28
3
Dedicated hangup extension h
...I have to add one which uses the special h extension to perform a CURL action whenever the user hangs up. The problem is that once I've registered a h extension, it is executed for all extensions in the incoming context.
exten => _X.,1,Playback(invalid)
exten => _X.,n,Hangup
exten => 1000,1,Playback(welcome)
exten => 1000,n,Read(dtmfinput,,,,,15)
exten => 1000,n,Hangup
exten => h,1,Set(response=${CURL(http://sample.company.local/PostHandler.ashx,var1=${dtmfinput}&var2=1000)}<http://sample.company.local/PostHandler.ashx,var1=$%7bdtmfinput%7d&var2=1000)%7d>)
I...
2009 Dec 04
2
shorten str() output for long list
> x=split(1:1000,1:1000)
> str(x)
Although str() can suppress long output for vectors, but it can not
suppress long output for list. I'm wondering how to suppress the
output for long lists.
2004 Aug 17
4
Hunt Groups
I have a question about how Asterisk Parses the Dial Plan. To create a
hunt-group which would be the appropriate dial plan:
[CompanyABC]
exten => 7228888,1,Dial(SIP/8017228888,60,r)
exten => 7228888,102,Dial(SIP/8014361234,60,r)
exten => 7228888,103,Dial(SIP/8014362345,60,r)
exten => 7228888,104,Dial(SIP/8014363456,60,r)
exten => 7228888,105,Dial(SIP/8014364567,60,r)
exten