返回列表 發帖
We could use the the Google Voice under Asterisk by using its native connection again:

http://www.mikeslab.net/?p=330

TOP

我無睇asterisk log.
頭先睇. 都發現xmpp login唔到GV
未有解決前. DISABLE左佢先
SuiYan 發表於 2016-7-31 00:18



Did you do these?
  1. Google Voice:
  2. Create a fix for Ubuntu to make libgnutls work:

  3. vi /usr/bin/libgnutls-config
  4. Insert the following into the file:

  5. #!/bin/bash
  6. if [ "$1" == "--version" ]; then
  7. pkg-config --modversion gnutls
  8. else
  9. pkg-config $1 gnutls
  10. fi

  11. Save and exit, then make the file executable:

  12. chmod +x /usr/bin/libgnutls-config

  13. Get, extract, build, and install iksemel:

  14. cd /usr/src
  15. wget https://iksemel.googlecode.com/files/iksemel-1.4.tar.gz
  16. tar xvf iksemel-1.4.tar.gz
  17. cd iksemel-*
  18. ./configure
  19. make && make install
複製代碼

TOP

回復 8# edmond25


Ching,

I was using xmpp under asterisk before Jul 2014. Then switched to pygooglevoice after July 2014.

Early this year, I switched from pygooglevoice to and set up the GV inside the OBI 110.

Just about a month ago, I setup the xmpp under the asterisk again (fresh install) when I saw this article http://www.mikeslab.net/?p=330。 And it's working with no problem.
  1. asterisk13*CLI> xmpp show connections
  2. Jabber Users and their status:
  3.        [gv] xxxx@gmail.com     - Connected
  4. ----
  5.    Number of clients: 1
複製代碼

TOP

本帖最後由 ttmuskie 於 2016-8-3 12:36 編輯
回復  ttmuskie


    用 OBi110 可以經 Asterisk 打 GV 嗎?有無config 教教?我用開 Grandstream FXO 所 ...
edmond25 發表於 2016-8-2 16:01



I just added  "{(1XXXXXXXXXX):sp2}" under "Physical Interfaces > PHONE > OutboundCallRoute" as my SP2 is registered to my Asterisk.

I don't have the OBI2xx. But I believe the principle will be the same.

TOP

返回列表