From: Lars Magne Ingebrigtsen Date: Thu, 14 Oct 2010 09:51:00 +0000 (+0200) Subject: tls-program should be a list of programs. X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=7ff55c589b7c03f67b287fbe57bec94883c4d2bb tls-program should be a list of programs. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 995907689..bd0bf3cfc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-10-14 Lars Magne Ingebrigtsen + + * nnimap.el (nnimap-open-connection): tls-program should be a list of + programs. + 2010-10-14 Julien Danjou * gnus-group.el (gnus-group-insert-group-line): Fix group argument to diff --git a/lisp/nnimap.el b/lisp/nnimap.el index b530ce609..3fbcef60b 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -318,7 +318,8 @@ textual parts.") (setq port (or nnimap-server-port "imap"))) '("imap")) ((eq nnimap-stream 'starttls) - (let ((tls-program "openssl s_client %s -connect %h:%p -no_ssl2 -ign_eof -starttls imap")) + (let ((tls-program + '("openssl s_client %s -connect %h:%p -no_ssl2 -ign_eof -starttls imap"))) (open-tls-stream "*nnimap*" (current-buffer) nnimap-address (setq port (or nnimap-server-port "imap"))))