我無睇asterisk log.
頭先睇. 都發現xmpp login唔到GV
未有解決前. DISABLE左佢先
SuiYan 發表於 2016-7-31 00:18 
Did you do these?- Google Voice:
- Create a fix for Ubuntu to make libgnutls work:
- vi /usr/bin/libgnutls-config
- Insert the following into the file:
- #!/bin/bash
- if [ "$1" == "--version" ]; then
- pkg-config --modversion gnutls
- else
- pkg-config $1 gnutls
- fi
- Save and exit, then make the file executable:
- chmod +x /usr/bin/libgnutls-config
- Get, extract, build, and install iksemel:
- cd /usr/src
- wget https://iksemel.googlecode.com/files/iksemel-1.4.tar.gz
- tar xvf iksemel-1.4.tar.gz
- cd iksemel-*
- ./configure
- make && make install
複製代碼 |