ProxiDoz / vacuum-im

Automatically exported from code.google.com/p/vacuum-im
GNU General Public License v3.0
0 stars 0 forks source link

Cannot add legacy user because of vacuum doesnt support some chars :( #251

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
see this from console:

 <iq type="set" to="smtp-t.netlab.cz" id="sid_480">
    <query xmlns="jabber:iq:gateway">
      <prompt>aaaa@xxx.yyy</prompt>
    </query>
  </iq>

 <iq from="smtp-t.netlab.cz" type="result" to="...here is my JID..." id="sid_480">
    <query xmlns="jabber:iq:gateway">
      <prompt>aaaa%xxx.yyy@smtp-t.netlab.cz</prompt>
    </query>
  </iq>

and after that vacuum give me dialog window that it is not correct JID!!!

Thats wrong! Cause it is correct JID which i can add to the roster manually.

Original issue reported on code.google.com by les.ka...@gmail.com on 30 Sep 2010 at 8:28

GoogleCodeExporter commented 8 years ago
The JID should be placed in <jid> element, see the "Example 55. Gateway Returns 
JID" of XEP-100:

<iq type='result' from='aim.jabber.org' to='stpeter@jabber.org/roundabout' 
id='gate1'>
  <query xmlns='jabber:iq:gateway'>
    <jid>FooBar@aim.jabber.org</jid>
  </query>
</iq>

Original comment by potapov.s.a on 1 Oct 2010 at 4:28