Page 20 of 20 FirstFirst ... 10181920
Results 191 to 195 of 195

Thread: Asterisk PBX Integration Zimlet (new)

  1. #191
    50asm is offline Active Member
    Join Date
    Dec 2011
    Posts
    29
    Rep Power
    2

    Default Version 7 ZCS

    Has anyone been able to make this Zimlet work with version 7 I am not having much luck making it work.

    If this one is not compatible; does anyone know of one that works?

    Thanks in advance!

  2. #192
    gracedman is offline Special Member
    Join Date
    May 2009
    Posts
    134
    Rep Power
    5

    Default

    See comment #175. It's still not really fixed but that does provide a workaround - John
    www.spiritualoutreach.com
    Making Christianity intelligible to secular society

  3. #193
    pmcphedran is offline Starter Member
    Join Date
    Nov 2012
    Posts
    2
    Rep Power
    1

    Default

    Hi,

    I've followed all the suggestions in this thread and still no love for Asterisk. I must be missing something! When I click on a number, it launches a message box:
    zimasterisk.png

    As you can see there is no message. I thought it might be the same as a posting regarding a bad uname/pword in Asterisk, but I have checked that and it seems OK. I am using FreePBX and manually edited the manager.conf file to add the user and I have confirmed the data matches. I wasn't sure if I needed to restart Asterisk, so I did any way.

    My Zimbra environment is: Release 7.1.4_GA_2555.RHEL6_64_20120105094542 CentOSUNKNOWN_64 FOSS edition.
    My ch_bnc_asterisk_config.xml is:
    <zimletConfig name="ch_bnc_asterisk" version="0.71">
    <!--
    This settings can be global or local, which means per host. Host specific settings are overridden by host specific settings!
    -->
    <global>
    <property name="astManagerIp">HOSTNAME</property>
    <property name="astManagerPort">5038</property>
    <property name="astManagerUser">zimbra</property>
    <property name="astManagerSecret">PASSWORD</property>
    <!--
    Timeout for asterisk actions in [ms]
    -->
    <property name="astActionTimeout">8000</property>
    <!--
    Don't do Action ExtensionState before doing other actions. This may be useful because
    the ExtensionState action does need hints in dialplan to work correctly. But you will have less accurate
    warning messages.
    -->
    <property name="astNoExtenCheck">true</property>
    <!--
    Dialplan context used for dialing
    -->
    <property name="astDialContext">from-internal</property>
    <!--
    Asterisk channel type to use. E.g. 'SIP', 'ZAP' etc.
    Action will use ${astChannelType}/${srcPhone}
    srcPhone is part of user config
    -->
    <property name="astDialChannelType">SIP</property>
    <!--
    srcPhonePrefix is used to compose the caller like
    ${srcPhonePrefix}${srcPhone} where ${srcPhone} is
    user configurable local number
    -->
    <property name="srcPhonePrefix">9</property>
    <!--
    Prefix prepended to every dialed number
    -->
    <property name="calleePrefix"></property>
    <!--
    Regexp applied to any user inputed number. Matches will be removed.
    -->
    <property name="numberCleanRegExp">\s|\.|-|\,|(\(0\)|\(|\))</property>
    <!--
    When dialing international number '+' gets
    replaced with the iddPrefix
    -->
    <property name="iddPrefix"></property>
    <!--
    Variable name used in SMS() application for SMS message body
    -->
    <property name="astSMSVariable">SMS_MESSAGE</property>
    <!--
    Dialplan context used for sending sms
    -->
    <property name="astSMSSendContext">sms-send</property>
    <!--
    Full asterisk channel for sms center
    -->
    <property name="astSMSCenterChannel">CAPI/g1/0622100000</property>

    <!--
    These settings have to be global because of a limitation when getting properties in zimlet's js.
    -->
    <!--
    Enable/Disable SMS sending through asterisk originate function
    Needs a correctly configured SMS() application in dialplan that
    gets the SMS message from dialplan variable "astSMSVariable"
    example for astSMSVariable = 'SMS_MESSASGE':

    [sms-send]
    exten => _X.,n,SMS(${CALLERID(num)},${EXTEN},${SMS_MESSAGE} )
    exten => _X.,n,SMS(${CALLERID(num)})
    exten => _X.,n,Hangup

    -->
    <property name="enableSMS">true</property>
    <property name="maxSMSLength">160</property>
    <!--
    URL to search a Phonebook entry in web
    -->
    <property name="phonebookBaseUrl">http://tel.local.ch/q/</property>
    <!--
    Url parameters used for search in form param1=val1&param2=val2..
    -->
    <property name="phonebookUrlCommonParams">ext=1</property>
    <!--
    Url param which value will be filled with the phone number to search
    -->
    <property name="phonebookUrlNumberParam">phone</property>
    </global>
    <!--
    This settings will override global ones!
    <host name="HOSTNAME">
    <property name="astManagerIp">HOSTNAME</property>
    <property name="astManagerPort">5038</property>
    <property name="astManagerUser">zimbra</property>
    <property name="astManagerSecret">PASSWORD</property>
    </host>
    -->
    </zimletConfig>


    My Manager.conf is:
    ;
    ; Asterisk Call Management support
    ;
    [general]
    enabled = yes
    webenabled = yes
    port = 5038
    bindaddr = 0.0.0.0

    [admin]
    secret = ***
    deny=0.0.0.0/0.0.0.0
    permit=127.0.0.1/255.255.255.0
    permit=***/255.255.255.0
    permit=***
    read = system,call,log,verbose,command,agent,user,config, command,dtmf,reporting,cdr,dialplan,originate
    write = system,call,log,verbose,command,agent,user,config, command,dtmf,reporting,cdr,dialplan,originate

    [zimbra]
    secret = PASSWORD
    deny=0.0.0.0/0.0.0.0
    permit=127.0.0.1/255.255.255.0
    permit=***/255.255.255.0
    read = system,call,log,verbose,command,agent,user,config, command,dtmf,reporting,cdr,dialplan,originate
    write = system,call,log,verbose,command,agent,user,config, command,dtmf,reporting,cdr,dialplan,originate

    [myasterisk]
    secret = ***
    deny=0.0.0.0/0.0.0.0
    permit=127.0.0.1/255.255.255.0
    read = system,call,log,verbose,command,agent,user
    write = system,call,log,verbose,command,agent,user

    #include manager_additional.conf
    #include manager_custom.conf


    I have cleansed the config files of passwords, IP's, etc for privacy reasons

    Any help would be greatly appreciated.

  4. #194
    pmcphedran is offline Starter Member
    Join Date
    Nov 2012
    Posts
    2
    Rep Power
    1

    Default Resolved

    Quote Originally Posted by pmcphedran View Post
    Hi,

    I've followed all the suggestions in this thread and still no love for Asterisk. I must be missing something! When I click on a number, it launches a message box:
    OK,

    I found the problem. I was missing something, seems that if you are using the .71 version, you do not need to follow the instructions from Post #175 When I reinstalled and used the same settings as in my post it all worked as expected.

    Thanks! (?)

  5. #195
    mikronaut is offline Junior Member
    Join Date
    Mar 2008
    Posts
    9
    Rep Power
    6

    Default

    Still no support for Zimbra 8? I have installed the zimlet and I get this errors in java console when clicking "Show Info":

    GET http://xxxxxx/service/zimlet/ch_bnc_...isk.jsp?info=1 500 (PWC6177: XML parsing error on file /WEB-INF/zimbra.tld)

    Symlink for zimbra.tld is correctly created.

Page 20 of 20 FirstFirst ... 10181920

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 21
    Last Post: 02-04-2010, 09:06 AM
  2. Outlook 2007 Beta error
    By bersrker in forum Zimbra Connector for Outlook
    Replies: 13
    Last Post: 07-17-2008, 07:38 AM
  3. Replies: 5
    Last Post: 01-11-2008, 04:34 AM
  4. weird Asterisk zimlet behaviour
    By bbarnett in forum Zimlets
    Replies: 4
    Last Post: 10-17-2007, 08:36 AM
  5. Post instsallation problems
    By Assaf in forum Installation
    Replies: 14
    Last Post: 01-29-2007, 10:38 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •