Re: Score threads to which I've posted?
"John E. Davis" <[email protected]>
| Newsgroups | gmane.network.slrn.user |
|---|---|
| Message-ID | <[email protected]> |
Grant Edwards <[email protected]> wrote: > I think I mostly understand what that's doing, but I'll have to > study it a bit. It's going to force the loading of all the > old articles in the threads containing the "new" articles that > are normally loaded from a group, right? Yes, I forgot to mention that. Alternatively, if your message-id had a fixed format that identified you, you could use that to mark threads. For example, suppose that your message-id ended with: "[email protected]>". Then you could define a function such as: private define find_my_message_id () { variable msgid = "[email protected]>"; do { if (is_substr (extract_article_header ("References"), msgid)) return 1; } while (header_down (1)); return 0; } and replace the line while (re_fsearch_author(me)) with while (find_my_message_id ()) in the function provided earlier. Anything more sophisticated is going to require dealing with some form of persistent message-id cache. Good luck, --John ------------------------------------------------------------------------------