Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Rich Adamson

>How can I retrieve those voicemails using my ip phone? and how 
> will i confiugre it on asterisk?
> 
> Please help I'm very new in asterisk.

Add something like this in your extensions.conf file:

; Voicemail access (prompts for exten and password)
exten => 3998,1,Wait,1
exten => 3998,2,VoicemailMain
exten => 3998,3,Hangup

; Voicemail access (does not prompt for anything)
exten => 3999,1,Wait,1
exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
exten => 3999,3,Hangup



___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Ryan Pagquil

Hi Rich,
   Does the user need to dial his extension just to retrieve the 
voicemails or he will dial other number to access those voicemails?
In the config does it mean that when a user dial 3998 he will be able to 
retrieve those voicemails? So it means that every users must have a 
mailbox number for which they will retrive their voicemails? I'm really 
a newbie. =)


Thanks fo the help,
--ryan

Rich Adamson wrote:

  How can I retrieve those voicemails using my ip phone? and how 
will i confiugre it on asterisk?


Please help I'm very new in asterisk.
   



Add something like this in your extensions.conf file:

; Voicemail access (prompts for exten and password)
exten => 3998,1,Wait,1
exten => 3998,2,VoicemailMain
exten => 3998,3,Hangup

; Voicemail access (does not prompt for anything)
exten => 3999,1,Wait,1
exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
exten => 3999,3,Hangup



___
--Bandwidth and Colocation sponsored by Easynews.com --

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


 




--
Ryan Pagquil
Infodyne Inc. - PhilOnline.com
3603 Antel Global Corporate Center
Doña Julia Vargas Ave.
Ortigas Center Pasig City
Tel: 687-0715
Web: www.philonline.com

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Rudolf Ladyzhenskii

Hi,

You need a single extension to call voicemail. I am using 100.
extensions.conf
exten =>100,1,VoiceMailMain(${CALLERIDNUM})
exten =>100,2,Hangup()

Now, if you simply call VoiceMailMain() without parameters, voicemail system 
will ask you to enter the number of mailbox you want to access. This is 
useful if you want to read any mailbox from any phone.
However, if you specify a parameter like I did, voicemail will automatically 
go into mailbox for the extension you have called from. There is a little 
trick to get it work, though. Normally caller ID is a name like "Joe Smith"
You will have to specify caller ID per user like that: (sip.conf for 
example)

[user1]
callerid="Joe Smith" <101>

This will present asterisk with a way to get both name and extension number.

Rudolf

- Original Message - 
From: "Ryan Pagquil" <[EMAIL PROTECTED]>
To: "Asterisk Users Mailing List - Non-Commercial Discussion" 


Sent: Wednesday, September 21, 2005 8:58 PM
Subject: Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?



Hi Rich,
   Does the user need to dial his extension just to retrieve the 
voicemails or he will dial other number to access those voicemails?
In the config does it mean that when a user dial 3998 he will be able to 
retrieve those voicemails? So it means that every users must have a 
mailbox number for which they will retrive their voicemails? I'm really a 
newbie. =)


Thanks fo the help,
--ryan

Rich Adamson wrote:

  How can I retrieve those voicemails using my ip phone? and how 
will i confiugre it on asterisk?


Please help I'm very new in asterisk.



Add something like this in your extensions.conf file:

; Voicemail access (prompts for exten and password)
exten => 3998,1,Wait,1
exten => 3998,2,VoicemailMain
exten => 3998,3,Hangup

; Voicemail access (does not prompt for anything)
exten => 3999,1,Wait,1
exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
exten => 3999,3,Hangup



___
--Bandwidth and Colocation sponsored by Easynews.com --

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






--
Ryan Pagquil
Infodyne Inc. - PhilOnline.com
3603 Antel Global Corporate Center
Doña Julia Vargas Ave.
Ortigas Center Pasig City
Tel: 687-0715
Web: www.philonline.com

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Pisac
exten => 3999,2,VoicemailMain(s${CALLERIDNUM}) 
if you extension is 104, then it will be converted inside asterisk to:
exten => 3999,2,VoicemailMain(s104)
 
and that will give to you access to mailbox 104 without password prompt (s=skip) and you can retreive messages. 
 
${CALLERIDNUM} is extension (caller id) number of caller, and caller gets his own mailbox. 
___
--Bandwidth and Colocation sponsored by Easynews.com --

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

Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Rich Adamson

> Does the user need to dial his extension just to retrieve the 
> voicemails or he will dial other number to access those voicemails?

If a user dials 3998, they will be prompted to enter their mailbox
number (extension) and password. If they dial 3999, they will not be
prompted as the callerid parameter passes the extension number to the
voicemail app.

> In the config does it mean that when a user dial 3998 he will be able to 
> retrieve those voicemails? So it means that every users must have a 
> mailbox number for which they will retrive their voicemails? I'm really 
> a newbie. =)

Every valid extension in your extensions.conf file that expects to have
voicemail must have a voicemail box entered in voicemail.conf. So, if you
define extension 299 in extensions.conf, then define 299 in voicemail.conf.

If that user picks up their phone and dials 3999, he will be placed
directly into his voicemail box without any prompts.


> Thanks fo the help,
> --ryan
> 
> Rich Adamson wrote:
> 
> >>   How can I retrieve those voicemails using my ip phone? and how 
> >>will i confiugre it on asterisk?
> >>
> >>Please help I'm very new in asterisk.
> >>
> >>
> >
> >Add something like this in your extensions.conf file:
> >
> >; Voicemail access (prompts for exten and password)
> >exten => 3998,1,Wait,1
> >exten => 3998,2,VoicemailMain
> >exten => 3998,3,Hangup
> >
> >; Voicemail access (does not prompt for anything)
> >exten => 3999,1,Wait,1
> >exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
> >exten => 3999,3,Hangup
> >
> >
> >
> >___
> >--Bandwidth and Colocation sponsored by Easynews.com --
> >
> >Asterisk-Users mailing list
> >Asterisk-Users@lists.digium.com
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> >To UNSUBSCRIBE or update options visit:
> >   http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
> >  
> >
> 
> 
> -- 
> Ryan Pagquil
> Infodyne Inc. - PhilOnline.com
> 3603 Antel Global Corporate Center
> Doña Julia Vargas Ave.
> Ortigas Center Pasig City
> Tel: 687-0715
> Web: www.philonline.com
> 
> ___
> --Bandwidth and Colocation sponsored by Easynews.com --
> 
> Asterisk-Users mailing list
> Asterisk-Users@lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 

---End of Original Message-


___
--Bandwidth and Colocation sponsored by Easynews.com --

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


RE: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Min Qiu
While on the subject, how the password works?

I failed to access the voicemail by using the demo config.
Password 4242 does not seem to work.  I'm using softphone
Idefisk v1.24.

Thanks,

Min

> -Original Message-
> From: Rich Adamson [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, September 21, 2005 10:04 AM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: Re: [Asterisk-Users] How to retrieve voicemail from 
> an IP phone?
> 
> 
> 
> > Does the user need to dial his extension just to retrieve the 
> > voicemails or he will dial other number to access those voicemails?
> 
> If a user dials 3998, they will be prompted to enter their mailbox
> number (extension) and password. If they dial 3999, they will not be
> prompted as the callerid parameter passes the extension number to the
> voicemail app.
> 
> > In the config does it mean that when a user dial 3998 he 
> will be able to 
> > retrieve those voicemails? So it means that every users must have a 
> > mailbox number for which they will retrive their 
> voicemails? I'm really 
> > a newbie. =)
> 
> Every valid extension in your extensions.conf file that 
> expects to have
> voicemail must have a voicemail box entered in 
> voicemail.conf. So, if you
> define extension 299 in extensions.conf, then define 299 in 
> voicemail.conf.
> 
> If that user picks up their phone and dials 3999, he will be placed
> directly into his voicemail box without any prompts.
> 
> 
> > Thanks fo the help,
> > --ryan
> > 
> > Rich Adamson wrote:
> > 
> > >>   How can I retrieve those voicemails using my ip 
> phone? and how 
> > >>will i confiugre it on asterisk?
> > >>
> > >>Please help I'm very new in asterisk.
> > >>
> > >>
> > >
> > >Add something like this in your extensions.conf file:
> > >
> > >; Voicemail access (prompts for exten and password)
> > >exten => 3998,1,Wait,1
> > >exten => 3998,2,VoicemailMain
> > >exten => 3998,3,Hangup
> > >
> > >; Voicemail access (does not prompt for anything)
> > >exten => 3999,1,Wait,1
> > >exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
> > >exten => 3999,3,Hangup
> > >
> > >
> > >
> > >___
> > >--Bandwidth and Colocation sponsored by Easynews.com --
> > >
> > >Asterisk-Users mailing list
> > >Asterisk-Users@lists.digium.com
> > >http://lists.digium.com/mailman/listinfo/asterisk-users
> > >To UNSUBSCRIBE or update options visit:
> > >   http://lists.digium.com/mailman/listinfo/asterisk-users
> > >
> > >
> > >  
> > >
> > 
> > 
> > -- 
> > Ryan Pagquil
> > Infodyne Inc. - PhilOnline.com
> > 3603 Antel Global Corporate Center
> > Doña Julia Vargas Ave.
> > Ortigas Center Pasig City
> > Tel: 687-0715
> > Web: www.philonline.com
> > 
> > ___
> > --Bandwidth and Colocation sponsored by Easynews.com --
> > 
> > Asterisk-Users mailing list
> > Asterisk-Users@lists.digium.com
> > http://lists.digium.com/mailman/listinfo/asterisk-users
> > To UNSUBSCRIBE or update options visit:
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> > 
> 
> ---End of Original Message-
> 
> 
> ___
> --Bandwidth and Colocation sponsored by Easynews.com --
> 
> Asterisk-Users mailing list
> Asterisk-Users@lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


RE: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread John Crowhurst

On Wed, September 21, 2005 20:23, Min Qiu said:
> While on the subject, how the password works?
>
> I failed to access the voicemail by using the demo config.
> Password 4242 does not seem to work.  I'm using softphone
> Idefisk v1.24.

The extension has to exist in voicemail.conf, and the second field is the
password, for example:

1234 => 4567,Name

The mailbox for extension 1234 has the password of 4567

--
John
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


RE: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Min Qiu
Yes, the configbits are exist and correct (see below).  I was 
wondering if the softphone could make difference.  That is the 
digits were send too fast/too slow for the *'s voicemail.  Any
one here able to use Idefisk check voicemail?  Can you share
your configuration?

Thank you,

Min

[default]
...
1234 => 4242,Example Mailbox,[EMAIL PROTECTED]
...
[other]
;The intro can be customized on a per-context basis
;directoryintro=dir-company2
1234 => 5678,Company2 User,[EMAIL PROTECTED]



> -Original Message-
> From: John Crowhurst [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, September 21, 2005 4:02 PM
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> Subject: RE: [Asterisk-Users] How to retrieve voicemail from 
> an IP phone?
> 
> 
> 
> On Wed, September 21, 2005 20:23, Min Qiu said:
> > While on the subject, how the password works?
> >
> > I failed to access the voicemail by using the demo config.
> > Password 4242 does not seem to work.  I'm using softphone
> > Idefisk v1.24.
> 
> The extension has to exist in voicemail.conf, and the second 
> field is the
> password, for example:
> 
> 1234 => 4567,Name
> 
> The mailbox for extension 1234 has the password of 4567
> 
> --
> John
> ___
> --Bandwidth and Colocation sponsored by Easynews.com --
> 
> Asterisk-Users mailing list
> Asterisk-Users@lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


RE: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Min Qiu
Ok, I tried xlite (SIP softphone) and I could get into the
voicemail now.  However, I got busy signal when I called 
any Idefisk softphone from xlite.  From Idefisk calling xlite 
seems fine.

Min


> -Original Message-
> From: Min Qiu 
> Sent: Wednesday, September 21, 2005 4:37 PM
> To: [EMAIL PROTECTED]; Asterisk Users Mailing List - 
> Non-Commercial Discussion
> Subject: RE: [Asterisk-Users] How to retrieve voicemail from 
> an IP phone?
> 
> 
> Yes, the configbits are exist and correct (see below).  I was 
> wondering if the softphone could make difference.  That is the 
> digits were send too fast/too slow for the *'s voicemail.  Any
> one here able to use Idefisk check voicemail?  Can you share
> your configuration?
> 
> Thank you,
> 
> Min
> 
> [default]
> ...
> 1234 => 4242,Example Mailbox,[EMAIL PROTECTED]
> ...
> [other]
> ;The intro can be customized on a per-context basis
> ;directoryintro=dir-company2
> 1234 => 5678,Company2 User,[EMAIL PROTECTED]
> 
> 
> 
> > -Original Message-
> > From: John Crowhurst [mailto:[EMAIL PROTECTED] 
> > Sent: Wednesday, September 21, 2005 4:02 PM
> > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > Subject: RE: [Asterisk-Users] How to retrieve voicemail from 
> > an IP phone?
> > 
> > 
> > 
> > On Wed, September 21, 2005 20:23, Min Qiu said:
> > > While on the subject, how the password works?
> > >
> > > I failed to access the voicemail by using the demo config.
> > > Password 4242 does not seem to work.  I'm using softphone
> > > Idefisk v1.24.
> > 
> > The extension has to exist in voicemail.conf, and the second 
> > field is the
> > password, for example:
> > 
> > 1234 => 4567,Name
> > 
> > The mailbox for extension 1234 has the password of 4567
> > 
> > --
> > John
> > ___
> > --Bandwidth and Colocation sponsored by Easynews.com --
> > 
> > Asterisk-Users mailing list
> > Asterisk-Users@lists.digium.com
> > http://lists.digium.com/mailman/listinfo/asterisk-users
> > To UNSUBSCRIBE or update options visit:
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> > 
> ___
> --Bandwidth and Colocation sponsored by Easynews.com --
> 
> Asterisk-Users mailing list
> Asterisk-Users@lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread Ryan Pagquil

Hi,
  I already made working.

Thanks for the help,
Ryan

Rudolf Ladyzhenskii wrote:


Hi,

You need a single extension to call voicemail. I am using 100.
extensions.conf
exten =>100,1,VoiceMailMain(${CALLERIDNUM})
exten =>100,2,Hangup()

Now, if you simply call VoiceMailMain() without parameters, voicemail 
system will ask you to enter the number of mailbox you want to access. 
This is useful if you want to read any mailbox from any phone.
However, if you specify a parameter like I did, voicemail will 
automatically go into mailbox for the extension you have called from. 
There is a little trick to get it work, though. Normally caller ID is 
a name like "Joe Smith"
You will have to specify caller ID per user like that: (sip.conf for 
example)

[user1]
callerid="Joe Smith" <101>

This will present asterisk with a way to get both name and extension 
number.


Rudolf

- Original Message - From: "Ryan Pagquil" 
<[EMAIL PROTECTED]>
To: "Asterisk Users Mailing List - Non-Commercial Discussion" 


Sent: Wednesday, September 21, 2005 8:58 PM
Subject: Re: [Asterisk-Users] How to retrieve voicemail from an IP phone?



Hi Rich,
   Does the user need to dial his extension just to retrieve the 
voicemails or he will dial other number to access those voicemails?
In the config does it mean that when a user dial 3998 he will be able 
to retrieve those voicemails? So it means that every users must have 
a mailbox number for which they will retrive their voicemails? I'm 
really a newbie. =)


Thanks fo the help,
--ryan

Rich Adamson wrote:

  How can I retrieve those voicemails using my ip phone? and 
how will i confiugre it on asterisk?


Please help I'm very new in asterisk.



Add something like this in your extensions.conf file:

; Voicemail access (prompts for exten and password)
exten => 3998,1,Wait,1
exten => 3998,2,VoicemailMain
exten => 3998,3,Hangup

; Voicemail access (does not prompt for anything)
exten => 3999,1,Wait,1
exten => 3999,2,VoicemailMain(s${CALLERIDNUM})
exten => 3999,3,Hangup



___
--Bandwidth and Colocation sponsored by Easynews.com --

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






--
Ryan Pagquil
Infodyne Inc. - PhilOnline.com
3603 Antel Global Corporate Center
Doña Julia Vargas Ave.
Ortigas Center Pasig City
Tel: 687-0715
Web: www.philonline.com

___
--Bandwidth and Colocation sponsored by Easynews.com --

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



___
--Bandwidth and Colocation sponsored by Easynews.com --

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





--
Ryan Pagquil
Infodyne Inc. - PhilOnline.com
3603 Antel Global Corporate Center
Doña Julia Vargas Ave.
Ortigas Center Pasig City
Tel: 687-0715
Web: www.philonline.com

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


RE: [Asterisk-Users] How to retrieve voicemail from an IP phone?

2005-09-21 Thread brett
On 9/21/2005, "Min Qiu" <[EMAIL PROTECTED]> wrote:

> Ok, I tried xlite (SIP softphone) and I could get into the
> voicemail now.  However, I got busy signal when I called 
> any Idefisk softphone from xlite.  From Idefisk calling xlite 
> seems fine.
>
> Min

Min - make sure your DTMF is working on the Idefisk softphone.
You should be able to get to VM by calling the VM number, when
it asks for Mailbox enter the number followed by the # and then
the password followed by the # - it should immediately go to
you mailbox - if it says Mailbox - waits 10 seconds and then says
password and waits 10 more seconds - then your DTMF is not being
recognized by the system.  You have to fix that first.

Otherwise - you have the dialplan set up to accept unregistered
calls from the Idefisk phones. That's probably why you can't call
them and why they don't get to the VM.  If Idefisk is running sip
they can make calls because they send a SIP setup with the number
in it - but then can't pass DTMF.

Brett
___
--Bandwidth and Colocation sponsored by Easynews.com --

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