Re: Record address from all field

2015-04-28 Thread flav
Peter Münster writes: > On Mon, Apr 27 2015, f...@epita.fr wrote: > >> When I receive a email (using gnus), I would like by pressing ':' that >> bbdb records all address from 'to' and 'from' fields >> >> How can I do ? > > You could try this: > > (defun pm/alter-summary-map () > ; . > (

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Phil Hudson
On Tue, 28 Apr 2015 at 2:09:26 am BST, Eric Abrahamsen wrote: > Phil Hudson writes: > >> On Mon, 27 Apr 2015 at 5:59:07 pm BST, Glyn Millington >> wrote: >> >>> (add-hook 'message-setup-hook 'bbdb-mail-aliases) >> >> This led me to the documentation for bbdb-mail-aliases, which leads me

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Phil Hudson
On Mon, 27 Apr 2015 at 8:36:34 pm BST, Glyn Millington wrote: > 'mail-alias' refers to aliases set up in a special > file, usually called .mailrc. I'm not clear that this is involved with > the bbdb at all. Now this is really confusing. Are there two different mail-alias systems, one involving

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Eric Abrahamsen
Phil Hudson writes: > On Tue, 28 Apr 2015 at 2:09:26 am BST, Eric Abrahamsen > wrote: > >> Phil Hudson writes: >> >>> On Mon, 27 Apr 2015 at 5:59:07 pm BST, Glyn Millington >>> wrote: >>> (add-hook 'message-setup-hook 'bbdb-mail-aliases) >>> >>> This led me to the documentation fo

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Phil Hudson
On Mon, 27 Apr 2015 at 8:36:34 pm BST, Glyn Millington wrote: > mail-alias - I believe this is defined in bbdb.el You can insert that > field into a record using the instructions offered here: > > http://www.emacswiki.org/emacs/BbdbMailingLists Thanks for that. I've tried it and it works exac

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Phil Hudson
On Tue, 28 Apr 2015 at 9:48:56 am BST, Glyn Millington wrote: > Yes. There are two. They are independent. > > But message.el can use either. Got it. Thanks. -- Phil Hudson http://hudson-it.ddns.net @UWascalWabbit PGP/GnuPG ID: 0x887DCA63 --

Re: Record address from all field

2015-04-28 Thread Peter Münster
On Tue, Apr 28 2015, f...@epita.fr wrote: >> (defun pm/alter-summary-map () >> ; . >> (local-set-key ":" 'bbdb-mua-display-records)) >> (add-hook 'gnus-summary-mode-hook 'pm/alter-summary-map) > > I try, but : > > Symbol's function definition is void: bbdb-mua-display-records You'll

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Piet van Oostrum
Glyn Millington wrote: > Piet van Oostrum writes: > > > In BBDB 3.1.2 there is no bbdb-define-all-aliases. It should be > > bbdb-mail-aliases, as mentioned in some earlier messages on this list. So > > the wiki should be updated. > > > > What bbdb-mail-aliases is supposed to do, is to a

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Glyn Millington
Piet van Oostrum writes: > Glyn Millington wrote: > > > Piet van Oostrum writes: > > > > > In BBDB 3.1.2 there is no bbdb-define-all-aliases. It should be > bbdb-mail-aliases, as mentioned in some earlier messages on this list. So the > wiki should be updated. > > > > > > What bbdb-mail-

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Piet van Oostrum
Glyn Millington wrote: > Tab is bound to message-x-tab, which of course comes from the message-x > package, which interacts with bbdb. Wow. I installed that and now it works. Thanks. My year-long (at least) quest finally finished. -- Piet van Oostrum WWW: http://pietvanoostrum.com/ PGP key:

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Nikolaus Rath
On Apr 27 2015, Glyn Millington wrote: I'm using bbdb 3.1.2. I have the following configuration: (require 'bbdb) (bbdb-initialize 'gnus 'message) (bbdb-mua-auto-update-init 'gnus 'message) (setq bbdb-mua-pop-up t bbdb-mua-auto-update-p nil bbdb-u

bbdb-message-all-addresses (was: bbdb3 won't stop auto-updating records)

2015-04-28 Thread Nikolaus Rath
On Apr 27 2015, Glyn Millington wrote: > (setq bbdb-message-all-addresses t) Can you explain what this setting does? The help says , | If t `bbdb-update-records' returns all mail addresses of a message. | Otherwise this function returns only the first mail address of each message. `

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Glyn Millington
Nikolaus Rath writes: > > Well, yes, if you don't pass 'gnus to the bbdb-mua-auto-update-init > function, then it won't parse any Gnus article buffers. > > However, I *want* bbdb3 to parse the Gnus article buffers under same > conditions. I tried implemeting this conditions in a custom > bbdb-mua

Re: bbdb-message-all-addresses

2015-04-28 Thread Glyn Millington
Nikolaus Rath writes: > On Apr 27 2015, Glyn Millington wrote: > >> (setq bbdb-message-all-addresses t) > > Can you explain what this setting does? > > The help says > > , > | If t `bbdb-update-records' returns all mail addresses of a message. > | Otherwise this function returns only the

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Nikolaus Rath
On Apr 28 2015, Glyn Millington wrote: > Nikolaus Rath writes: > >> >> Well, yes, if you don't pass 'gnus to the bbdb-mua-auto-update-init >> function, then it won't parse any Gnus article buffers. >> >> However, I *want* bbdb3 to parse the Gnus article buffers under same >> conditions. I tried i

Re: Record address from all field

2015-04-28 Thread flav
Peter Münster writes: > On Tue, Apr 28 2015, f...@epita.fr wrote: > >>> (defun pm/alter-summary-map () >>> ; . >>> (local-set-key ":" 'bbdb-mua-display-records)) >>> (add-hook 'gnus-summary-mode-hook 'pm/alter-summary-map) >> >> I try, but : >> >> Symbol's function definition is voi

Re: bbdb3 won't stop auto-updating records

2015-04-28 Thread Glyn Millington
Nikolaus Rath writes: > On Apr 28 2015, Glyn Millington wrote: > >> Nikolaus Rath writes: >> >>> >>> Well, yes, if you don't pass 'gnus to the bbdb-mua-auto-update-init >>> function, then it won't parse any Gnus article buffers. >>> >>> However, I *want* bbdb3 to parse the Gnus article buffers