similar to: [asterisk-dev] MeetMe feature request: bypass pincode

Displaying 20 results from an estimated 2000 matches similar to: "[asterisk-dev] MeetMe feature request: bypass pincode"

2009 Jul 20
0
[asterisk-user] MeetMe feature request: bypass pincode
First off, not a dev question, redirecting to -user. On Sun, 19 Jul 2009, Emrah wrote: > Would it be possible to imagine an option that avoids the need of > entering the pin code of a conference room? Unless I'm misunderstanding you, just create the meetme without requiring a pin. See: [core] show application meetme or whatever random order of words makes sense to your version
2009 Jun 28
0
Looking for real world uses of CallbackAgentLogin()
Hello everyone! I am currently in the middle of writing an article on converting from AgentCallbackLogin() dialplan application (which is deprecated as of 1.4, and removed in the 1.6.x series of Asterisk) to using the AddQueueMember(), and other dialplan based methods of performing the same functionality. However, after looking at the AgentCallbackLogin() application, it seems there is a
2005 Oct 15
7
You ASKED for an Asterisk book, you GOT an Asterisk book!
Jared Smith, Jim van Meggelen, and Leif Madsen of the Asterisk Documentation Project, in conjunction with O'Reilly Media are pleased to announce the official release of Asterisk: The Future of Telephony on Friday, October 14, 2005 at AstriCon 2005 in Anaheim, CA. In the true spirit of Open Source, the authors and O'Reilly Media have published the book under the open, Creative Commons
2010 Mar 01
2
MeetMe and usernum
hi, I am trying to get the usernum of a user when dialing in to a MeetMe conference. Is there somehow a possibility to save the usernum of a MeetMe participant into a variable? Everything should be done through the DialPlan, no manager and no *cli. Thanks for your help, Emrah
2009 Aug 21
1
Queue Question
First off this is not my work for extensions.conf it is modified from http://leifmadsen.wordpress.com/2009/07/15/migrating-from-agentcallbackl ogin-to-standard-dialplan-methods-part-1/ So credit to Leif Madsen <http://www.leifmadsen.com> But as to my question [AgentLogin] ;A replaced version of AgentCallbackLogin() using a GoSub() ; exten =>
2009 Jul 31
2
Voicemail feature: enable or disable the ability to leave a message
Hi, I think there is an essential option of the Voicemail application that is missing. I would like to suggest the implementation of a function to give the user the ability to either allow or disallow the recording of messages. If the ability to record a message is disabled, options u, s, and b must not be considered in order to avoid the playback of messages such as "Please leave your
2009 Aug 01
1
Maximum number of concurrent calls
Hi, I remember reading that Asterisk allows only 100 simultaneous calls. Is that correct? If it is so, how is it possible to have a conference call with more then 100 users? I think I read here that some people managed to have 500 people in a conf room... Or, how do I increase this limit? Is it as easy as changing a value in a config.h? Thanks for your help, Emrah
2003 Sep 28
1
Forwarding SIP over IAX problem: No One Available
I'm hoping someone can help me out with this. I am basically just trying to separate my outbound and inbound calls into separate contexts instead of having everything in a single context. Any help would be appreciated. Perhaps I've missed something really obvious.... Here is the network layout: <remote> <--TDM400P--> <nattedbox> <--IAX--> <liveipbox>
2008 Feb 20
2
Data frame with 0 rows.
For reasons best known only to myself ( :-) ) I wish to create a data frame with 0 rows and 9 columns. The best I've been able to come up with is: junk <- as.data.frame(matrix(0,nrow=0,ncol=9)) Is there a sexier way? cheers, Rolf ###################################################################### Attention:\ This e-mail message is privileged and confid...{{dropped:9}}
2012 Oct 05
1
Format of numbers in plotmath expressions.
I want to do something like: TH <- sprintf("%1.1f",c(0.3,0.5,0.7,0.9,1)) plot(1:10) legend("bottomright",pch=1:5,legend=parse(text=paste("theta ==",TH))) Notice that the final "1" comes out in the legend as just plain "1" and NOT as "1.0" although TH is [1] "0.3" "0.5" "0.7" "0.9"
2004 Jul 27
0
Re: Nat...again...
Hi Mark, Are you still having audio problems between outside SIP channels? Make sure that you have set the following for all SIP channels in your sip.conf canreinvite=no -- sudhir > Message: 2 > Date: Mon, 26 Jul 2004 22:46:22 -0400 > From: Leif Madsen <leif.madsen@gmail.com> > To: asterisk-users@lists.digium.com > Subject: Re: [Asterisk-Users] Nat...again.... >
2004 Jul 27
0
Re: Nat...again...
Thanks for your reply. canreinvite has been set to "no" from the beginning...still no luck. Maybe I'll be able to take a trace of it tonight...we'll see...but any thoughts at all are appreciated! -Mark > > Hi Mark, > > Are you still having audio problems between outside SIP channels? Make > sure that you have set the following for all SIP channels in your
2006 Mar 23
3
Intercepts in linear models.
A colleague asked me if there is a way to specify with a ***variable*** (say ``cflag'') whether there is an intercept in a linear model. She had in mind something like lm(y ~ x - cflag) where cflag could be 0 or 1; if it's 0 an intercept should be fitted, if it's 1 then no intercept. This doesn't work ``of course''. The cflag just gets treated as another predictor
2010 Feb 19
0
asterisk sudden restart - 1.4.18.1 - Resolved after upgrade to 1.4.22.1
Hi Leif, Thanks for the information. I checked the /tmp/ folder and there was core #### files and I tried to back trace it but it was not showing the cause of that crash, but anyhow, I upgraded our Asterisk system to 1.4.22.1 and from past few days its going on fine. I have also researched and found that version 1.4.17/18.1 had the issue of channel stuck up as well as random asterisk crashes.
2007 Oct 03
3
Factor levels.
I have factors with levels ``Unit", "Achieved", and "Scholarship"; I wish to replace these with "U", "A", and "S". So I do fff <- factor(fff,labels=c("U","A","S")) This works as long as all of the levels are actually present in the factor. But if ``Scholarship'' is absent (as if often is) then
2006 Jun 23
2
Generate Models & Controllers from Ruby program
Hi All. I would like to create a model, database, and controller (if possible) from a webapp. Each model and controller will each have 4 methods, and the database will always have the same number of fields. I will probably create the database through create_table or a direct SQL command. My question is this - is there a method that I can call to create the model and controllers? Would it
2005 Jun 06
1
Missing values in argument of .Fortran.
I wish to pass a vector ``y'', some of whose entries are NAs to a fortran subroutine which I am dynamically loading and calling by means of .Fortran(). The subroutine runs through the vector entry by entry; obviously I want to have it do one thing if y[i] is present and a different thing if it is missing. The way I am thinking of proceeding is along the xlines of: ymiss <- is.na(y)
2004 Jun 02
5
Meetme with moderator
All, I have been beating my head against a wall trying to figure out how I would implement a separate moderator code and participant code for the same conference using meetme, the deal is I dont want the participants to be able to join until the moderator is in the conference. Is it possible to do this using the apps as they are , or is their a way to use an Agi script, is that the only way?
2004 Dec 09
2
MeetMe Features
Hi all, I had a chance to use some call conferences that had some very neat functionalities: - When you call you are first asked for your name - When someone joins the conference a message "<name> is now joining the conference." is played. - When someone leaves the room a message "<name> has left to conference." is played. How can I set MeetMe/Asterisk to have
2008 May 16
1
Making slope coefficients ``relative to 0''.
I am interested in whether the slopes in a linear model are different from 0. I.e. I would like to obtain the slope estimates, and their standard errors, ``relative to 0'' for each group, rather than relative to some baseline. Explicitly I would like to write/represent the model as y = a_i + b_i*x + E i = 1, ..., K, where x is a continuous variate and i indexes groups (levels of a