Displaying 20 results from an estimated 11000 matches similar to: "Asterisk Queue strange behaviour"
2005 Jun 07
4
Queue Log
Hello everyone,
This is is my first email to this group.
I'm am writing a small php program to pull some info out of our
Asterisk's queue_log. I'm having trouble figuring out what some of the
parameters mean.
Here's an example:
1118098465|1118098465.47|salesq|NONE|ENTERQUEUE||"Ray Balbin 25"
<(716)250-3405>
I found a doc that tells me about everything from
2004 Aug 29
1
Empty Queues
Hi,
Is there a way to detect if the caller will be entering an agentless
queue? I'd like to be able to redirect any caller who tried to join a
queue with no logged in agents, to be redirected to the groups
voicemail. Is this possible? I know I could create a menu and an
announcement for voicemail (should the user wish to drop from the
queue); but they wouldn't know no one was taking
2004 May 24
2
Newbie extensions.conf I need to include [SMS] context.
I want to include a new context in my exensions.conf
I have read this page http://www.voip-info.org/wiki-Asterisk+howto+dial+plan
and I can sort of follow it?!
I have a context [local] that I know zapata.conf points to, I have edited
extensions.conf and put in my phone, sip and iax extensions. I want to add
an sms context.
I understand that all calls go through my [local] context and I have
2004 May 25
0
Question IAX and SIP bound to different IP's on the same * box
-----Original Message-----
From: asterisk-users-admin@lists.digium.com
[mailto:asterisk-users-admin@lists.digium.com] On Behalf Of
asterisk-users-request@lists.digium.com
Sent: Tuesday, May 25, 2004 5:30 AM
To: asterisk-users@lists.digium.com
Subject: Asterisk-Users digest, Vol 1 #3891 - 8 msgs
Send Asterisk-Users mailing list submissions to
asterisk-users@lists.digium.com
To subscribe or
2009 Apr 29
3
Strange behaviour when using vesamenu.c32 and PXELinux
Hello,
I was wondering if anyone had any ideas and perhaps solutions around an
error i've been experiencing when using vesamenu.c32 (and the other
non-vesa menu too).
I have tried three different versions (the latest three) of pxelinux and
the other files. The problem exists in all of them.
My setup is pretty simple, filename defined in dhcpd, boot up from pxe,
starts requesting configs, and
2007 Sep 03
6
blog post on story runner
Here''s an excellent blog post on Story Runner, which will be part of
the next release and is undergoing active development in trunk:
http://evang.eli.st/blog/2007/9/1/user-stories-with-rspec-s-story-runner
2007 Jan 19
3
Something cool I learned about rspec today
I found an awesome feature today. When you''re setting expectations,
you can actually pattern match the parameters to methods. Here''s my
discussion and example:
http://evang.eli.st/blog/2007/1/19/parameter-matching-in-rspec
Pat
2007 Apr 04
2
[PLUGIN] ArPaginator - Allows you to easily paginate over any existing AR queries.
The built-in Rails pagination is fairly limited...you pass in the
model name, and optionally some conditions, and it generates a
paginated query for you. This gets to be very bad if you''ve got any
custom queries.
class Company < ActiveRecord::Base
def complete_videos
Video.find :all, :conditions => "company_id=#{id} AND
status=''complete''", :order
2007 Sep 20
10
Getting Started with Story Runner
I haven''t found any How To''s to use story runner and I''m not sure how to get
started.
Should I be looking for resources on how to use rbehave?
How do I generate my first Story?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070920/07a80bc7/attachment.html
2008 Mar 03
2
Testing Plugins + Lib Code
Hi,
I''m quite new to Rspec and I''m embarking on a new project. One thing I''m
really not sure about is how to test plugins and code in your ''lib/''
folder. Where would these specs actually live in the dir structure?
Should you test plugins by creating specs within the plugin''s dir? Or by
adding a spec to the main ''/specs''
2012 Dec 08
5
How to efficiently compare each row in a matrix with each row in another matrix?
Dear expeRts,
I have two matrices A and B. They have the same number of columns but possibly different number of rows. I would like to compare each row of A with each row of B and check whether all entries in a row of A are less than or equal to all entries in a row of B. Here is a minimal working example:
A <- rbind(matrix(1:4, ncol=2, byrow=TRUE), c(6, 2)) # (3, 2) matrix
B <-
2019 Oct 31
4
PHP FPM issue
Hi Marius,
Will make the changes and see how it goes.
On the other hand
https://cbs.centos.org/koji/buildinfo?buildID=27138
if the above was released we could just install and migrate to
rh-php73-php, which is not affected as per
https://access.redhat.com/security/cve/cve-2019-11043
thanks
---
Thomas Stephen Lee
On Thu, Oct 31, 2019 at 8:40 PM Marius ROMAN <marius at roman.systems>
2010 Dec 30
5
Why is format(10000, big.mark = "\\,") not 10\,000?
Hi,
why does format(10000, big.mark = "\\,") not give me "10\,000"? How can I get this kind of "big.mark"?
Cheers,
Marius
2011 Apr 06
7
Quiz: Who finds the nicest form of X_1^\prime?
Dear expeRts,
I would like to create a plotmath-label of the form X_1^\prime. Here is how to *not* do it [not nicely aligned symbols]:
plot(0,0,main=expression(italic(X*minute[1])))
plot(0,0,main=expression(italic(X[1]*minute)))
plot(0,0,main=expression(italic(X)[1]*minute))
Any suggestions?
Cheers,
Marius
2015 Feb 03
2
Seed in 'parallel' vignette
Hi,
This is most likely only a minor technicality, but I saw the
following: On page 6 of the 'parallel' vignette
(http://stat.ethz.ch/R-manual/R-devel/library/parallel/doc/parallel.pdf),
the random-number generator "L'Ecuyer-CMRG" is said to have seed
"(x_n, x_{n-1}, x_{n-2}, y_n, y_{n-1}, y_{n-2})". However, in L'Ecuyer
et al. (2002), the seed is given with
2010 Dec 26
1
lattice splom: how to adjust space between tick marks and tick labels?
Dear expeRts,
how can I decrease the space between the tick marks and the corresponding labels in an splom?
See here:
library(lattice)
U <- matrix(runif(4000), ncol = 8)
splom(U, axis.text.cex = 0.2) # => space between the [small] tick labels and tick marks is/seems to be too large
I checked ?panel.pairs but could not find an option for that.
Cheers,
Marius
2005 Jun 22
4
tc on a PDA
hello,
i have a 5500 iPaq with familiar 0.8.2 on it and i don''t know how to
install a traffic shaper tool on it.
I installed iproute2 package i found on familiar site and for that i
have the tc and ip commands, but when trying to add a qdisc, as a
dummy example, i get the next answer:
> tc qdisc add dev wlan0 root cbq bandwidth 100Mbit avpkt 100
RTNETLINK answers: Invalid argument
2016 May 05
4
R process killed when allocating too large matrix (Mac OS X)
Hi Simon,
thanks for your quick reply.
1) ... so you can reproduce this?
2) Do you know a way how this can be 'foreseen'? We allocate larger
matrices in the copula package depending on the user's input
dimension. It would be good to tell her/him "Your dimension is quite
large. Be aware of killers in your neighborhood"... before the killer
attacks.
Thanks & cheers,
2015 Jun 24
2
Identify listeners on log reports
Hi Marius,
thanks for your reply.
URL auth via usern/pass seems what I need.
I fail to understand is if and how would that reflect on logs.
Care to elaborate further?
Thank you
----
Mark Foster
On Wed, Jun 24, 2015 at 8:28 AM, Marius Flage <marius at flage.org> wrote:
> Hi Mark,
>
> You can maybe look at authentication:
> http://icecast.org/docs/icecast-2.4.1/auth.html ?
2012 Mar 01
2
How to colorize the panel backgrounds of pairs()?
Dear expeRts,
I would like to colorize the backgrounds of a pairs plot according to the respective panel number. Here is what I tried (without success):
count <- 0
mypanel <- function(x, y, ...){
count <<- count+1
bg. <- if(count %in% c(1,4,9,12)) "#FDFF65" else NA
points(x, y, cex=0.5, bg=bg)
}
U <- matrix(runif(4*500), ncol=4)
pairs(U, panel=mypanel)
I