emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Torsten Wagner <torsten.wagner@gmail.com>
To: R.M.Krug@gmail.com
Cc: emacs-orgmode@gnu.org, Rasmus <rasmus@gmx.us>
Subject: Re: Compose emails in ogr, but send them via thunderbird?
Date: Wed, 4 Apr 2012 11:05:45 +0900	[thread overview]
Message-ID: <CAPaq-gMUJVwc9+ArKVaUAxreRJZkv35EUjBRLjFGzCdRtsndjg@mail.gmail.com> (raw)
In-Reply-To: <4F7AFC5A.2020509@gmail.com>

Hi Rainer,

Hmm interstingly I working on exact the same task.... I want to get
rid of Thunderbird because its troubling me to much, but I can't find
an easy drop-in replacement.
Recently, I got notmuch running after giving up on gnus for the third
or fourth time, because I never found enough time to come into it.
Unfortunately, I find the notmuch thread buffers rather confusing and
would be very happy if a little org-mode magic would move into it.

Nevertheless notmuch allows you to write emails too. What you have to
do is to set-up the smtp server to sent your mails. That can be either
a pointer to an existing smtp server (like gmail) or a own server. A
own server might be nice but requires some fiddling and hence I
decided to use msmtp [1].
It requires only a very small config file with the credentials and
settings for each smtp (email) account. Mostly what you are used to
type into thunderbird too.
In my emacs init files I added

/--------------------------------init_notmuch.el---------------------------------------/
;;///////////////////////////////////////////////////////////////
;; notmuch and smtp settings
;;//////////////////////////////////////////////////////////////

(require 'notmuch)
(setq message-send-mail-function 'message-send-mail-with-sendmail)
;; we substitute sendmail with msmtp
(setq sendmail-program "/usr/bin/msmtp")
;;need to tell msmtp which account we're using
(setq message-sendmail-extra-arguments '("-a" "gmail"))
;; integrate with org-mode
(require 'org-notmuch)
(require 'notmuch-address)
(setq notmuch-address-command "/home/torsten/mails/get_address.sh")
(notmuch-address-message-insinuate)
/--------------------------------init-notmuch.el---------------------------------------------------/

get_address.sh is a little shell script which enables to access the
googlemail contact list and you will get auto completion.

/----------------------get_address.sh-------------------------/
#!/bin/sh
goobook query "$*" | sed 's/\(.*\)\t\(.*\)\t.*/\2 \<\1\>/' | sed '/^$/d'
/---------------------get_address.sh------------------------/

details about this can be found on the notmuch website.

Being in a notmuch buffer pressing 'm' opens a new buffer with a empty
template in Message mode
Fill it and C-c C-C will send the mail out.
It should appear in notmuch later and if you did your
filtering/tagging right you can file it under sent.
From there it should be pretty easy to link to an org-mode file.


Again I would like to see notmuch using more org-mode magic to get a
more clean representation of mails and esp. threads.
Some more hooks like automatic linking to notmuch emails in org-mode
buffers and creating of emails directly from org-mode buffers would be
nice and I guess its rather easy to implement. (E.g., a single command
to create a new mail and generating a org-mode link to that email in
notmuch, at the current position in a org-mode buffer would be very
nice).


Hope that helps


[1] http://msmtp.sourceforge.net/

On 3 April 2012 22:34, Rainer M Krug <r.m.krug@gmail.com> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 03/04/12 11:36, Rasmus wrote:
>> Rasmus <rasmus@gmx.us> writes:
>>
>>> ¹  http://globs.org/articles.php?pg=2&lng=en
>>
>> You might also be able to work something out with Keysnail, which, at least in Fx, can also
>> call external editors (Emacs, mostly)
>
> Also interesting - nice.
> Cheers,
>
> Rainer
>
>>
>> https://github.com/mooz/keysnail/wiki
>>
>> –Rasmus
>>
>
>
> - --
> Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys.
> (Germany)
>
> Centre of Excellence for Invasion Biology
> Stellenbosch University
> South Africa
>
> Tel :       +33 - (0)9 53 10 27 44
> Cell:       +33 - (0)6 85 62 59 98
> Fax :       +33 - (0)9 58 10 27 44
>
> Fax (D):    +49 - (0)3 21 21 25 22 44
>
> email:      Rainer@krugs.de
>
> Skype:      RMkrug
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.11 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAk96/FoACgkQoYgNqgF2ego+gQCeIMRkRQS/9JrTi6rbbtUlfJlj
> MYwAn0KuFx5oLwCyUZnm6q1SzyLB4e4Z
> =MNMi
> -----END PGP SIGNATURE-----
>

  reply	other threads:[~2012-04-04  2:05 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-03  8:09 Compose emails in ogr, but send them via thunderbird? Rainer M Krug
2012-04-03  9:29 ` Rasmus
2012-04-03  9:36   ` Rasmus
2012-04-03 13:34     ` Rainer M Krug
2012-04-04  2:05       ` Torsten Wagner [this message]
2012-04-05  9:33         ` Rainer M Krug
2012-04-05 14:42           ` Martin Pohlack
2012-04-03 13:31   ` Rainer M Krug

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAPaq-gMUJVwc9+ArKVaUAxreRJZkv35EUjBRLjFGzCdRtsndjg@mail.gmail.com \
    --to=torsten.wagner@gmail.com \
    --cc=R.M.Krug@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=rasmus@gmx.us \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).