--- layout: page title: "Asterisk Voicemail Server Installation" description: "Instructions on how to integrate your existing Asterisk voicemail within Home Assistant." date: 2017-06-30 18:30 sidebar: true comments: false sharing: true footer: true --- Asterisk Voicemail integration allows Home Assistant to view, listen to and delete voicemails from a Asterisk voicemail mailbox. There are two components to the integration: - A server that runs on the Asterisk PBX host and communicates over an open port. - A client which can request information from the server. Both parts are necessary for Asterisk voicemail integration. The server installation is documented below. The client is [integrated inside Home Assistant](/components/asterisk_mbox)
Currently this module can only monitor a single Asterisk PBX mailbox.
### {% linkable_title Prerequisites %} Before beginning make sure that you have the following: - A functional Asterisk PBX setup which is using the default `voicemail` application. - Both Home Assistant and Asterisk PBX running on the same LAN (or the same server). - The Asterisk PBX server has Python 3.5 or newer installed. - Administrator access on the Asterisk PBX (for python module installation). - Account access to the `asterisk` user that runs the Asterisk PBX software. ### {% linkable_title Installation %} 1. Apply for a Google API key to enable speech-transcription services 2. Install the `asterisk_mbox_server` python module: ```bash $ pip3 install asterisk_mbox_server ``` 3. Create a configuration file for the server As the `asterisk` user create an `asterisk_mbox.ini` file. You can place this in any directory you choose, but the recommended location is `/etc/asterisk/asterisk_mbox.ini`. ```ini [default] host = IP_ADDRESS port = PORT password = PASSWORD mbox_path = PATH_TO_VOICEMAIL_FILES cache_file = PATH_TO_CACHE_FILE google_key = GOOGLE_API_KEY cdr = mysql+pymysql://This assumes that your Asterisk PBX server is using `systemd` for init handling. If not, you will need to create the appropriate configuration files yourself.