summaryrefslogtreecommitdiff
path: root/jabber.el
diff options
context:
space:
mode:
authorMagnus Henoch <magnus.henoch@gmail.com>2015-07-13 09:09:33 +0100
committerMagnus Henoch <magnus.henoch@gmail.com>2015-07-13 09:09:33 +0100
commita1835deb5c8e1609b2ba0aa1c65a2cfa88c76aca (patch)
tree501ecdc2ccf89ffbbfa09a8a056054a7852b7853 /jabber.el
parent1f858cc4f3cdabcd7380a7d08af273bcdd708c15 (diff)
Clearer docstring for jabber-account-list
Diffstat (limited to 'jabber.el')
-rw-r--r--jabber.el19
1 files changed, 12 insertions, 7 deletions
diff --git a/jabber.el b/jabber.el
index 55eec68..607b726 100644
--- a/jabber.el
+++ b/jabber.el
@@ -39,13 +39,18 @@ where the car is a JID and the CDR is an alist.
JID is a full Jabber ID string (e.g. foo@bar.tld). You can also
specify the resource (e.g. foo@bar.tld/emacs).
The following keys can be present in the alist:
-:password is a string to authenticate ourself against the server.
-It can be empty.
-:network-server is a string identifying the address to connect to,
-if it's different from the server part of the JID.
-:port is the port to use (default depends on connection type).
-:connection-type is a symbol. Valid symbols are `starttls',
-`network' and `ssl'.
+
+ :password is a string to authenticate ourself against the server.
+ It can be empty. If you don't want to store your password in your
+ Emacs configuration, try auth-source (info node `(auth)Top').
+
+ :network-server is a string identifying the address to connect to,
+ if it's different from the server part of the JID.
+
+ :port is the port to use (default depends on connection type).
+
+ :connection-type is a symbol. Valid symbols are `starttls',
+ `network' and `ssl'.
Only JID is mandatory. The rest can be guessed at run-time.