forked from Mirrors/freeswitch
3410c58a2e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10776 d0543943-73ff-0310-b7d9-9358b9ac24b2
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
This directory contains software used for interfacing the
|
|
FreeSWITCH voicemail application with the AT&T (aka Lucent
|
|
aka Avaya) System 25 PBX. It's possible that System 75
|
|
and Definity PBXs may also work.
|
|
|
|
s25vmail.js goes into the FreeSWITCH scripts directory.
|
|
s25vmail_mwi.c should be compiled and the resulting binary
|
|
put into the FreeSWITCH bin directory. Modify the FreeSWITCH
|
|
rc.d script to also start / stop s25vmail_mwi.
|
|
|
|
Configuration fragments look something like:
|
|
|
|
conf/openzap.conf:
|
|
|
|
[span zt]
|
|
; A204DX
|
|
name => OpenZAP
|
|
dtmf_hangup = ##99
|
|
|
|
number => 551
|
|
fxo-channel => 49
|
|
|
|
number => 552
|
|
fxo-channel => 50
|
|
|
|
number => 553
|
|
fxo-channel => 51
|
|
|
|
number => 554
|
|
fxo-channel => 52
|
|
|
|
conf/dialplan/default.xml
|
|
|
|
<extension name="system25_vmail">
|
|
<condition field="destination_number" expression="^(55[1-4])$">
|
|
<action application="javascript" data="s25vmail.js"/>
|
|
</condition>
|
|
</extension>
|
|
|
|
Tested using FreeSWITCH SVN 10428 running on FreeBSD 6.3
|
|
with a Sangoma A200DX Analog Series w/ Echo Cancellation
|
|
ports card containing 2 FXO modules.
|