Connecting to GMail
(→Routing calls) |
|||
Line 69: | Line 69: | ||
* [[Yjinglechan|Jingle channel]] | * [[Yjinglechan|Jingle channel]] | ||
− | [[Category:SIP]] [[Category:Gmail]] [[Category:Server]] | + | [[Category:SIP]] [[Category:Gmail]] [[Category:Server]] [[Category:Jingle]] |
Latest revision as of 11:20, 4 November 2013
In this example we are going to use simple gmail account where:
GMail_username - your GMail username.
GMail_password - your GMail account password.
Note: The options=allowplainauth parameter is required, otherwise login will fail.
We are going to set the gmail account in accfile so Yate will register to it. Then set Yate Server with Jingle in client mode.
From routing will set that all calls that comes to extension '123' will go to through the line to the gmail account set(mycontact@domain) the account must be online so that the call won't fail.
And for outgoing calls all calls that will be made to the account set in accfile will go to a SIP account set.
Contents |
[edit] Set gmail account
In accfile.conf :
[MyGMailAccount] enabled=yes protocol=jabber username=GMail_username password=GMail_password domain=gmail.com options=allowplainauth
[edit] Load Jabber client module
Since jabberclient is a client module, not loaded when Yate is running in server mode, you must explicitly load it. To do that set in yate.conf:
[postload] ${modulepath}/client/jabberclient${modsuffix}=yes
[edit] Set Yate Server with jingle in client mode
By default the jingle channel detects Yate run mode and behaves accordingly. To use it in client mode when Yate runs as server, set in yjinglechan.conf:
[general] servermode=no
[edit] Configure users
In regfile.conf
[123] password=secretpass
[edit] Routing calls
In regexroute.conf :
[default] ; Route calls to contacts in MyGMailAccount roster ^123$=jingle/mycontact@domain;line=MyGMailAccount ; Route calls received on MyGMailAccount line ${in_line}MyGMailAccount=sip/sip:SIP_number@a.b.c.d
See Using jabber client in server mode and Jingle channel for more routing and setup details.
And know connect to the your SIP account and wait for gmail friends to call you. Or test the incoming calls by calling '123' extension.
See also