[asterisk-users] Asterisk 12 and RFC4662 (Resource Lists)

2013-10-16 Thread Olivier
Hi,

Many SIP phones implement list-based Notify-Subscribe mechanism with the
phone may request to be notified of status changes from a whole list of
resources.

Thanks to PJSIP inclusion in Asterisk 12, I'm wondering how a Resource List
Server could be implemented with Asterisk 12.

1. I couldn't see RFC4662 itself is implemented in PJSIP. Is this correct ?

2. Which architecture regarding resource lists would best match Asterisk
current and future feature set ?
A. In internal Asterisk feature ?
B. An external application which would subscribe to each individual
resource on one hand, and would serve list-based requests on the other hand
?
C. Something else ?

3. Has someone already dealt with list-based Notify-Subscribes outside
Asterisk scope ? How would you then qualify this experiment ?

Regards
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

[asterisk-users] Queues and RingInUse

2013-10-16 Thread Magnus Löfqvist
Hi,

I have some problems with a Queue and state interface.

In the queue we have 7 deskphones and 7 cordless.
Every user have one deskphone and one cordless phone.

I have set up every user with hints, eg:

exten = 802,hint,SIP/9144-802SIP/9144-902
exten = 902,hint,SIP/9144-902SIP/9144-802

Queue_members:
Queue_name Interface
state_interface
9144-vmi   SIP/9144-802 
hint:802@hints
9144-vmi   SIP/9144-902 
hint:902@hints

802 = is a cordless phone
902 = is a deskphone
Both are in use by same user.

To the problem, when we have RingInUse = 0, we only get calls on one of the 
devices (because the other one gets in RINGING state).
If the user is not on phone we want both phones to call, but if the user is in 
phone the other phone should not call.

Any idées...


Med vänlig hälsning / Best regards
Magnus Löfqvist

VMI Internet Services AB
Hantverksvägen 15
760 40 VÄDDÖ, SWEDEN
Tel +46 176 20 89 00 (02)
Fax +46 176 20 89 19
E-mail: m...@vmi.se
Homepage: www.vmi.sehttp://www.vmi.se/
Facebook: www.vmi.se/facebookhttp://www.vmi.se/facebook

*** VMI E-mail disclaimer ***
The information in this e-mail is confidential and may be legally privileged. 
It is intended solely for the addressee. Access to this email by anyone else is 
unauthorized. If you are not the intended recipient, any disclosure, copying, 
distribution or any action taken or omitted to be taken in reliance on it, is 
prohibited and may be unlawful. Any opinions or advice contained in this e-mail 
are subject to the terms and conditions expressed in the VMI General terms and 
conditions

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

[asterisk-users] How to disable Internal call ?

2013-10-16 Thread akhilesh chand
Dear All,

I want to disable internal call facility.Means agent(4002) does not make
call to agent(4003) or other extensions.


Regards
Akhilesh
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] How to disable Internal call ?

2013-10-16 Thread Salman Zafar
Hi,
In your dial-plan do something like this

exten = _400X,1, Noop(Agent to Agent not allowed)
exten = _400X,2,Hangup()

where 400X is the pattern of your agents.

There can be multiple ways of doing it, this is step 1.


On Wed, Oct 16, 2013 at 2:36 PM, akhilesh chand
omakhileshch...@gmail.comwrote:

 Dear All,

 I want to disable internal call facility.Means agent(4002) does not make
 call to agent(4003) or other extensions.


 Regards
 Akhilesh

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users




-- 
Regards

M. Salman Zafar
VoIP Professional
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] How to disable Internal call ?

2013-10-16 Thread A J Stiles
On Wednesday 16 October 2013, akhilesh chand wrote:
 Dear All,
 
 I want to disable internal call facility.Means agent(4002) does not make
 call to agent(4003) or other extensions.

Just configure extension 4002 to be in a context which doesn't have an 
extension matching 4003.  (And make sure you haven't included a context in it 
with that extension.)

-- 
AJS

Answers come *after* questions.

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] Use Asterisk Realtime Extensions with Switch-statement and include-statement

2013-10-16 Thread Jonas Kellens

Hello,

Is it possible to use the switch = statement in extensions.conf 
(http://www.voip-info.org/wiki/view/Asterisk+RealTime+Extensions) to 
point to a database and in the database use the include-statement ?


In extconfig.conf I would have :
extensions = mysql,asterisk,extensions_table

In extensions.conf I would then have :

[includecontext]
switch = Realtime/includecontext@realtime_ext


in database :

INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext', 
'include', =, 'context1', '');
INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext', 
'include', =, 'context2', '');
INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext', 
'include', =, 'context3', '');




This would then replace the following in extensions.conf :

[includecontext]
include = context1
include = context2
include = context3



Possible or not ?



Thanks,
Jonas Kellens
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] How to disable Internal call ?

2013-10-16 Thread Mitja Kaučič
CLONE!!!

From: asterisk-users-boun...@lists.digium.com 
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of akhilesh chand
Sent: Wednesday, October 16, 2013 11:37 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] How to disable Internal call ?

Dear All,

I want to disable internal call facility.Means agent(4002) does not make call 
to agent(4003) or other extensions.

Regards
Akhilesh


Posredovani dokument je namenjen izključno prejemniku (ali osebi, odgovorni za 
prenos tega sporočila prejemniku) ter osebam, ki so upravičene poznati v 
dokumentu vsebovane podatke na podlagi svojih pristojnosti. Posredovani 
dokument je dovoljeno uporabljati le za med pošiljateljem in prejemnikom 
dogovorjeni namen. Drugačno posredovanje, razmnoževanje oziroma uporaba 
dokumenta ni dovoljena. Dokument so vsi podatki v kakršnikoli obliki, ki jih 
vsebuje ta elektronska pošta. Če ste prejeli to sporočilo zaradi napake v 
naslovu ali pri prenosu sporočila, prosimo, da o tem obvestite pošiljatelja 
elektronskega sporočila.

Privileged/confidential information may be contained in this message. This 
communication is confidential and intended solely for the addressee(s). 
Unauthorized distribution, modification or disclosure of the contents may be 
unlawful. If you receive this in error, please notify the sender and delete it 
from your system. If you are not the addressee indicated in this message (or 
responsible for delivery of the message to such person), you may not copy or 
deliver this message to anyone.
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Use Asterisk Realtime Extensions with Switch-statement and include-statement

2013-10-16 Thread Ishfaq Malik
That won't work. The includes have to be in the conf file


On 16 October 2013 11:56, Jonas Kellens jonas.kell...@telenet.be wrote:

  Hello,

 Is it possible to use the switch = statement in extensions.conf (
 http://www.voip-info.org/wiki/view/Asterisk+RealTime+Extensions) to point
 to a database and in the database use the include-statement ?

 In extconfig.conf I would have :
 extensions = mysql,asterisk,extensions_table

 In extensions.conf I would then have :

 [includecontext]
 switch = Realtime/includecontext@realtime_ext


 in database :

 INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext',
 'include', =, 'context1', '');
 INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext',
 'include', =, 'context2', '');
 INSERT INTO `my_extensions_table` VALUES (NULL, 'includecontext',
 'include', =, 'context3', '');



 This would then replace the following in extensions.conf :

 [includecontext]
 include = context1
 include = context2
 include = context3



 Possible or not ?



 Thanks,
 Jonas Kellens

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users




-- 

Ishfaq Malik
Department: VOIP Support
Company: Packnet Limited
t: +44 (0)845 004 4994
f: +44 (0)161 660 9825
e: i...@pack-net.co.uk
w: http://www.pack-net.co.uk

Registered Address: PACKNET LIMITED, Duplex 2, Ducie House
37 Ducie Street
Manchester, M1 2JW
COMPANY REG NO. 04920552
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] What linux distro most popular for Asterisk

2013-10-16 Thread Mauricio Tavares
On Wed, Oct 16, 2013 at 9:48 AM, John Doe boogieman2...@gmail.com wrote:
 I've had great success with centos. Stand alone, VM, or asterisk Distro.

 On Oct 16, 2013 12:58 AM, Michelle Dupuis mdup...@ocg.ca wrote:

 Is there a recent survey of that Linux distro and version people are using
 for the Asterisk installations?  I recall seeing a pie chart over a year ago
 (I think on a wiki but I can't find it again)also hoping for something
 more current.

 I suspect RH5 and RH6 are most popular...but I'm looking for facts

  I do believe AsteriskNow uses Centos

 --

_
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What linux distro most popular for Asterisk

2013-10-16 Thread John Doe
I've had great success with centos. Stand alone, VM, or asterisk Distro.
On Oct 16, 2013 12:58 AM, Michelle Dupuis mdup...@ocg.ca wrote:

  Is there a recent survey of that Linux distro and version people are
 using for the Asterisk installations?  I recall seeing a pie chart over a
 year ago (I think on a wiki but I can't find it again)also hoping for
 something more current.

 I suspect RH5 and RH6 are most popular...but I'm looking for facts

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users