Ignoring orkut addresses in BBDB (EmacsHacks#21)

| emacs
(defun sacha/bbdb-canonicalize-net-hook (addr)
  "Do not notice member@orkut.com addresses."
  (cond ((null addr) addr)
        ((string-match "member@orkut\\.com" addr) nil)
        (t addr)))
(setq bbdb-canonicalize-net-hook 'sacha/bbdb-canonicalize-net-hook)

../../notebook/emacs/bbdb-config.el

You can comment with Disqus or you can e-mail me at sacha@sachachua.com.