From: Magnus H. <leg...@us...> - 2007-09-01 15:58:31
|
Update of /cvsroot/emacs-jabber/emacs-jabber In directory sc8-pr-cvs17:/tmp/cvs-serv14425 Modified Files: jabber.el Log Message: Revision: ma...@fr...--2005/emacs-jabber--cvs-head--0--patch-405 Creator: Magnus Henoch <ma...@fr...> Better docstring for jabber-account-list Index: jabber.el =================================================================== RCS file: /cvsroot/emacs-jabber/emacs-jabber/jabber.el,v retrieving revision 1.78 retrieving revision 1.79 diff -u -d -r1.78 -r1.79 --- jabber.el 1 Sep 2007 02:39:14 -0000 1.78 +++ jabber.el 1 Sep 2007 15:58:16 -0000 1.79 @@ -46,7 +46,21 @@ :connection-type is a symbol. Valid symbols are `starttls', `network' and `ssl'. -Only JID is mandatory. The rest can be guessed at run-time." +Only JID is mandatory. The rest can be guessed at run-time. + +Examples: + +Two accounts without any special configuration: +\((\"fo...@ex...\") (\"ba...@ex...\")) + +One disabled account with a non-standard port: +\((\"ro...@mo...\" (:port . 5242) (:disabled . t))) + +If you don't have SRV and STARTTLS capabilities in your Emacs, +configure a Google Talk account like this: +\((\"use...@gm...\" + (:network-server . \"talk.google.com\") + (:connection-type . ssl)))" :type '(repeat (cons :tag "Account information" (string :tag "JID") |