summaryrefslogtreecommitdiffstats
path: root/README
blob: bd07f7eb2ba782a440ddb710e2347eb2b51dfa09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
acf-freeswitch-vmail is a web interface that works with Freeswitch to implement a single-domain voicemail server. Since it uses mod_xml_curl and mod_event_socket, these must be configured properly in Freeswitch for acf-freeswitch-mail to work.

Be sure to load both modules in autoload_configs/modules.conf.xml

The following content can be used in autoload_configs/xml_curl.conf.xml:

<configuration name="xml_curl.conf" description="cURL XML Gateway">
  <bindings>
    <binding name="voicemaildialplan">
      <param name="gateway-url" value="https://127.0.0.1/cgi-bin/acf/freeswitch-vmail/vmail/processdialplanxml" bindings="dialplan"/>
    </binding>
    <binding name="voicemaildirectory">
      <param name="gateway-url" value="https://127.0.0.1/cgi-bin/acf/freeswitch-vmail/vmail/processdirectoryxml" bindings="directory"/>
    </binding>
  </bindings>
</configuration>