/
How to configure Voicemail to Email

How to configure Voicemail to Email

Pre-requisites:

Make sure DB has following columns.

ALTER TABLE `greetings`
ADD COLUMN `file_type` varchar(20) NOT NULL,
ADD COLUMN `file_type` varchar(20) NOT NULL,
ADD COLUMN  `file_data` mediumblob,
ADD COLUMN `file_length` int(11) unsigned DEFAULT NULL;
ALTER TABLE `voicemessages`
ADD COLUMN `file_data` MEDIUMBLOB NULL AFTER `filename`,
ADD COLUMN `file_length` INT(11) UNSIGNED NULL AFTER `file_data`,
ADD COLUMN `file_type` VARCHAR(20) NULL AFTER `file_length`;

 

Events manager minimum version : 2.0.0.52 should be installed:

SMTP settings should be set properly in VSM3 (Settings -> Events manager -> Smtp):

Make sure in VSM3 that Settings -> Events manager -> Jobs -> Voice Mail Notification all settings are filled properly and Job is enabled:

Checklist:

  1. Check AppSettings.config if following keys are present and are setup properly (SERVER_IP and VOIPBOX_IP are often same IP's when websites/voipbox/events manager are on same server):

     <add key="ServerHttpEnabled" value="true"/>
     <add key="ServerHttpListener" value="http://SERVER_IP:8008"/>
    
    
     <!-- VoipBox settings -->
     <add key="VoipBoxHost" value="VOIPBOX_IP"/>
     <add key="VoipBoxPort" value="1803"/>
     <add key="VoipBoxPoolTime" value="30"/>
    
    
     <!-- Voicemail settings -->
     <add key="VoicemailMonitorEnabled" value="true"/>
    
    
  2. Check if FIREWALL for TCP protocol and port 8008 is opened
  3. Check if EMCD/AppSettings.config has following entry and port setup in Events manager for ServerHttpListener match port setup in EMCD:
  <!-- Voipswitch eventmanager for voicemail greetings -->
  <add key="voipswitch_eventsmanager_url" value="http://SERVER_IP:8008"/>


Test case:

  1. Install dialer app
  2. Open dialer and setup e-mail for voicemail notifications in Settings -> Voicemail -> Send voicemail to email 
  3. Make sure in VSM3 that notification for Your client has been added : 

  4. Make a call to yourself (Voicemail should be enabled by default for all accounts) and leave some voicemail. After few minutes You should get e-mail with notification and file.

 

 

 

 

Related content