viewmail-info
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [VM] Setting up VM for the first time - imap to read on the server


From: Stefan Monnier
Subject: Re: [VM] Setting up VM for the first time - imap to read on the server
Date: Thu, 20 Sep 2012 17:35:56 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux)

> It isn't needed.  But the VM default for the variable `vm-stunnel-program'
> is "stunnel".  So, it is looking for the stunnel program.  To avoid stunnel
> entirely, you should set `vm-stunnel-program' to nil.  Then VM will fire up
> the Emacs 24 SSL functionality.

The following chunk would do that automatically.


        Stefan


@@ -675,8 +675,7 @@
--
                 file))
 
-(defcustom vm-stunnel-program "stunnel"
+(defcustom vm-stunnel-program
+  (if (and (fboundp 'gnutls-available-p) (gnutls-available-p))
+      nil
+    "stunnel")
   "*Name of program to use to run stunnel.
 This is used to make SSL connections to POP and IMAP servers that
 support SSL.  If this is set to nil, VM will attempt to use the




reply via email to

[Prev in Thread] Current Thread [Next in Thread]