[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to set up smtp?
- To: wl-en@lists.airs.net
- Subject: Re: How to set up smtp?
- From: "Herbert J. Skuhra" <hskuhra@fastmail.fm>
- Date: Mon, 11 Apr 2011 22:45:40 +0200
- Delivered-to: wl-en@lists.airs.net
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=messagingengine.com; h=date:message-id:from:to:subject:in-reply-to:references:mime-version:content-type:content-transfer-encoding; s=smtpout; bh=JT+DbYZ7tDizX7LQAKd5fACm7OA=; b=PjdjNHQrreDXdn03gvcC+suAN4xRa3/AtHUC2IKWP5N2duvpa1mY2LduPUwLC5jTgC90dpMsX2hGPcnq7GmEQ/QK4dW3R0sFFy95D2/hQn44spjYmf8L9VljI1OeFGjYchZH7GLpfaAkWRP+6076tqpj62wsYRyWtOfrKHriLoo=
- In-reply-to: <1302550353.2219.107.camel@edubuntu>
- List-help: <mailto:wl-en-ctl@lists.airs.net?body=help>
- List-id: wl-en.lists.airs.net
- List-owner: <mailto:wl-en-admin@lists.airs.net>
- List-post: <mailto:wl-en@lists.airs.net>
- List-software: fml [fml stable 20011102.2100]
- List-unsubscribe: <mailto:wl-en-ctl@lists.airs.net?body=unsubscribe>
- References: <1302532328.2849.200.camel@edubuntu> <87y63gq1gc.wl@gravicappa.localhost.localdomain> <1302538300.2219.53.camel@edubuntu> <87vcykpxtz.wl@gravicappa.localhost.localdomain> <1302540730.2219.79.camel@edubuntu> <87tye4puqh.wl@gravicappa.localhost.localdomain> <1302550353.2219.107.camel@edubuntu>
- Reply-to: wl-en@lists.airs.net
- User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.8 Emacs/23.3.50 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)
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