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

Re: M-x help-help-help



At Mon, 25 Apr 2011 21:30:22 +0200,
Ralf wrote:
> 
> Hi Herbert,
>
> […]
>
> > >        starttls-use-gnutls t
> > >        starttls-gnutls-program "gnutls-cli"
> > >        starttls-extra-arguments '("--insecure")
> > 
> > Again, this is wrong! setq's are missing. You want:
> > 
> > (setq starttls-use-gnutls t)
> 
> Hm? Perhaps I don't need to use gnutls-cli? I just found one example
> including it. Evolution seems to do it without gnutls-cli, so I guess
> another command is doing the job too.

Please read carefully what Herbert has kindly written (many times).

This does not work to set a variable:

  variable-name value

This is what you need:

  (setq variable-name value)

Note the use of setq.

best, Erik
Sent from my free software system <http://fsf.org/>.