Re: BBDBv3 + Wanderlust

Pascal Haakmat <[email protected]> Wed, 23 May 2018 14:44:56 +0200
Newsgroups gmane.mail.wanderlust.general
Message-ID <877enuilrr.wl-pascalh__12646.5880581693$1527079511$gmane$org@gmail.com>
On Mon, 26 Mar 2018 05:32:35 +0200,
Rob Walker wrote:

> I came up with a minimal configuration that I can use to make WL and
> BBDBv3 play nicely together.  It works like this:
> 
> ;;; minimal settings
> (setq wl-from "Rob Walker <[email protected]>")
> (setq wl-local-domain "ladle.net")
> (setq wl-message-id-domain "ladle.net")
> 
> (require 'bbdb)
> (bbdb-initialize 'wl)
> (bbdb-mua-auto-update-init 'wl)
> (setq bbdb-update-records-p 'create)
> ;;; end of minimal settings

Thanks, this allowed me to remove some cruft from my bbdbv3 config and
makes things work more smoothly.

bbdb-update-records-p doesn't seem to do much for me, but the below
works for me:

    (require 'bbdb) 
    (bbdb-initialize 'wl)
    (bbdb-mua-auto-update-init 'wl)
    (setq bbdb-mua-auto-update-p 'create)
    (setq bbdb-mua-pop-up-window-size 5)
    (setq bbdb-ignore-message-alist
          '(("From" . "noreply\\|no_reply\\|mailer-daemon")))

Regards Pascal