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

Re: How to set up smtp?



On Mon, 11 Apr 2011 21:32:33 +0200
Ralf <ralf.mardorf@alice-dsl.net> wrote:

>THIS IS THE EMAIL:
>
>From: ralf.mardorf@alice-dsl.net
>To:  ralf.mardorf@alice-dsl.net
>Subject: Test
>User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.9
>(Gojō) APEL/10.8 Emacs/23.1 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)
>--text follows this line--
>Test
>
>AFTER PUSHING C-c C-c THIS IS THE OUTPUT:
>
>Recipients: ralf.mardorf@alice-dsl.net
>Envelope-From: edubuntu@edubuntu
>Smtp-Posting-Server: localhost
>Smtp-Posting-Port: smtp
>
>THAT DOESN'T LOOK OK AND AFTER ANSWERING y I GET:
>
>Sending...
>byte-code: make client process failed: connection refused, :name,
>SMTP, :buffer, *trace of SMTP session to localhost*, :host,
>localhost, :service, smtp
>
>I TESTED DIFFERENT .wl, E.G.:
>
>;; wanderlust
>(autoload 'wl "wl" "Wanderlust" t)
>(autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
>(autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t)
>
>starttls-use-gnutls t
>starttls-gnutls-program "gnutls-cli"
>starttls-extra-arguments '("--port 587")

Again, this is wrong. You want something like:

(setq starttls-use-gnutls t)
(setq starttls-gnutls-program "gnutls-cli")
(setq starttls-extra-arguments '("--port 587"))

Do you see an error when you run 'M-x wl'!
Your ~/.wl is probably not completly parsed.

But I think you can remove these lines. These are the default
settings.

If you have starttls installed you only have to set:

(setq starttls-use-gnutls t)

-Herbert