tls-program should be a list of programs.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 14 Oct 2010 09:51:00 +0000 (11:51 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 14 Oct 2010 09:51:00 +0000 (11:51 +0200)
lisp/ChangeLog
lisp/nnimap.el

index 9959076..bd0bf3c 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * nnimap.el (nnimap-open-connection): tls-program should be a list of
+       programs.
+
 2010-10-14  Julien Danjou  <julien@danjou.info>
 
        * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
index b530ce6..3fbcef6 100644 (file)
@@ -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"))))