Re: Integrating with gnus

2012-09-15 Thread Gijs Hillenius
Norman Walsh n...@nwalsh.com writes: Hi Norman: I've now fixed my local customizations to work with BBDB 3.02. With BBDB 2.x, opening a message in Gnus would display the matching BBDB record in a small buffer near the bottom of the screen. Works fine here. The base of my setup is exactly

Re: Integrating with gnus

2012-09-15 Thread Charles Philip Chan
Gijs Hillenius g...@hillenius.net writes: Hi Gijs: Ok. I can do that. But it does not make the minibuffer pop up. Oh, I forgot to add, you need to customize the variable bbdb-message-pop-up: , | bbdb-message-pop-up's value is t | Original value was nil | | Documentation: | If non-nil,

Re: Integrating with gnus

2012-09-15 Thread Gijs Hillenius
On 15 Sep 2012, Charles Philip Chan wrote: Gijs Hillenius g...@hillenius.net writes: Hi Gijs: Ok. I can do that. But it does not make the minibuffer pop up. Oh, I forgot to add, you need to customize the variable bbdb-message-pop-up: aha! adding (setq bbdb-message-pop-up t) to my bbbd

Re: Integrating with gnus

2012-09-15 Thread Stephen Leake
Roland Winkler wink...@gnu.org writes: On Fri Sep 14 2012 Gijs Hillenius wrote: yeah, I could not get that working here either However, Vincent Bernat suggests: http://comments.gmane.org/gmane.emacs.gnus.general/81908 , | (add-hook 'bbdb-notice-mail-hook 'bbdb-auto-notes) |

Re: Integrating with gnus

2012-09-15 Thread Roland Winkler
On Sat Sep 15 2012 Charles Philip Chan wrote: Oh, I forgot to add, you need to customize the variable bbdb-message-pop-up: , | bbdb-message-pop-up's value is t | Original value was nil Now I start to understand what you want to achieve and where things appear to fail. So we are really

Re: Integrating with gnus

2012-09-15 Thread Stephen Leake
Roland Winkler wink...@gnu.org writes: I am trying to give the user variables default values that are not too aggressive. But right now I do not understand anymore why the default of bbdb-message-pop-up is nil. Anyway, the user needs to call bbdb-mua-auto-update-init to get this working. It

Re: Integrating with gnus

2012-09-14 Thread Gijs Hillenius
On 13 Sep 2012, Norman Walsh wrote: [...] With BBDB 2.x, opening a message in Gnus would display the matching BBDB record in a small buffer near the bottom of the screen. yeah, I could not get that working here either However, Vincent Bernat suggests:

Re: Integrating with gnus

2012-09-14 Thread Norman Walsh
Gijs Hillenius g...@hillenius.net writes: On 13 Sep 2012, Norman Walsh wrote: [...] With BBDB 2.x, opening a message in Gnus would display the matching BBDB record in a small buffer near the bottom of the screen. Sam's suggestion: (require 'bbdb) (require 'bbdb-loaddefs)

Re: Integrating with gnus

2012-09-14 Thread Roland Winkler
On Fri Sep 14 2012 Gijs Hillenius wrote: yeah, I could not get that working here either However, Vincent Bernat suggests: http://comments.gmane.org/gmane.emacs.gnus.general/81908 , | (add-hook 'bbdb-notice-mail-hook 'bbdb-auto-notes) | (add-hook 'gnus-article-prepare-hook

Re: Integrating with gnus

2012-09-14 Thread Charles Philip Chan
Norman Walsh n...@nwalsh.com writes: Hi Norman: It displays about 22 lines for the BBDB record. Any easy way to crank that back down to about 5 lines? Customize bbdb-pop-up-window-size: , | bbdb-pop-up-window-size's value is 0.8 | Original value was 0.5 | | Documentation: | Vertical

Re: Integrating with gnus

2012-09-14 Thread Charles Philip Chan
Norman Walsh n...@nwalsh.com writes: Hi Norman: I've now fixed my local customizations to work with BBDB 3.02. With BBDB 2.x, opening a message in Gnus would display the matching BBDB record in a small buffer near the bottom of the screen. Works fine here. The base of my setup is exactly

Integrating with gnus

2012-09-13 Thread Norman Walsh
Hi folks, I've now fixed my local customizations to work with BBDB 3.02. With BBDB 2.x, opening a message in Gnus would display the matching BBDB record in a small buffer near the bottom of the screen. That doesn't happen in 3.x. The only (obvious to me) possibly relevant difference is that I

Re: Integrating with gnus

2012-09-13 Thread Sam Steingold
* Norman Walsh a...@ajnyfu.pbz [2012-09-13 07:02:13 -0700]: Anyone know the incantation for Gnus+BBDB 3.x integration? (require 'bbdb) (require 'bbdb-loaddefs) (bbdb-initialize 'gnus 'message) (bbdb-mua-auto-update-init 'gnus 'message) -- Sam Steingold (http://sds.podval.org/) on Ubuntu 12.04

Re: Integrating with gnus

2012-09-13 Thread Roland Winkler
On Thu Sep 13 2012 Sam Steingold wrote: * Norman Walsh a...@ajnyfu.pbz [2012-09-13 07:02:13 -0700]: Anyone know the incantation for Gnus+BBDB 3.x integration? (require 'bbdb) (require 'bbdb-loaddefs) (bbdb-initialize 'gnus 'message) (bbdb-mua-auto-update-init 'gnus 'message) The first