info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: summary buffer format for archives


From: Richard G Riley
Subject: Re: summary buffer format for archives
Date: Mon, 24 Mar 2008 05:33:49 +0100
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux)

Richard G Riley <rileyrgdev@gmail.com> writes:

> Richard G Riley <rileyrgdev@gmail.com> writes:
>>
>> It did indeed! Thanks.
>>
>> And combining the two It's much better as the default summary line is
>> good to go then:
>>
>> ,----
>> | (setq
>> |   gnus-parameters
>> |   '(("^\\(nnimap\\|nnfolder\\|nnml\\)"
>> |     (gnus-ignored-from-addresses ".*riley.*"))))
>> `----
>>
>> This I still see my own name in threads in nntp groups but the "to" in
>> the archived folders - perfect!
>>
>> Many thanks to you and Tassilo.
>
> Carrying on from this I had hoped
>
> ,----
> | (setq gnus-group-line-format "%M\%S\%p\%P\%5y: %(%-40,40g%) %ud\n")
> | 
> | (setq
> |   gnus-parameters
> |   '(
> |     ("^\\(nnimap\\|nnfolder\\|nnml\\)"
> |      (gnus-ignored-from-addresses ".*riley.*")
> |      (gnus-group-line-format "%G %ud\n")
> |      )
> |     )
> | )
> `----
>
> Would give me a group specific gnus-group-line-format.
>
> It doesn't. Any ideas on how I would do that?

Well, I managed it!

,----
| (setq gnus-group-line-format "%M\%S\%p\%P\%uy%(%-40,40g%) %ud\n")
| 
| 
| (defun gnus-user-format-function-y (headers)
|   (if (string-match "^nnfolder" gnus-tmp-group) 
|       ""
|       (concat gnus-tmp-number-of-unread "-")
|     )
|   )
`----

Where are the parameters available inside the format functions documented?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]