Alejandro Benitez wrote:
> Can I configure BBDB to create records out of the addresses I add in "To:",
> "Cc:", etc fields when sending mail ?

Indeed, that's how I have it set to work.  I use something like this
with wanderlust, I assume something similar is possible in other mail
clients:


;; I want bbdb to grab email address from outgoing email
(defun my-bbdb-mail-send-function ()
  (bbdb-update-records 
   (delete-if (lambda (item) 
                (string= "" (caaddr item)))
              (bbdb-wl-get-addresses bbdb-get-only-first-address-p))
   t t))
(add-hook 'mail-send-hook 'my-bbdb-mail-send-function t)


Cheers,
Len.

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Reply via email to