Transfer to Voicemail

I have FOP2 installed on a FreePBX 2.11 system. Everything seems to be working great so far, but I'm having an issue trying to figure out the "Transfer to Voicemail" button up top. I've figured out that once I'm on a call, I can transfer that call to another users voicemail. but, instead of going straight to their voicemail, it rings the destination like a normal call until eventually going to voicemail. Also, is it possible to catch an incoming call and send it to voicemail without actually picking up? Any help is appreciated.

Comments

  • The latest freepbx update moved the vm_prefix config from a global variable to a feature code, that change broke the autoconfig script from fop2 to find the voicemail prefix. You can either edit your copy of autoconfig-buttons-freepbx.sh and force the VMPREFIX by removing the long line that starts with VMPREFIX=`` and change it to
    VMPREFIX='*'
    

    Or you can update your autoconfig script with this one:

    http://download.fop2.com/autoconfig-buttons-freepbx.txt

    you will have to rename it to .sh, and give execute permissions to it... something like this on your server will do:
    cd /usr/local/fop2
    wget http://download.fop2.com/autoconfig-buttons-freepbx.txt
    mv autoconfig-buttons-freepbx.txt autoconfig-buttons-freepbx.sh
    chmod a+x autoconfig-buttons-freepbx.sh
    service fop2 restart
    

    Best regards,
  • That did it. Thanks!

    Robert
Sign In or Register to comment.