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

Re: sending emails through msmtp




On Sun, Apr 17, 2011 at 11:24 PM, Sebastian Hofer <sebhofer@gmail.com> wrote:
On Sun, Apr 17, 2011 at 10:53 PM, Erik Hetzner <egh@e6h.org> wrote:
At Sun, 17 Apr 2011 22:30:49 +0200,
Sebastian Hofer wrote:
>
> […]
>
> Hi David,
> thanks for the quick answer. I'm having trouble sending largish attachments,
> either they take really long to send, effectively stalling emacs during that
> time or they are not sent at all. Am I the only one experiencing that?

Hi Sebastian,

I’m not sure using sendmail will help, but you can try:

 (setq wl-draft-send-mail-function 'sendmail-send-it)

Worked for me. Probably this should be documented.

best, Erik

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

Confirmed. Thanks for the tip. Also, I just found out that
(message-send-mail-with-
sendmail)
should work. Not sure which is better though.

I stand corrected, above does not work! My config looks like this now

(setq wl-draft-send-mail-function 'sendmail-send-it)
(setq sendmail-program "/usr/bin/msmtp")
(setq message-sendmail-envelope-from 'header)

Seems to work for now!
Sebastian