mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 04:17:35 +00:00
lisp/gnus/nntp.el (nntp-open-connection): Fix nntp connection problems with the Typhoon server
This commit is contained in:
parent
e25a10b714
commit
b9989bfa7e
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2012-12-27 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* nntp.el (nntp-open-connection): Use HELP as the capability command
|
||||
instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
|
||||
unknown commands. And CAPABILITY is an unknown command (bug#12763).
|
||||
|
||||
2012-12-27 Wolfgang Jenkner <wjenkner@inode.at>
|
||||
|
||||
* gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
|
||||
|
|
|
|||
|
|
@ -1282,7 +1282,7 @@ If SEND-IF-FORCE, only send authinfo to the server if the
|
|||
"nntpd" pbuffer nntp-address nntp-port-number
|
||||
:type (cadr (assoc nntp-open-connection-function map))
|
||||
:end-of-command "^\\([2345]\\|[.]\\).*\n"
|
||||
:capability-command "CAPABILITIES\r\n"
|
||||
:capability-command "HELP\r\n"
|
||||
:success "^3"
|
||||
:starttls-function
|
||||
(lambda (capabilities)
|
||||
|
|
|
|||
Loading…
Reference in a new issue