similar to: FAX detection in extentions.conf

Displaying 20 results from an estimated 10000 matches similar to: "FAX detection in extentions.conf"

2004 Dec 20
1
Help me ($$$) with install h323
Hello Does anybody who have experience in installing the h323 modules in asterisk. I try'd it many times an spend xxx hours to install it but didn't get lucky so far. I have asterisk 1.0.1 running with bristuffed 2.0 I'm willing to pay for this. Sjaak
2003 Jun 08
1
oh323 and extentions.conf
> > hi > i am not using sio or iax but only oh323. i am trying to register my > extensions like > > extensions.conf > ;-- H.323 [alias = 665] > exten => 665,1,Dial(OH323/172.18.1.133) > > oh323.conf > > context=voip-h323 > > ;----------------------------------------- > ; Configure H.323 aliases, prefixes and > ; related ASTERISK's contexts
2007 Oct 05
1
[asterisk-dev] oh323.conf, extentions.conf
Send these questions to Asterisk-Users mailing list. h323.conf ################################################## ; ; Configuration file of OpenH323 channel driver ; [general] listenAddress=W.X.Y.Z ; local ip listenPort=1720 tcpStart=10000 tcpEnd=20000 udpStart=10000 udpEnd=20000 fastStart=yes h245Tunnelling=yes h245inSetup=yes jitterMin=20 jitterMax=100 ipTos=none outboundMax=100
2009 Oct 06
1
how to output profile plots for groups using lattice package
Dear R users, I am trying to have an xyplot of a data set which has the following variables: case (n=10,20,30) parameter (parm=a,b) group (grp=g1,g2) y (y values) x (x=2,4,8) My plot should be parameter by case such that I have 2 rows (each row= each parameter) and 3 columns (each column=each case). My R-code is as follows but I am not able to get what I want to: tp1.sim <- xyplot(y~ x | case
2004 Jan 14
1
Collapsing a factor in R
I'm trying to collapse the following table along the sub-group factor. In this case, collapsing means taking the average ages within a subgroup and creating a new table. I seem to be running into trouble trying to create this new data frame. I can use the ave() function to find averages within a subgroup but how do I maintain the Group/Gender factors after collapsing? (see bottom table) Can
2013 Jan 03
0
help with NLOPTR
I have a complex function that I want to maximize (I have multiplied this function by -1 so that it becomes a minimization problem in the code below). This function has two equality constraints. I get the programs to run but the answer isn't correct because, when it does converge, at least one of the constraints is violated. Any suggestions? Code below Violated constraint (an easy check):
2005 May 29
1
Routing for multiple uplinks and SNAT to 2 source IPs
Hi, I configured a router box to use 2 providers, as described in the HOWTO. (Apendix 1) I want to use both links to reach a single smtp server. As I read in the kptd and in some old messages of this list, doing a SNAT in the postrouting chain comes _after_ the routing desision. So I guess the following lines I''m trying to use are wrong. (See Apendix 1) What can I do to have multiple
2008 Sep 24
2
keep the row indexes/names when do aggregate
Hi, R-users, If I have a data frame like this: >x<-data.frame(g=c("g1","g2","g1","g1","g2"),v=c(1,7,3,2,8)) g v 1 g1 1 2 g2 7 3 g1 3 4 g1 2 5 g2 8 It contains two groups, g1 and g2. Now for each group I want the max v: > aggregate(x$v,list(g=x$g),max) g x 1 g1 3 2 g2 8 Beautiful. But what if I want to keep the row index of (g1
2011 Jun 24
0
reshape: cast(x, a ~ b ~ .) vs. cast(x, a ~ b) difference
Hi, I have a problem with understanding what the function cast() from the package reshape is doing. In the example below I have a 2x2x2 array which I first melt and then cast to get the averages over the field 'strain' for every combination of the fields 'treatement' and 'gene': ------ > mdat <- melt(array(rnorm(8), dim=c(2,2,2),
2010 Jan 30
2
FAX over ISDN PRI
Hi, All I just want to be able to detect the fax signail while doing an outbout call taking advance of the out_dialout feature of asterisk. So for to have a clear image on how i am doing it. I have my .call that I move the /var/spool/asterisk/ouotgoing like: (numbers were changed to preserve privacy) Channel: Local/99999999 at dial_out/n CallerID: Fax Test <99999999> MaxRetries: 0
2013 Jan 24
1
Pairwise Comparrisons
Dear all, I''m trying to write a function, that will take as an argument, some aligned genome sequences, and using a sliding window, do pairwise comparisons of sequence similarity. Coding the sliding window I think I can manage but what I''m trying to get to grips with is getting it so as every pairwise comparison is made, no matter how many genomes are added, from 3 to N. So if
2012 Feb 25
2
Finding name of variable supplied as function argument
Greetings All. I want to do the following simple thing. I have defined a function med3x3() such that, given vectors X,Y, med3x3(X,Y) returns a 3x3 table where: Row 1: X > median(X) Row 2: X = median(X) Row 3: X < median(X) Col 1: Y < median(Y) Col 2: Y = median(Y) Col 3: Y > median(Y) (with intersections of these conditions for the individual cells). I can easily define fixed
2002 Nov 27
0
R genetics package now available
The "genetics" package for handling single-locus genetic data is now available on CRAN in both source and Windows binary formats. The purpose of this package is to make it easy to create and manipulate genetic information, and to facility use of this information in statistical models. The library includes classes and methods for creating, representing, and manipulating genotypes
2002 Nov 27
0
R genetics package now available
The "genetics" package for handling single-locus genetic data is now available on CRAN in both source and Windows binary formats. The purpose of this package is to make it easy to create and manipulate genetic information, and to facility use of this information in statistical models. The library includes classes and methods for creating, representing, and manipulating genotypes
2009 Jul 15
1
Help with averaging
Hi I am using the following script to average a set of data 0f 62 columns into 31 colums. The data consists of values of ln(0.01) or -4.60517 instead of NA's. These need to be averaged for each row (i.e 2 values being averaged). What I would I need to change for me to meet the conditions: 1. If each run of the sample has a value, the average is given 2. If only one run of the sample has a
2012 Dec 04
1
Solve system of equations (nleqslv) only returns origin
I'm solving 4 complex equations simultaneously. Code is below. The code returns only zero's for the solution though there should also be a non-zero result. I'm pretty confident that the equations are correct because they are straight from a published paper and I checked them pretty thoroughly. The parameter values I used are from the published paper as well. Any suggestions for how
2008 Dec 23
1
second trunk in extensions.conf
I have a TE210P digium card that has 2 E1/T1 ports. the code in my extensions.conf file for span 1 is : [globals] CONSOLE=Console/dsp ; Console interface for demo TRUNK=Zap/g1 ; Trunk interface TRUNKX=Zap/g2 ; 2nd trunk interface ... ... ; dial a long distance outbound number to SPAIN ; This
2005 May 10
1
AreskiCC + MySQL
Hello * Users Did somebody get managed to get AreskiCC work under mysql. If so is there anywhere to find the database structure for mysql. Thanks Sjaak
2004 Nov 23
1
CLI > h.323 show codecs shows nothing
Hello I like to make calls to an h.323 device. I'm using Nuphone h323. Compiled everything okay "I Guess" When I make a connection * SIP > h323 device, the phone is ringing and then * tells me "No one available....." and disconnect Thinking this is a codec problem and check in CLI h.323 show codecs and * shows nothing. I try many combination in the h323.conf like.
2009 Oct 08
0
glm pairwise interaction coefficients
I am trying to recreate the analysis of the recent Kirwan et al paper in Ecology [9(80), 2032-2032]. The SAS code is available but am having troubles getting the R equivalents. The SAS code is: *Model 5 - Species-specific interaction coefficients; PROC GLM; where N=150; MODEL YIELD=G1 G2 L1 L2 G1INT G2INT L1INT L2INT M / NOINT SOLUTION; *calculate the pairwise interaction coefficients;