Displaying 20 results from an estimated 35 matches for "1000,3".
Did you mean:
1000,1
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...
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...
2010 May 11
3
Problem with callerid(dnid) and queue
Hi all,
In order to use the "open url" function of zoiper (it opens an url
based on the asterisk $callerid(dnid)), I need rewriting of the dnid.
In my dialplan I have:
exten => 1000,3,Set(CALLERID(dnid)=newdnid)
exten => 1000,4,Noop(${CALLERID(dnid)})
exten => 1000,5,Queue(test-queue)
but the callerid(dnid) shows the extension called (the member of the
test-queue) and not the "newdid". I have tried also with the option
"o" in cmd Dial but without...
2008 Feb 09
2
print.fitdistr buglet
Dear developers,
There's a small bug in print.fitdistr that can cause output to be printed
twice, but only if print is called explicitly:
> fit<-fitdistr(rt(1000,3),"t")
There were 11 warnings (use warnings() to see them)
> fit
m s df
-0.02181723 1.00145296 3.13723878
( 0.03865057) ( 0.03999447) ( 0.33298377)
> print(fit)
m s df
-0.02181723 1.00145296 3.13723878...
2005 Feb 17
1
Having trouble with extensions in an include file and retrieve_extensions_from_mysql.pl
...ded to try out
the contributed script
/usr/src/asterisk/contrib/scripts/retrieve_extensions_from_mysql.pl
I edited the script so that its output goes to a
separate extensions_from_mysql.conf file.
The resulting extensions_from_mysql.conf file looks
something like this:
[vp_context]
exten => 1000,1,Record(/tmp/rec:gsm) ;
exten => 1000,2,Playback(/tmp/rec) ;
exten => 1000,3,Background(goodbye) ;
exten => 1000,4,Hangup() ;
I decided to #include this in my main extensions.conf,
like so:
[main_vp_context]
exten => s,1,Answer
#include <extensions_from_mysql.conf&g...
2004 Dec 19
1
Make asterisk launch script after completing call.
...ld be nicer. How is it done?
[outgoing]
exten => _0.,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP})
exten => _0.,2,Monitor(wav,${CALLFILENAME},m)
exten => _0.,3,Dial(SIP/rix/${EXTEN}|20|t)
exten => _0.,4,Congestion
exten => _0.,104,Congestion
[sip-in]
exten => 1000,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP})
exten => 1000,2,Monitor(wav,${CALLFILENAME},m)
exten => 1000,3,Dial(SIP/alex,20)
exten => 1000,4,Voicemail(u1000)
--
Alex Polite
http://polite.se
2008 Aug 07
1
incorrect usage of glmer crashes R (PR#12375)
Full_Name: susscorfa
Version: 2.7.1
OS: ubuntu
Submission from: (NULL) (129.125.177.31)
Incorrect implementation of the grouping variable in the function glmer crashes
R
a small example:
require(lme4);
a<-data.frame(b=rpois(1000,10), c=gl(20,50), d=rnorm(1000,3), e=rnorm(1000,5),
f=rnorm(1000,2)+5);
glmer(b~d+f|c+(e), family=poisson, data=a)
It crashes R on debian linux (2 independant systems) as well as windows
The correct function usage is:
glmer(b~d+f+(e|c), family=poisson, data=a)
I suppose it should just eveluat...
2004 Jul 09
1
No data when recording a Meetme conference with Monitor
I'm trying to record a Meetme conference to disk, but the Monitor application
doesn't seem to play nicely with Meetme. In extensions.conf, I have this:
exten => 1000,1,Answer
exten => 1000,2,Monitor
exten => 1000,3,Meetme
This starts up the monitoring OK, and it records the prompts that Meetme
gives, but as soon as the user enters the conference, the -out WAV file stops
being updated. The -in file is updated, and has the right data in it. I've
a...
2008 Apr 03
1
Sending audio to a channel
I have a voicemail application that users can listen to messages and
leave messages. I am looking for a way to play a beep tone to a user
when a new message is received when they are on the phone.
Here is what I have come up with:
in extensions.conf:
[beepvoicemail]
exten => 1000,1,answer()
exten => 1000,2,NoCDR()
exten => 1000,3,wait(2)
exten => 1000,4,Set(TIMEOUT(absolute)=5)
exten => 1000,5,playback(voicemail/beeps)
exten => 1000,7,SendDTMF(9)
exten => 1000,8,hangup()
exten => 2000,1,Set(TIMEOUT(absolute)=5)
exten => 2000,2,NoCDR()
exten => 20...
2006 Apr 20
1
Background() and Read()
...w stack
-- Executing Wait("SIP/2944093-6437", "1") in new stack
-- Executing BackGround("SIP/2944093-6437", "if-u-know-ext-dial") in new stack
-- Playing 'if-u-know-ext-dial' (language 'en')
Here's extensions.conf:
exten => 1000,1,Answer
exten => 1000,2,Wait,1
exten => 1000,3,Background(if-u-know-ext-dial)
exten => 1000,4,Read(number||||||)
exten => 1000,5,NoOp(${number})
Anyone got any ideas?
2003 Sep 23
1
App_festival crashing
...7466]: File app_festival.c, Line 381 (festival_exec): Passing
text to festival...
WARNING[147466]: File app_festival.c, Line 390 (festival_exec): Writing
result to cache...
WARNING[147466]: File app_festival.c, Line 400 (festival_exec): Passing
data to channel...
== Spawn extension (home-trusted, 1000, 3) exited non-zero on
'SIP/bsenicar-850b'
In festival.conf I enabled all 5 default options and my extensions.conf
looks like this:
[home-trusted]
exten => 1000,1,answer
exten => 1000,2,SayDigits(123)
exten => 1000,3,Festival(Connect to Festival)
exten => 1000,4,Wait(5)
exten...
2003 Dec 17
3
Trunk Groups and Multiple Asterisk Machines
Hello all,
I have no problems setting up trunk groups in general, but is there a way to
set up a trunk group for outbound calls that includes channels on multiple
servers? I might have missed something somewhere, but I couldn't find any
reading about this topic. Thanks!
Sean
2005 Mar 18
1
Broadvoice hangs-up / disconnects after about 30 deconds
...ry
;context=from-broadvoice
context=from-pstn
dtmfmode=inband
canreinvite=no
qualify=yes
user=phone
[200]
type=friend
secret=010101
auth=md5
nat=yes
host=dynamic
reinvite=no
canreinvite=no
dtmfmode=inband
callerid="Fred F"<200>
dissallow=all
Extensions.conf
[default]
exten => 1000,1,Dial,Zap/1|20
exten => 1000,2,Voicemail,u1000
exten => 1000,3,Hangup
exten => 1000,102,Voicemail,b1000
exten => 1000,103,Hangup
exten => 2000,1,Dial,Zap/2|20
exten => 2000,2,Voicemail,u2000
exten => 2000,3,Hangup
exten => 2000,102,Voicemail,b2000
exten => 2000,103,Han...
2010 Aug 02
3
FAX Options
Hi,
Is FAXing with Asterisk a practical option ? Or is it better just to
use a plain fax connected to an FXS and just switch with Asterisk. I
specifically wanted to know if there was any experience using just the
fax scanner to send faxes and receive them via asterisk and the to
e-mail. My idea was to take my old fax connect it to an FXS port and
send faxes with the fax machine (using the fax
2011 Jan 27
5
Help needed
...enerated 100 random numbers from the uniform distribution then
A)add only the negative integers.
B)add elements until the first appearance of a negative element.
I know how to choose the negative elements for A but how to find integers?
And I dont know what to do for B.
2nd Question
Simulate 1000 observations from the student-t distribution with 3 degrees of freedom and then calculate the truncated mean by excluding bottom 5% and top 5%.
Thank yoou
[[alternative HTML version deleted]]
2000 Sep 25
1
No subject
...ample of 12, a binomial lieklihood is used, and Carlin et al reports a
probability of 0.075.
Using sum(dbinom(9:12,12,.5)) I obtain 0.073
Likewise, if the experiment is seen as continuing until 3 tails are noted,
a negative binomial is used, and the authors find P = 0.0325, whereas
sum(dnbinom(9:1000,3,.5)) gives 0.0327.
These differences may be small - but who is right, either R or Carlin - or
did I do it wrong ?
Best wishes
Troels
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send...
2006 Aug 26
1
Adding a footnote in plot-window in R
Dear all R users,
Suppose,
> x = rnorm(1000)
> y = rt(1000,3)
> plot(range(1:1000),range(x,y),type="n",xlab=NA,ylab=NA)
> lines(x,col="red")
> lines(y,col="blue")
Now I want to put a footnote in the plot window to tell that RED lines
represents the random numbers from normal-dist and blue line repres...
2004 Dec 06
1
Another "Unable to create channel of type 'Zap' (cause 0)" error
...o
exten => 613,4,Hangup
If I pick up the BT101, and dial 613, sure enough I get the echo
test.. All good.
I have a TDM400 Card with a single FXO port on it. ztcfg -vv
recognises the card as "FXS Device" (I think that's right though...??)
I want to know how to get, say extension 1000 to dial a number on the
FXO card.. ie:
exten => 1000,1,Answer
exten => 1000,2,Dial(Zap/1:555-1234,20,tr)
exten => 1000,3,Hangup
That should work, shouldn't it? Well it doesn't :-)
Hence the error in the subject of this message!.. I'm a total noob,
but once I get my head aro...
2006 Nov 17
1
Extension Response Slow
...10 seconds
exten => _XX.,n(restart),BackGround(securerad-welcome2) ; Play
some instructions
exten => _XX.,n,WaitExten ; Wait for an extension to be dialed.
;Directory
exten => 9,1,Directory(default)
;Sales
exten => 1,1,Dial(SIP/linksys, 15)
exten => 1,2,Voicemail(1000@default)
exten => 1,3,PlayBack(vm-goodbye)
exten => 1,4,HangUp()
;Customer Service
exten => 2,1,Dial(SIP/linksys, 15,m)
exten => 2,2,Voicemail(1000@default)
exten => 2,3,PlayBack(vm-goodbye)
exten => 2,4,HangUp()
;Operator
exten => 0,1,Dial(SIP/linksys, 15,m)
exten => 0,2,...
2005 Oct 16
1
GROUP and GROUP_COUNT
...nt3: ${GROUP_COUNT(VBUZZER)})
exten => s,n,GotoIf($[${GROUP_COUNT(GOIAX)} > 0]?103) ;Exceeded?
exten => s,n(dial),Dial(IAX2/goiax/${ARG1},999,TW)
exten => s,n,NoOp(s-${DIALSTATUS})
exten => s,n,Goto(s-${DIALSTATUS},1)
exten => s,103,Macro(dialvoipjet,${ARG1})
[home]
exten => 1000,1,SETCIDNUM(${CALLERIDNUM:1})
;exten => 1000/,2,PrivacyManager
exten => 1000/_635.,2,Macro(startrecord,${EXTEN},${CALLERIDNUM})
exten => 1000,2,Wait(0)
exten => 1000,3,Wait(0) ; yes i know I dont need this
exten => 1000,4,Set(GROUP()=PSTN) ;Set Group
exten => 1000,5,...