Uday S Reddy <usr.vm.ro...@gmail.com> writes:

>     smtpmail-send-it: Sending failed: Emacs does not support TLS, and
> no external `gnutls-cli.exe' program was found
>
> Running locate-file, I see
>
>    (locate-file "gnutls-cli.exe" exec-path)
>    "c:/Cygwin/bin/gnutls-cli.exe"

This error message is totally wrong now, because we redefined to be:

(defun starttls-available-p ()
  "Say whether the STARTTLS programs are available."
  (and (not (memq system-type '(windows-nt ms-dos)))
       (executable-find (if starttls-use-gnutls
                            starttls-gnutls-program
                          starttls-program))))

That is, if we're under Windows, we just give up, because gnutls-cli
doesn't work, because we don't have signals under Windows.

So I'll fix the error message to be less misleading.

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/

Reply via email to