mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
nnimap.el (nnimap-open-connection-1): Use the correct port number in the error message.
This commit is contained in:
parent
0f2f6b6d00
commit
bc32008719
2 changed files with 6 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* nnimap.el (nnimap-open-connection-1): Use the correct port number in
|
||||
the error message.
|
||||
|
||||
2011-09-02 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* message.el (message-setup-1): Return t (Bug#9392).
|
||||
|
|
|
|||
|
|
@ -350,7 +350,6 @@ textual parts.")
|
|||
(with-current-buffer (nnimap-make-process-buffer buffer)
|
||||
(let* ((coding-system-for-read 'binary)
|
||||
(coding-system-for-write 'binary)
|
||||
(port nil)
|
||||
(ports
|
||||
(cond
|
||||
((memq nnimap-stream '(network plain starttls))
|
||||
|
|
@ -395,7 +394,7 @@ textual parts.")
|
|||
(if (not stream)
|
||||
(progn
|
||||
(nnheader-report 'nnimap "Unable to contact %s:%s via %s"
|
||||
nnimap-address port nnimap-stream)
|
||||
nnimap-address (car ports) nnimap-stream)
|
||||
'no-connect)
|
||||
(gnus-set-process-query-on-exit-flag stream nil)
|
||||
(if (not (gnus-string-match-p "[*.] \\(OK\\|PREAUTH\\)" greeting))
|
||||
|
|
|
|||
Loading…
Reference in a new issue