diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-09-25 14:19:38 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-25 14:19:38 +0000 |
commit | 6f33b4d7e3f67f82ce0cf85a1cc0a22b48b017c5 (patch) | |
tree | 557d43167efebb3014c40d41aa995032a1a81009 /lisp/gnus/gnus.el | |
parent | 6688abe01e19c202d266f7d01d704d73df44ed1e (diff) | |
download | emacs-6f33b4d7e3f67f82ce0cf85a1cc0a22b48b017c5.tar.gz |
nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS before starting negotiation.
gnus.el (gnus-local-domain): Put gnus-local-domain back again, since apparently third-party libraries depend on it.
Diffstat (limited to 'lisp/gnus/gnus.el')
-rw-r--r-- | lisp/gnus/gnus.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 2a5533db079..c3bf47b9533 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -1428,6 +1428,15 @@ you could set this variable: "Default default new newsgroups the first time Gnus is run. Should be set in paths.el, and shouldn't be touched by the user.") +(defcustom gnus-local-domain nil + "Local domain name without a host name. +The DOMAINNAME environment variable is used instead if it is defined. +If the function `system-name' returns the full Internet name, there is +no need to set this variable." + :group 'gnus-message + :type '(choice (const :tag "default" nil) + string)) + (defvar gnus-local-organization nil "String with a description of what organization (if any) the user belongs to. Obsolete variable; use `message-user-organization' instead.") |