Richard G Riley <[EMAIL PROTECTED]> writes:

> Richard G Riley <[EMAIL PROTECTED]> 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?

_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to