Displaying 20 results from an estimated 2000 matches similar to: "Hold on with Asterisk Manager"
2005 Sep 30
4
G.729 patent in France
Hi all,
I am building an Asterisk PBX with voicemail and music on hold functions.
An ISDN BRI line will also be available and G.729 IP-phones will be used.
Are there patents rights applicable to France?
Which licence could I use and how many ones are required (only one per phone
or also for voicemail and MOH)?
Regards
Amaury
-------------- next part --------------
An HTML
2006 Jan 16
0
How to put someone on hold with Astersik Manager
Hello,
I am writing a program based on Astersik Manager which needs to put
calls on hold and to redirect them to others extensions.
I haven't funded any action able to do this.
Is there a way to place calls on hold using Asterisk Manager Actions?
Amaury
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jan 05
1
UserEvent() with multiple body lines
Hi,
I have tried to use UserEvent() command to send data to Asterisk Manager from my dialplan.
It works fine if the body only contains 1 line but I don't know how to send multiple arguments in the body.
I have tested:
UserEvent(eventname|body1|body2)
UserEvent(eventname|body1\r\nbody2)
But no one seems to work.
Is it possible to do that and what is the correct syntax?
Amaury
2005 Sep 27
2
How to change ${VM_DATE} in voicemail.conf
Hi all,
I don't find where you can setup the date (${VM_DATE}) in french for the mail.
Is anybody can help me?
Amaury BOSS?
2010 Aug 08
0
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
Right, later in the same file we have:
// Reserve entries in the vector for each of the SUnits we are creating. This
// ensure that reallocation of the vector won't happen, so SUnit*'s won't get
// invalidated.
// FIXME: Multiply by 2 because we may clone nodes during scheduling.
// This is a temporary workaround.
SUnits.reserve(NumNodes * 2);
So for some reason *2 is
2004 Jul 19
2
codec translate
HI ALL;
Is astersik enable to translate between different codecs.
I have couple of SIP-UA , one with (a-law) and the other with (g729), registered with my astersik box.Can astersik translate between alaw-g729 and vice varsa.
Regards
mohammad
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Aug 08
2
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
Oh yes you're right, I missed that :) But the point still hold.
Amaury Pouly
2010/8/8 Eugene Toder <eltoder at gmail.com>
> > Not only this code does not compile with NDEBUG set
>
> I may be missing something, but why does it not compile with -DNDEBUG?
> assert() macro expands to noop when NDEBUG is set.
>
> Eugene
>
> On Sun, Aug 8, 2010 at 2:19 PM, Amaury
2010 Aug 08
0
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
> Not only this code does not compile with NDEBUG set
I may be missing something, but why does it not compile with -DNDEBUG?
assert() macro expands to noop when NDEBUG is set.
Eugene
On Sun, Aug 8, 2010 at 2:19 PM, Amaury Pouly <amaury.pouly at gmail.com> wrote:
> Hello,
> I was trying to interface a custom backend instruction scheduler with llvm
> code when I realize
2002 Nov 06
3
Samba 2.5 PDC + WinXP problem
Hey ppl !
My WinXP workstations are not able to join my domain. I tried to apply the registry fix for plain-text passwords but it has no effects :(
My PDC seems to work fine cause i've got no problems with Win2K Workstations...
Is there anything i've omitted ?
Regards,
Amaury
-------------- next part --------------
HTML attachment scrubbed and removed
2005 Oct 05
2
Zaptel tone description
Lilantha, the tones are supposed to be switched using the loadzone and
defaultzone lines in /etc/zaptel.conf , and, progzone in
/etc/asterisk/zapata.conf.
The information about countries and frequencies/times are at
zonedata.c located in the sourcecode of zaptel. As you may know,
changing zonedata.c information requires a re-compilation of the zaptel
module.
Hope it helps,
Ricardo
2017 Feb 09
2
Problem ScheduleDAG on PowerPC, X86 works fine.
I'd think i1 would be the proper and correct choice for a carry flag for
the generic instruction. I expect that would also make UADDO/USUBO
redundant with ADDC/SUBC (which would seem a good outcome).
You'd need to make sure the right thing happened when converting from
ADDC's 1-bit carry in/out to X86ISD::AD[DC]'s EFLAGS i/o. Right now the
conversion can get away with assuming
2010 Sep 01
1
[LLVMdev] Assertion failure in tablegen: rationale ?
While I'm at it, I noticed a behaviour which is not exactly related but
similar. To put it simply, you can 't do T.V.W, you need to do
!cast<Bla>(T.V).W
Example:
class Bla<string t>
{
string blu = t;
}
class Bli<Bla t>
{
Bla bla = t;
}
def a : Bli<Bla<"">>;
def b : Bla<!cast<Bla>(a.bla).blu>; // works
def b :
2017 May 22
2
Optimizing diamond pattern in DAGCombine
Explicitly re-adding a node to be processed doesn't work, because the
processing order is canonical.
2017-05-22 11:39 GMT-07:00 Nirav Davé <niravd at google.com>:
> You can always explicitly add D to the worklist when you make the
> transformation with AddToWorklist. Presuambly this was the cause for your
> infinite loop.
>
> -Nirav
>
>
> On Mon, May 22, 2017 at
2017 Feb 08
3
Problem ScheduleDAG on PowerPC, X86 works fine.
I don't think that'd work, because it leaves all other backends broken.
AFAICT, your transform is simply not a legal transform, with the way the
ADDC/ADDE opcodes are currently defined, and to do it you really need to
fix the opcode definitions to not involve glue, first.
I also note that your transform doesn't actually trigger at all on this
particular test case on x86, because the
2006 Apr 05
2
can't start chan_capi with asterisk group
Hello,
While upgrading * from 1.0.9 to 1.2.5, I have installed chan-capi-head
and I can't start asterisk under asterisk group
"asterisk -vvvvgc -U asterisk " and "asterisk -vvvvgc -U asterisk -G
dialout" work well but "asterisk -vvvvgc -U asterisk -G asterisk" fail.
I am thinking about a group permission configuration but I have exactly
the same one
2010 Sep 01
0
[LLVMdev] Assertion failure in tablegen: rationale ?
On Sep 1, 2010, at 4:35 AM, Amaury Pouly wrote:
> Hello,
> I was fiddling with TableGen (for a use that has nothing to do with a compiler but it's doesn't matter) and TableGen triggers an assertion failure on this code (I reduced the case to the minimum, it's a parsing bug):
David, can you take a look? This is related to your lisp interpreter :)
-Chris
>
> class
2006 Mar 03
2
Autofill phonebook??
Most softphnes (like Idefisk and X-Lite) have a phonebook. Is there a way I can fill those phonebooks with info from the Asterisk server?
Amaury Rodr?guez
http://liberadospucmm.blogspot.com
http://groups.msn.com/telematicaPUCMM2002
Go OpenSource And Be FREE!!
---------------------------------
Yahoo! Mail
Bring photos to life! New PhotoMail makes sharing a breeze.
2017 Feb 07
2
Problem ScheduleDAG on PowerPC, X86 works fine.
Would it not make sense to refactor the code so those don't use glue rather
than emitting them with glue and then getting rid of it. There are times
when we would like to emit these in separate blocks but can't (presumably
because of the glue).
On Tue, Feb 7, 2017 at 9:15 PM, James Y Knight via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> That's seems really odd that
2015 Nov 27
1
About password expiry
That's a very interesting information. Is there, somewhere, a list of these
computed attributes and their meaning?
Best regards,
mathias
2015-11-26 9:34 GMT+01:00 Andrew Bartlett <abartlet at samba.org>:
> On Thu, 2015-11-26 at 00:40 -0500, Amaury Viera Hernández wrote:
> > Hi every one:
> > I'm using samba4 as domain controller and a I want to check every 1
>
2010 Aug 08
2
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
Hello,
I was trying to interface a custom backend instruction scheduler with llvm
code when I realize something terrible. The scheduling code builds a graph
made up of SUnit * nodes (see ScheduleDAG*.{cpp,h}). These SUnits nodes are
allocated via a std::vector< SUnit >.
This isn't a problem as long as the pointers are taken after the vector is
fully filled and the vector never changes