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)
You can e-mail me at sacha@sachachua.com.