Re: How to combine

2001-05-18 Thread Kai Großjohann
On 17 May 2001, Jack Twilley wrote: Kai == Kai Großjohann [EMAIL PROTECTED] writes: [...] Kai Hm. Looking at the docs for bbdb/gnus-split-method, I see that Kai it claims to return a list of groups. That's not so good for Kai this application. So maybe you want to return the car of

Re: How to combine

2001-05-18 Thread Jack Twilley
Kai == Kai Großjohann [EMAIL PROTECTED] writes: [...] Jack bbdb/gnus-split-method returns (group-name) -- shouldn't it Jack return group-name? Kai I see. Well, if it's documented to return a list, then it's okay Kai to do that. Two ideas, both untested: Kai (defun

Re: How to combine

2001-05-17 Thread Jack Twilley
Klaus == Klaus Zeitler [EMAIL PROTECTED] writes: Jack I want to use the bbdb gnus filing stuff, and I'm already using Jack fancy splitting. [...] Jack How do I combine them both? Klaus you can set bbdb/gnus-split-nomatch-function to Klaus nnmail-split-fancy. Thus whenever bbdb/gnus-split

Re: How to combine

2001-05-17 Thread Kai Großjohann
On 17 May 2001, Jack Twilley wrote: Can I stick a line like this in nnmail-split-fancy instead? (setq nnmail-split-fancy '(| (: nnmail-split-fancy-with-parent) (to list@someplace\\.edu list.someplace) (: bbdb/gnus-split-method) (to jmt mail.misc)

Re: How to combine

2001-05-17 Thread Kai Großjohann
On 17 May 2001, Jack Twilley wrote: Kai == Kai Großjohann [EMAIL PROTECTED] writes: [... my attempt at embedding the test inside my fancy ...] Kai This should work, but I haven't actually tried it. I tried it. No dice. Hm. Looking at the docs for bbdb/gnus-split-method, I see that

Re: How to combine

2001-05-17 Thread Jack Twilley
Kai == Kai Großjohann [EMAIL PROTECTED] writes: [...] Kai Hm. Looking at the docs for bbdb/gnus-split-method, I see that Kai it claims to return a list of groups. That's not so good for Kai this application. So maybe you want to return the car of that Kai list, only? bbdb/gnus-split-method

Re: How to combine

2001-05-16 Thread Kai Großjohann
On 15 May 2001, Jack Twilley wrote: The latter requires this: (setq nnmail-split-methods 'nnmail-split-fancy) The former requires this: (setq nnmail-split-methods 'bbdb/gnus-split-method) How do I combine them both? I haven't done this myself, but I guess you can do like

Re: How to combine

2001-05-16 Thread Klaus Zeitler
this: Jack (setq nnmail-split-methods 'bbdb/gnus-split-method) Jack Jack How do I combine them both? you can set bbdb/gnus-split-nomatch-function to nnmail-split-fancy. Thus whenever bbdb/gnus-split-method can't file the message nnmail-split-fancy will be called. Klaus