Ignoring orkut addresses in BBDB (EmacsHacks#21)
Posted on April 15th, 2004 by Sacha Chua
(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
Short URL: http://sachachua.com/blog/p/1966
I'm 


