[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bbdb-ignore-some-messages-alist seems to ignore some alists
- To: wl-en@lists.airs.net
- Subject: bbdb-ignore-some-messages-alist seems to ignore some alists
- From: Adrian Owen <adrian.v.owen@gmail.com>
- Date: Thu, 27 Jan 2011 12:45:46 -0700
- Delivered-to: wl-en@lists.airs.net
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=KdhmmOIoDX3sF+DCO8Jecr+d8Huj31zgy2LEwaaxw3c=; b=bYo7StQc26lmZVGnxmfCKxv9ZT8bB4ze7Bi2KYN0UBp7YMWRZm3yVMgV3DNbT0ie/P K82uefEZjIxMvH8r7gDd4CW6pKOY2IxqACrPXkmPhaRdhpr7GhBMFDgPRmb7HRW8Zc8E TGXOH+yWwtJSafR4d9UlcyMK9pwaEuXF7nq6A=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=HfOZnS3Sz6ynUHmlq5yFfnvYUoXIX2xk9qX3LX+OQsEkiDu7o9RTVXBHaBvF24Mqd6 0Up/yUKj1HLGGWRvjPhu3cgMeOW3CAEzMFo3P6lwKltBPTO7dxWChD5s/Z4hmH79eraq LWbGM7y+Lw8kFCmnw7+XZdsM2wmHEEhFu4+SM=
- List-help: <mailto:wl-en-ctl@lists.airs.net?body=help>
- List-id: wl-en.lists.airs.net
- List-owner: <mailto:wl-en-admin@lists.airs.net>
- List-post: <mailto:wl-en@lists.airs.net>
- List-software: fml [fml stable 20011102.2100]
- List-unsubscribe: <mailto:wl-en-ctl@lists.airs.net?body=unsubscribe>
- Reply-to: wl-en@lists.airs.net
Hi,
I am trying to not have bbdb annotate addresses that come from out ticket system.
The emails are of the form 234.123456@helpdesk.example.com. The regex "[0-9]+.[0-9]+@helpdesk.example.com" seems to match perfectly, but even when i just have
bbdb-ignore-some-messages-alist
'(( "From" . "helpdesk")
It still wants to ask to add the address to my bbdb, it is very annoying to have this in my workflow. Does anyone know what the cause could be? When I describe-variable bbdb-ignore-some-messages-alist it appears to be bound to the correct value.
Thanks,
Adrian
some of my .wl:
(setq bbdb-file "~/.emacs.d/bbdb") ;; keep ~/ clean; set before loading
(require 'bbdb)
(bbdb-initialize)
(setq
bbdb-offer-save 1 ;; 1 means save-without-asking
bbdb-use-pop-up nil ;; allow popups for addresses
bbdb-electric-p t ;; be disposable with SPC
bbdb-popup-target-lines 1 ;; very small
bbdb-dwim-net-address-allow-redundancy t ;; always use full name
bbdb-quiet-about-name-mismatches 2 ;; show name-mismatches 2 secs
bbdb-always-add-address t ;; add new addresses to existing...
;; ...contacts automatically
bbdb-canonicalize-redundant-nets-p t ;; x@foo.bar.cx => x@bar.cx
bbdb-completion-type nil ;; complete on anything
bbdb-complete-name-allow-cycling t ;; cycle through matches
;; this only works partially
bbbd-message-caching-enabled t ;; be fast
bbdb-use-alternate-names t ;; use AKA
bbdb-elided-display t ;; single-line addresses
;; auto-create addresses from mail
bbdb/mail-auto-create-p 'bbdb-ignore-some-messages-hook
bbdb-ignore-some-messages-alist
'(( "From" . "helpdesk")
)
)