We did it!
"We" includes my new friend Jun Jie: it's his
blog where I found the missing variable (ta-dah!) - jabber-network-server.
(To self:
RTFM, RTFM, MF!..)
With new settings
(setq jabber-username "valery.vv" jabber-server "gmail.com"
jabber-network-server "talk.google.com"
jabber-port 443 ; there is a firewall here
jabber-connection-type 'ssl)
the connection succeeded.
...But another error manifested:
error in process filter: xml-parse-tag: XML: End tag for iq not found before end of region
This one was easier to handle. Here goes the patch:
--- /usr/share/emacs/21.4/lisp/xml.el 2001-10-18 23:19:51.000000000 +0300
+++ /home/vvv/.elisp/xml.el 2007-06-15 12:34:13.451906206 +0300
@@ -262,7 +262,7 @@
(set 'children (append children
(list (xml-substitute-special string))))))))
(goto-char (match-end 0))
- (skip-chars-forward " \t\n")
+;; (skip-chars-forward " \t\n")
(if (> (point) end)
(error "XML: End tag for %s not found before end of region"
node-name))
Looks much better now. :-)
[
previous post]