Re: Adding addresses of outgoing mails to addressbook
Excerpts from Nathan Huesken's message of Sat Jan 17 21:25:25 +0000 2009:
> Hi,
>
> I want to do the command:
> abook --add-email
>
> On every mail I send, so that I can add emails of persons I am writing too to
> my addressbook.
> send-hook comes at the wrong place, how can this be done?
I use lbdb-fetchaddr, not exactly what you want, I know:
So I have "sendmail" in muttrc set to $HOME/mysendmail, and that is:
#!/bin/bash
tee >(lbdb-fetchaddr -a -x "to:cc")|$HOME/bin/msmtpQ $@
(msmtpQ is a shell script that implements a queue for msmtp)
m.