Displaying 20 results from an estimated 79 matches for "extenstion".
Did you mean:
extension
2015 Jul 29
7
Dovecot under Linux with mail-extension and case insesitiv
Hello,
i use doevecot 2.2.18 current. My Problem is with email-extension and
case sensitiv folders.
Example:
user+extenstion will be delivered to the user and subfolder extenstion
so this is okay.
but user+extenstion will not be delivert to the user and exiting
subfolder Extenstion so that is not okay.
The mail will be also delivered in the subfolder extension. The exiting
Folder Extension will not used.
Give's a wa...
2015 Jul 30
1
Dovecot under Linux with mail-extension and case insesitiv
Am 30.07.2015 um 08:52 schrieb Jost Krieger:
> On Wed Jul 29 22:42:32 2015, Sascha wrote:
>
>> i use doevecot 2.2.18 current. My Problem is with email-extension and
>> case sensitiv folders.
>>
>> Example:
>> user+extenstion will be delivered to the user and subfolder extenstion
>> so this is okay.
>> but user+extenstion will not be delivert to the user and exiting
>> subfolder Extenstion so that is not okay.
>> The mail will be also delivered in the subfolder extension. The exiting
>> Fol...
2003 Oct 20
2
Setting a variable in extenstions.conf from the phone keypad.
What I want to do is have one phone number for multiple call bridges
(meetme) so that first users are prompted for their call bridge ID then
their password.
exten => 7001,1,Playback(/var/lib/asterisk/sounds/if-you-know-the-extension-you
want-to-dial-press-that-extension:gsm)
exten => 7001,2,set $foo to whatever was entered on the phones keypad
exten => 7001,3,Dial($foo,60)
Thanks!
2008 Jun 28
0
AMI extenstion state
Hi,
I would like to get the status of asterisk extension with my php program.
*My program as follows,*
<html>
<!--<meta http-equiv="refresh" content="1" />-->
<?php
$fp = fsockopen("xxx.xxx.xxx.xxx", 5038, $errno, $errstr, 30);
if (!$fp)
{
echo "$errstr ($errno)<br />\n";
}
else
{
$out = "Action: Login\r\n";
$out
2014 May 22
2
Queue is not working
Dear All,
I have make a queue in my dailplan and queue is not working properly,prbolem is that all call goes to same extenstion at a time.Because,I use eyeBeam(softphone) and eyeBeam have six line and whenever a call comes into eyeBeam that call reserved by Line 1 suppose to 2nd call will come that call goes to Line 2(same extension used by Line 1) and 3rd call goes to 3rd line and so on.
But i want to whenever 2nd call wi...
2015 Jul 30
0
Dovecot under Linux with mail-extension and case insesitiv
On Wed Jul 29 22:42:32 2015, Sascha wrote:
> i use doevecot 2.2.18 current. My Problem is with email-extension and
> case sensitiv folders.
>
> Example:
> user+extenstion will be delivered to the user and subfolder extenstion
> so this is okay.
> but user+extenstion will not be delivert to the user and exiting
> subfolder Extenstion so that is not okay.
> The mail will be also delivered in the subfolder extension. The exiting
> Folder Extension will n...
2015 Jul 30
0
Dovecot under Linux with mail-extension and case insesitiv
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Wed, 29 Jul 2015, Sascha wrote:
> Example:
> user+extenstion will be delivered to the user and subfolder extenstion
> so this is okay.
> but user+extenstion will not be delivert to the user and exiting
> subfolder Extenstion so that is not okay.
> The mail will be also delivered in the subfolder extension. The exiting
> Folder Extension will n...
2006 Dec 10
2
Display variables
Hi,
How do I display/log the results of variables from extenstions.conf?
I've several macros, where I'd like to use ${CONTEXT} to help in
GotoIf's, but I'm not convinced what value CONTEXT is being set to.
I tried using NoOp(${CONTEXT}) and then set debug on for messages, but
all I see is:
Dec 7 16:09:25 VERBOSE[815] logger.c: -- Exe...
2010 Jul 27
2
How to transfer a call to operator using FAGI asterisk
Hi,
I have xlite client registered with a user. Now i dial an extension say 1500
which
has the dial plan as follows.
exten==>1500,1,AGI("localhost//hello.agi")
So when i dial extenstion 1500 the script hello.agi is invoked which in turn
plays a welcome message. I now want to transfer the call now to operator.
How can i achieve this???Please help me in this regard
Thanks & Regards,
Jahnavi.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http:/...
2015 May 21
2
[LLVMdev] Driver::GetProgramPath is unable to find programs with file extension in name
...the toolchain-provided dirs on Windows fails.
llvm::sys::findProgramByName is aware of extensions via the "PATHEXT"
env variable (it also has ".exe" hardcoded). However, our linker is not
in the CWD or system path, thus search fails.
ScanDirForExecutable should respect file extenstions like
findProgramByName does. One way of doing so is to make the system
dependent llvm::sys::path::access function aware of extensions similarly
to findProgramByName. Or the whole ScanDirForExecutable can be made
system dependent and add an extension on Windows before passing the path
to llvm:...
2008 Oct 20
3
asterisk setup
...lks feel free to
give feedback and advice.
MAIN purpose for usage:
1.exposure to setup an asterisk box
2.get home phone service via VOIP/internet connection.
tasks so far
------------------
1. setup and install asterisk (1.4.x) --> DONE
-currently configuring sip.conf and extenstion.conf files.
-using soft-phone till I find a cheap voip phone(recommendations ??)
2. trying to get a DID number
-alot of search results, not sure which are reliable, most are
charging per month usage and some are charging setup charges
-also looking for DID provider which will interface wi...
2008 Aug 12
3
aligned memory allocation in C
...rsenne Twister algorithm of Matsumoto and
Saito. To get the full power of their code, I want to use their
fonction fill_array32 which need aligned memory. That is to say I need
to use the C function memalign on windows, posix_memalign on linux and
classic malloc on Mac OS. In 'writing R extenstion', they recommand to
use R_alloc function to allocate memory in C.
Does R_alloc return a pointer to aligned memory?
if not how can I do this?
probably no, because R crashes when I succesively R_alloc and
fill_array32 (cf below) on my macbook with R 2.7.1.
Thanks in advance
Kind regards...
2008 Aug 12
3
aligned memory allocation in C
...rsenne Twister algorithm of Matsumoto and
Saito. To get the full power of their code, I want to use their
fonction fill_array32 which need aligned memory. That is to say I need
to use the C function memalign on windows, posix_memalign on linux and
classic malloc on Mac OS. In 'writing R extenstion', they recommand to
use R_alloc function to allocate memory in C.
Does R_alloc return a pointer to aligned memory?
if not how can I do this?
probably no, because R crashes when I succesively R_alloc and
fill_array32 (cf below) on my macbook with R 2.7.1.
Thanks in advance
Kind regards...
2004 Sep 20
3
Question about the 'fax' extension
I was looking at the wiki on 'Asterisk as a voice/fax switch'
And was wondering if the extension 'fax' is global to extensions.conf
Or just to the context it is in?
The reason I ask, is that my PRI might have 5 channels that will be
scrictly
Fax, and to be functional, I need multiple 'fax' extensions in my
various
Contexts.
Hope that makes sense,
Paul Seniuk
2004 Jul 17
1
overlapping extensions
I am about to setup an asterisk pbx for 2 customers and would like to
use a single box. Since I don't want to use 1xx for one and 2xx for the
other customer, is there a way to setup overlapping extenstions? If not
anybody can give me an example of how a similar situation like this
was solved?
thanks
micko
2005 Feb 09
1
Wait for Digits
Hi all
I'm being really stupid today.
i simply want asterisk to answer a incomming call, then wait for digits dialed. and then dial that extenstions
but i keep on getting: WARNING[3314]: pbx.c:2017 ast_pbx_run: Invalid extension '5', but no rule 'i' in context 'zap-in'
my config:
exten => 0,1,answer()
exten => 0,2,digittimeout,5
exten => 0,3,ResponseTimeout,10
exten => 0,4,waitexten
any help appreciated...
2006 Dec 02
1
Linksys PAP2t-NA and Asterisk
I've got a PAP2 that I've got working with asterisk. At the moment, its
configured so that when a phone is picked up on it, it connects to Asterisk.
My hope is that I can let Asteirsk handle the entire dialplan, including
dial tone generation. What would my context in extenstions.conf look like
for this sort of dialing. More accurately, how can I get Asterisk to
generate the dial tone on the pap2's line on connect (holding the dial tone
past the initial 9, dropping it with any other key)?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: h...
2009 Jun 08
1
Achoring MEdia
I have 2 hosts that Asterisk is in between of...and for both I have canreinvite=no - but asterisk still sends re-invite to get out of the media path.
?
Proxy 1 --> Asterisk--> Proxy 2
?
I want asterisk to anshor media..
?
In extenstions.conf I have an entry to send calls for say 5551000 to proxy 2 and if? I suffix that entry with ||t , asterisk does anchor media....
?
However, it is rejecting the REFER sip method by sending a 6xx message....proxy 2 is trying to send the call back out as a transfer and hence it sends a REFER....ho...
2010 Sep 08
1
Development environment for R extentions on Windows
...as the subject
implies. I've downloaded and installed Rtools211.exe (will upgrade
later when necessary) and I've also downloaded and installed mingw
with the help of mingw-get.exe.
I come from a UNIX development background, so I'm at the bash shell
prompt for just about every step in R extenstion development. Question
is what is an appropriate environment for Windows development. What
shell do you use? Do you use cmd.exe with the PATH variable set up by
Rtools? Do you use the sh.exe that comes with Rtools? I've found the
bash shell from MinGW to be a pretty close equivalent to bash on U...
2003 Sep 19
1
built in dial functions?
...x100p incoming fx
lines, MoH, etc. Everything attempted to date is now working fine.
However, testing the above list tends to suggest they don't work (or
at least they don't work as I would expect them to.)
Example, from a C7960 I dial *78# and hang up. From another sip phone
I Dial that extenstion and the 7960 rings. I expected the call to roll
over to voicemail or something. Am I missing something here, or are
these functions not expected to work on a per-extension basis?
I was assuming (probably incorrectly) these functions were custom
calling features implemented within * for all extens...