Difference between revisions of "Voicemail"

From Kolmisoft Wiki
Jump to navigationJump to search
Line 3: Line 3:
This section can be found in '''SETUP - Settings - VoiceMail'''
This section can be found in '''SETUP - Settings - VoiceMail'''


* '''VoiceMail Extension''' - describes by which local extensions local user can dial to retrieve his voicemail (system will ask him to enter his voicemail password which can be set in device's details)
* '''VoiceMail Extension (local)''' - describes by which local extensions local user can dial to retrieve his voicemail (system will ask him to enter his voicemail password which can be set in device's details)


If you want to setup VoiceMail (VM) on different server, then following settings are important:
If you want to setup VoiceMail (VM) on different server, then following settings are important:
Line 9: Line 9:
* '''VoiceMail Server active''' - turns VM server on/off, when on - all VM request will go to distabd VM server, when off - VM will be handled locally on Asterisk
* '''VoiceMail Server active''' - turns VM server on/off, when on - all VM request will go to distabd VM server, when off - VM will be handled locally on Asterisk
* '''VoiceMail Server connection/device''' - describes connection to VM server
* '''VoiceMail Server connection/device''' - describes connection to VM server
* '''VoiceMail Retrieve Extension''' - which extension to dial on distant VM server to retrieve voicemail for some extension
* '''VoiceMail Retrieve Extension (local)''' - which extension to dial on distant VM server to retrieve voicemail for some extension


Example:
Example:
Line 15: Line 15:
* Let's say we have our server on IP 23.45.67.89 connected with SIP to our Asterisk.  
* Let's say we have our server on IP 23.45.67.89 connected with SIP to our Asterisk.  
* We create separe user/device ('''vm_device''') to describe this connection. Device's type is SIP, IP = 23.45.67.89, set other settings also (codecs/etc)
* We create separe user/device ('''vm_device''') to describe this connection. Device's type is SIP, IP = 23.45.67.89, set other settings also (codecs/etc)
* '''VoiceMail Retrieve Extension''' = 999
* '''VoiceMail Retrieve Extension (local)''' = 999




Line 29: Line 29:
===Second action - retrieving VM===
===Second action - retrieving VM===


When user want to retrieve his VM on distant machine he dials '''VoiceMail Extension'''.
When user want to retrieve his VM on distant machine he dials '''VoiceMail Extension (local)'''.


He is redirected like this:
He is redirected like this:

Revision as of 12:55, 6 August 2009

Configuration

This section can be found in SETUP - Settings - VoiceMail

  • VoiceMail Extension (local) - describes by which local extensions local user can dial to retrieve his voicemail (system will ask him to enter his voicemail password which can be set in device's details)

If you want to setup VoiceMail (VM) on different server, then following settings are important:

  • VoiceMail Server active - turns VM server on/off, when on - all VM request will go to distabd VM server, when off - VM will be handled locally on Asterisk
  • VoiceMail Server connection/device - describes connection to VM server
  • VoiceMail Retrieve Extension (local) - which extension to dial on distant VM server to retrieve voicemail for some extension

Example:

  • Let's say we have our server on IP 23.45.67.89 connected with SIP to our Asterisk.
  • We create separe user/device (vm_device) to describe this connection. Device's type is SIP, IP = 23.45.67.89, set other settings also (codecs/etc)
  • VoiceMail Retrieve Extension (local) = 999


First action is when VM is recorded

So now when VM server is ON and user with device 201 get's a VM, call is redirected like this:

Dial(SIP/vm_device/201)

That means server on 23.45.67.89 will receive call to extension 201. Server SHOULD BE configured that way, that it will process VM correctly when it receives such call.

Second action - retrieving VM

When user want to retrieve his VM on distant machine he dials VoiceMail Extension (local).

He is redirected like this:

Dial(SIP/vm_device/999#201)

Again - distant server should know how to process such a request.

Let's say we have distant VM server based on Asterisk.

So in our example it's configuration in /etc/asterisk/extensions.conf should look like this:

[incoming]
# to retrieve VM
exten => _999#.,1,VoiceMailMain(${EXTEN:4})
exten => _999#.,2,Hangup
# to record VM exten => _X.,1,VoiceMail(${EXTEN}) exten => _X.,2,Hangup


FROM field in email

To change Voicemail email sending FROM field edit /etc/asterisk/voicemail.conf file, line:

;fromstring=The Asterisk PBX

to

fromstring=SOME OTHER LINE

And reload Asterisk.