Displaying 20 results from an estimated 400 matches similar to: "100rel & Prack enable"
2006 Nov 13
0
Voicemail and realtime : the emailbody option ...
Dear all,
I've just a little question ...
I've configured asterisk to run with voicemail realtime in the
extconfig.conf like this :
voicemail => mysql,database,voicemail
I just want to have a row, in the voicemail table, like emailbody, which
is capable to give me a body to the mail. Therefor the body is set user
by user, and it could be very fun.
Is it possible ?
I've made
2006 Nov 14
0
[Voicemail] Change the format of the VM_DATE
Dear all,
I just want to change the format of the VM_DATE (used in the mail sent
to the user).
I'm french and the format is not very acceptable for my users ....
Friday, November 10, 2006 at 04:28:43 PM could be replace by
Vendredi 10 Novembre 2006 ? 16h28
Any idea ?
Thanks a lot,
--
Jean-Baptiste Bellet
Ing?nieur D?velopppement
Lucyde SAS
Prologue 1 - La Pyr?n?enne BP 27201 LABEGE cedex
2007 Apr 03
1
Re: asterisk-users Digest, Vol 33, Issue 12
Ah, yes. One of the many differences between the US and the rest of the world.
>>> support@drdos.info 4/3/2007 2:52:16 PM >>>
john beaman wrote:
> I too was curious about this, so I copied the text into Babel Fish, and this is the result:
>
> I miss of the 2/04/2007 to the 11/04/2007. I will answer your message as of my return. For any urgency, to contact Emmanuelle
2006 Oct 27
1
Iax bug ?
Hello,
I'm french, so excuse my poor English.
I'm face to a terrible thing, with has stole a lot of my time.
On the .184 machine, I've the following iax.conf :
[general]
rtcachefriends=yes
bandwidth=high
tos=reliability
jitterbuffer=no
autokill=yes
#include "iax.voip1.conf"
#include "iax.renoir.conf"
The iax.voip1.conf file contains :
[VOIP1]
type=friend
2004 Oct 26
1
indexing within the function "aggregate"
Hi all,
I'm trying to work out the following problem, but I can't imagine how.
I have the following (much reduced & oversimplified) dataset
My.df <-
cbind.data.frame(PPM=c(15.78, 15.81, 15.87, 15.83, 15.81, 15.84,
15.91, 15.90, 15.83, 15.81, 15.93, 15.83,
15.70, 15.92, 15.76, 15.81, 15.91, 15.75,
15.84, 15.86, 15.82, 15.79,
2005 Jul 27
1
Question on glm for Poisson distribution.
Good afternoon,
I REALLY try to answer to my question as an autonomous student searching in
the huge pile of papers on my desk and on the Internet but I can't find out
the solution.
Would you mind giving me some help? Please.
#########################################
I'm trying to use glm with factors:
> Pyr.1.glm<-glm(Pyrale~Trait,DataRav,family=poisson)
If I have correctly
2005 Jul 22
0
Significant difference of coefficients in glm with factors?
Hi and sorry to distur,
########### Setting #################
I'm trying to use glm with factors:
> Pyr.1.glm<-glm(Pyrale~Trait,DataRav,family=poisson)
> summary(Pyr.1.glm)
Call:
glm(formula = Pyrale ~ Trait, family = poisson, data = DataRav)
Deviance Residuals:
Min 1Q Median 3Q Max
-1.7117 -0.8944 -0.6237 0.6390 1.5224
Coefficients:
Estimate Std. Error z value Pr(>|z|)
2015 May 22
0
Disconnecting call for lack of RTP activity in 301 seconds
Hello,
I noticed that a call on hold is disconnected after 5 minutes, whatever
the value of the "rtpholdtimeout" parameter in sip.conf.
Tested from v1.8.10.0 to 1.8.32.3.
The version 1.8.8.0 is not affected. I don't know between 1.8.8.0 and
1.8.10.0.
Does anybody has a solution to increase the timeout of a call on hold ?
Is this a bug or a new parameter ?
Thanks.
--
2005 Jan 06
1
arrays emerging from tapply
The code below illustrates some points about results from tapply that
I find strange. I wonder if they are intended and if so why it is so.
1) When you make a table the dimnames is a *named* list, tapply
returns an unnamed list.
2) data.frame behaves differently on an array and a table. Is this
an intended feature?
3) For tables class(TAB) and attr(TAB,"class") both return
2014 Feb 27
1
Asterisk 12 - 100rel (Prack) no 100rel Require in responses
Hi
I am trying out Asterisk 12 between two servers in order to test the 100rel (PRACK) capability. When I set the called server to send Ringing (180) and wait before answering the call it is not sending 100rel Require in the Ringing message (non provisional response) therefore the calling server does not send a PRACK.
I have the same config at both ends and if I change the 100rel field in the
2007 Aug 02
1
New user help with plot.default
Hi - I'm just starting out with R and have come up against a problem with
what should be a simple operation. I'm plotting a range of safety standards
for 7 different chemicals. I don't want the standard box and whisker plot -
I just a dot for each value. Whilst using "plot.default" I get the error
"invalid xlim value" - which is confusing since using the same script
2002 Mar 22
0
sequential t-test - replies
[my original message to s-news & r-help is attached ]
No one possessed or knew of any S/R code for the sequential t-test. Also
it doesn't appear in the SAS index.
One or two suggested obtaining the S+ seqtrial software which may (or may
not) cover this, but this seemed to be a bit of a "hammer to crack a nut".
I have written a function based on the treatment in Wetheril
2004 May 25
1
0.99.10.5 release candidate
http://dovecot.org/rc/
Thought I'd still make one 0.99.10.x release now that mbox corruption
problems are (hopefully) fixed.
Please test, if no problems are found this will be the final 0.99.10.5.
Changes since .4:
+ MySQL authentication, patch by Matthew Reimer
- mbox: APPEND reversed given \Draft and \Deleted flags
- mbox: "LF not found" errors happened sometimes when
2008 Jan 31
3
fastest way to compute the squared Euclidean distance between two vectors in R
I have a program which needs to compute squared Euclidean distance
between two vectors million of times, which the Rprof shows is the
bottleneck. I wondered if there is any faster way than my own simple
function
distance2 = function(x1, x2)
{
temp = x1-x2
sum(temp*temp)
}
I have searched the R-help archives and can not find anything except
when the arguments are matrices. Thanks for any
2007 Apr 03
6
Re: asterisk-users Digest, Vol 33, Issue 12
I too was curious about this, so I copied the text into Babel Fish, and this is the result:
I miss of the 2/04/2007 to the 11/04/2007. I will answer your message as of my return. For any urgency, to contact Emmanuelle Parache Moga or C?dric Buzay.
If this guy is really going to be out until November these messages will get rather tiresome...
John Beaman
Telecom Specialist
Voice
2009 Aug 21
0
Common config in xen
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi everybody,
few weeks ago i asked how is it possible to fix common parameters for
all VMs.
There is a way by putting a script instead of HVM.
Can you help me please on this ?
I would like that all my VMs have stdvga forced instead of cirrus (i
use libvirt and this parameter is not supported).
What kind of script i can develop and how i can cal
2009 Jul 28
0
Windows NT and stdvga
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi everybody,
i can run windows nt properly under xen hvm.
However when i use cirrus logic driver if i switch of screen size i have
green or yellow flood.
I tried to use stdvga but when i use it i have only 16bit color and only
800x600.
What kind of driver can i use with stdvga ?
regards,
- --
Alexandre CABROL PERALES
- --
Ingenieur Securite des
2007 Mar 27
1
probleme d'installation de samba sur AIX 5.3 et accés LDAP
good morning,
We belong to PSA Peugeot Citroen Company and we need to install SAMBA on OS
AIX5.3 with LDAP access. We download the SAMBA binaries 3.0.21 but in this
version, we could not find the libraries for LDAP ACCESS. Could you tell us
, if we have to download another version or where we can find the library
for version 3.0.21.
Further more , do you know if we can find a french company
2008 May 28
1
manipulating multiply imputed data sets
Hi folks,
I have five imputed data sets and would like to apply the same
recoding routines to each. I could do this sort of thing pretty
easily in Stata using MIM, but I've decided to go cold turkey on other
stats packages as a incentive for learning more about R. Most of the
recoding is for nominal variables, like race, religion, urbanicity,
and the like. So, for example, to recode race
2013 May 29
0
Aprovados lista publicada Jacuípe
Aprovados lista publicada Jacu?pe:
Tangar? da Serra: ANA CAROLINA PINTO COSTA, LISLY KATELLY DE PAULA MARTINS, FRANCISCO HELSON DE LIMA NERES, PAULO RAFAEL PEREIRA SOARES, JO?O CARLOS MOREIRA DE CARVALHO, DAMI?O JOVENAL DOS SANTOS, MARIA GORETTI LIMA FREIRE, JANIMERY BARBOSA DE ABREU MELO. SHYSLAINE ARA?JO BEZERRA, ARIANE SOARES SILVA, LUCAS MOREIRA DIAS, GILSON POLICARPO DE S?, REBECA DE FREITAS