Re: [Asterisk-Users] voicebox

2004-09-15 Thread Gonzalo Servat
On Wed, 2004-09-15 at 16:10 +0200, wrote:
 Hello!
 I have been googling a lot and asked wiki a few times now, but i cant find
 a howto for setting up a voicebox.
 Any link/hint would be great!

I'd hate to refer you to the Wiki but the answer is in there :) (you did mean a 
voicemail box, right?)

   http://www.voip-info.org/tiki-index.php?page=Asterisk%20config%20voicemail.conf

It was a simple search for voicemail in www.voip-info.org so I'm not sure what 
freaky search terms you were using.

HTH.

Regards,
Gonzalo

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
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] voicebox

2004-09-15 Thread Andreas Roedl
Hello!

Am Mittwoch, 15. September 2004 16:35 schrieb Gonzalo Servat:
  I have been googling a lot and asked wiki a few times now, but i cant
  find a howto for setting up a voicebox.

 It was a simple search for voicemail in www.voip-info.org so I'm not sure
 what freaky search terms you were using.

I guess, he used voicebox as search term...


Andi
-- 
- Andreas Roedl- Senior IT Manager
- NATIVE INSTRUMENTS GmbH  - [EMAIL PROTECTED]
- Schlesische Strasse 28   - http://www.native-instruments.de/
- D-10997 Berlin   - Tel. +49-30-61 10 35-430
- Germany  - Fax  +49-30-61 10 35-35
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
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] voicebox

2004-09-15 Thread asterisk
 Hello!

 Am Mittwoch, 15. September 2004 16:35 schrieb Gonzalo Servat:
  I have been googling a lot and asked wiki a few times now, but i
  cant find a howto for setting up a voicebox.

 It was a simple search for voicemail in www.voip-info.org so I'm not
 sure what freaky search terms you were using.

 I guess, he used voicebox as search term...

Yup, i did :)

I found a lot about setting up my voicemail now.
But i couldn`t find much how you collect/call/retreive the recorded mail.
Any ideas/links about that?!

Thanks, Mario


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
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] voicebox

2004-09-15 Thread Andreas Roedl
Hello!

Am Mittwoch, 15. September 2004 17:03 schrieb [EMAIL PROTECTED]:
  I guess, he used voicebox as search term...

 Yup, i did :)

 I found a lot about setting up my voicemail now.
 But i couldn`t find much how you collect/call/retreive the recorded mail.
 Any ideas/links about that?!

http://www.voip-info.org/tiki-index.php?page=Asterisk%20cmd%20VoiceMailMain

The example configuration files of * are pretty helpful too.


Andi
-- 
- Andreas Roedl- Senior IT Manager
- NATIVE INSTRUMENTS GmbH  - [EMAIL PROTECTED]
- Schlesische Strasse 28   - http://www.native-instruments.de/
- D-10997 Berlin   - Tel. +49-30-61 10 35-430
- Germany  - Fax  +49-30-61 10 35-35
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
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] voicebox

2004-09-15 Thread Chris Shaw
 Yup, i did :)

 I found a lot about setting up my voicemail now.
 But i couldn`t find much how you collect/call/retreive the recorded mail.
 Any ideas/links about that?!

 Thanks, Mario

ok, that would be a dialplan issue. You need to do something like this in
your dialplan.

[mycontext] ; The context that your phones live in

exten = 770,1,VoiceMailMain() ; I didn't use _ because it's an exact match.

- OR -

if you have a phone that has a programmable voicemail button this is a neat
trick...

This assumes your mailbox number is the same as your extension number as it
is with most PBXes...

[mycontext]; The context that your phones live in

exten = _770XXX,1,GotoIf($[${EXTEN:3} = ${CALLERIDNUM}]?2:100
exten = _770XXX,2,VoiceMailMain(s${EXTEN:3}); the 's' means skip login
exten = _770XXX,100,Congestion()

This is kinda handy for my household, we use GrandStreams and they have a
programmable VoiceMail button, I simply program the button to dial
770exten and voila!

Some useful reading material...

http://www.voip-info.org/wiki-Asterisk+cmd+voicemailmain
http://www.voip-info.org/wiki-Asterisk+cmd+gotoif
http://www.voip-info.org/wiki-Asterisk+conf+extensions.conf
http://www.voip-info.org/wiki-Asterisk+variables

-Chris

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users