I wish to create a filter which will markread (!markread) any article
which conatains a specific word. In one of my groups someone posts a
weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date.
I want to mark as read solely on ABC not the sender.
Jim S <jim@jimXscott.co.uk> wrote:
I wish to create a filter which will markread (!markread) any article
which conatains a specific word. In one of my groups someone posts a
weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date.
I want to mark as read solely on ABC not the sender.
!markread Subject {^ABC}
for any Subject header that starts with ABC starting in column 1.
!markread Subject {^ABC\b}
same as above, but expects a word boundary after the "ABC" string.
To include the date string you say is included means I'd have to see the format for that substring. However, how many other posts have you seen
that start with "ABC"? Maybe you would just showing an example string,
and "ABC" is not what the Subject header begins with.
You also say "article" instead of header. Are you wanting to search
within a header, or within the body of the message?
Also, do you want replies to the markread article also marked as read,
or leave them marked unread (when new and not yet selected)? Dialog has
an option "watch/ignore works on subthread" to apply the setting not
just to the target article, but also on all replies to that article
(parent and children get similarly flagged); however, that only works
when you flag an article as ignored (!ignore) or watched (!watch).
Jim S <jim@jimXscott.co.uk> wrote:
On Fri, 9 Jul 2021 21:36:59 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
I wish to create a filter which will markread (!markread) any article
which conatains a specific word. In one of my groups someone posts a
weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date.
I want to mark as read solely on ABC not the sender.
!markread Subject {^ABC}
for any Subject header that starts with ABC starting in column 1.
!markread Subject {^ABC\b}
same as above, but expects a word boundary after the "ABC" string.
To include the date string you say is included means I'd have to see the >>> format for that substring. However, how many other posts have you seen
that start with "ABC"? Maybe you would just showing an example string,
and "ABC" is not what the Subject header begins with.
You also say "article" instead of header. Are you wanting to search
within a header, or within the body of the message?
Also, do you want replies to the markread article also marked as read,
or leave them marked unread (when new and not yet selected)? Dialog has >>> an option "watch/ignore works on subthread" to apply the setting not
just to the target article, but also on all replies to that article
(parent and children get similarly flagged); however, that only works
when you flag an article as ignored (!ignore) or watched (!watch).
Thanks V
Yes I am talking about text (ABC) in a header. I see you suggest !ignore
rather than !markread (I am set up to only see unread). Is that preferable? >> Can you run that bit about not seeing replies to articles I am 'ignoring'
past me again.
With a view that only shows unread messages, how do you manage to follow
a thread you've been watching and read before? Once you read a message,
it would get marked as read, and disappear from your Unread view.
^ABC means:
^ = anchor the string to column one; else, the filter might look for a
substring anywhere in the header. {ABC} would find ABC starting in
column 1, or somethingABCsomething (e.g., crabcake). You said the
article had a Subject header that *started* with ABC, so use the ^
to anchor the string to column 1.
Although the Subject might start with ABC, does that mean it is a word
of just those 3 characters, or there are more characters to the word,
like ABCsomething? If ABC is a word, there is a word boundary after the string, like a space, tab, or newline. That's why my other suggestion
of ^ABC\b looks for a *word* of ABC at the start of the Subject header instead of ABCsomething.
Dialog has the ability to apply the ignore or watch flags to subthreads (replies) of a message. That means if you are filtering out a poster or topic, you can also filter out any replies to that unwanted message.
That is, if you filter out a message, perhaps you don't want to see any replies to it, too. However, Dialog only applies the ignore or watch
flags to a subthread. No option to do the same with the markread flag.
If you are firing rules to mark as read a message, do you still want to
see replies to that message? Or arre you unmarking a message just to
keep your eyes from wandering over to an unwanted message?
On Fri, 9 Jul 2021 21:36:59 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
I wish to create a filter which will markread (!markread) any article
which conatains a specific word. In one of my groups someone posts a
weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date.
I want to mark as read solely on ABC not the sender.
!markread Subject {^ABC}
for any Subject header that starts with ABC starting in column 1.
!markread Subject {^ABC\b}
same as above, but expects a word boundary after the "ABC" string.
To include the date string you say is included means I'd have to see the
format for that substring. However, how many other posts have you seen
that start with "ABC"? Maybe you would just showing an example string,
and "ABC" is not what the Subject header begins with.
You also say "article" instead of header. Are you wanting to search
within a header, or within the body of the message?
Also, do you want replies to the markread article also marked as read,
or leave them marked unread (when new and not yet selected)? Dialog has
an option "watch/ignore works on subthread" to apply the setting not
just to the target article, but also on all replies to that article
(parent and children get similarly flagged); however, that only works
when you flag an article as ignored (!ignore) or watched (!watch).
Thanks V
Yes I am talking about text (ABC) in a header. I see you suggest !ignore rather than !markread (I am set up to only see unread). Is that preferable? Can you run that bit about not seeing replies to articles I am 'ignoring' past me again.
On Tue, 13 Jul 2021 11:52:28 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
On Fri, 9 Jul 2021 21:36:59 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
I wish to create a filter which will markread (!markread) any article >>>>> which conatains a specific word. In one of my groups someone posts a >>>>> weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date. >>>>> I want to mark as read solely on ABC not the sender.
!markread Subject {^ABC}
for any Subject header that starts with ABC starting in column 1.
!markread Subject {^ABC\b}
same as above, but expects a word boundary after the "ABC" string.
To include the date string you say is included means I'd have to see the >>>> format for that substring. However, how many other posts have you seen >>>> that start with "ABC"? Maybe you would just showing an example string, >>>> and "ABC" is not what the Subject header begins with.
You also say "article" instead of header. Are you wanting to search
within a header, or within the body of the message?
Also, do you want replies to the markread article also marked as read, >>>> or leave them marked unread (when new and not yet selected)? Dialog has >>>> an option "watch/ignore works on subthread" to apply the setting not
just to the target article, but also on all replies to that article
(parent and children get similarly flagged); however, that only works
when you flag an article as ignored (!ignore) or watched (!watch).
Thanks V
Yes I am talking about text (ABC) in a header. I see you suggest !ignore >>> rather than !markread (I am set up to only see unread). Is that preferable? >>> Can you run that bit about not seeing replies to articles I am 'ignoring' >>> past me again.
With a view that only shows unread messages, how do you manage to follow
a thread you've been watching and read before? Once you read a message,
it would get marked as read, and disappear from your Unread view.
^ABC means:
^ = anchor the string to column one; else, the filter might look for a
substring anywhere in the header. {ABC} would find ABC starting in
column 1, or somethingABCsomething (e.g., crabcake). You said the
article had a Subject header that *started* with ABC, so use the ^
to anchor the string to column 1.
Although the Subject might start with ABC, does that mean it is a word
of just those 3 characters, or there are more characters to the word,
like ABCsomething? If ABC is a word, there is a word boundary after the
string, like a space, tab, or newline. That's why my other suggestion
of ^ABC\b looks for a *word* of ABC at the start of the Subject header
instead of ABCsomething.
Dialog has the ability to apply the ignore or watch flags to subthreads
(replies) of a message. That means if you are filtering out a poster or
topic, you can also filter out any replies to that unwanted message.
That is, if you filter out a message, perhaps you don't want to see any
replies to it, too. However, Dialog only applies the ignore or watch
flags to a subthread. No option to do the same with the markread flag.
If you are firing rules to mark as read a message, do you still want to
see replies to that message? Or arre you unmarking a message just to
keep your eyes from wandering over to an unwanted message?
ABC is actually GMB - something like Good Morning Boys followed by the weather where he is. The replies give the weather wherever the recipient happens to be.
I gave up Ham Radio once it seemed mainly to consist of weather reports
from other Hams around the world (and my morse code was never good)
So I dont want any header that starts GMB or any reply.
Tis a pity Dialog doesn't have a "Markread works on subthreads" option,
too, but it doesn't, so the only way to flag (and hide) an unwanted
message and its replies (i.e., a subthread) is to use the ignore flag and
use the Hide Ignored view.
Jim S <jim@jimXscott.co.uk> wrote:
On Tue, 13 Jul 2021 11:52:28 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
On Fri, 9 Jul 2021 21:36:59 -0500, VanguardLH wrote:
Jim S <jim@jimXscott.co.uk> wrote:
I wish to create a filter which will markread (!markread) any article >>>>>> which conatains a specific word. In one of my groups someone posts a >>>>>> weather report and others reply withn their own. The inital post
always contains the same three letters e.g. ABC followed by the date. >>>>>> I want to mark as read solely on ABC not the sender.
!markread Subject {^ABC}
for any Subject header that starts with ABC starting in column 1.
!markread Subject {^ABC\b}
same as above, but expects a word boundary after the "ABC" string.
To include the date string you say is included means I'd have to see the >>>>> format for that substring. However, how many other posts have you seen >>>>> that start with "ABC"? Maybe you would just showing an example string, >>>>> and "ABC" is not what the Subject header begins with.
You also say "article" instead of header. Are you wanting to search >>>>> within a header, or within the body of the message?
Also, do you want replies to the markread article also marked as read, >>>>> or leave them marked unread (when new and not yet selected)? Dialog has >>>>> an option "watch/ignore works on subthread" to apply the setting not >>>>> just to the target article, but also on all replies to that article
(parent and children get similarly flagged); however, that only works >>>>> when you flag an article as ignored (!ignore) or watched (!watch).
Thanks V
Yes I am talking about text (ABC) in a header. I see you suggest !ignore >>>> rather than !markread (I am set up to only see unread). Is that preferable?
Can you run that bit about not seeing replies to articles I am 'ignoring' >>>> past me again.
With a view that only shows unread messages, how do you manage to follow >>> a thread you've been watching and read before? Once you read a message, >>> it would get marked as read, and disappear from your Unread view.
^ABC means:
^ = anchor the string to column one; else, the filter might look for a
substring anywhere in the header. {ABC} would find ABC starting in
column 1, or somethingABCsomething (e.g., crabcake). You said the
article had a Subject header that *started* with ABC, so use the ^
to anchor the string to column 1.
Although the Subject might start with ABC, does that mean it is a word
of just those 3 characters, or there are more characters to the word,
like ABCsomething? If ABC is a word, there is a word boundary after the >>> string, like a space, tab, or newline. That's why my other suggestion
of ^ABC\b looks for a *word* of ABC at the start of the Subject header
instead of ABCsomething.
Dialog has the ability to apply the ignore or watch flags to subthreads
(replies) of a message. That means if you are filtering out a poster or >>> topic, you can also filter out any replies to that unwanted message.
That is, if you filter out a message, perhaps you don't want to see any
replies to it, too. However, Dialog only applies the ignore or watch
flags to a subthread. No option to do the same with the markread flag.
If you are firing rules to mark as read a message, do you still want to
see replies to that message? Or arre you unmarking a message just to
keep your eyes from wandering over to an unwanted message?
ABC is actually GMB - something like Good Morning Boys followed by the
weather where he is. The replies give the weather wherever the recipient
happens to be.
I gave up Ham Radio once it seemed mainly to consist of weather reports
from other Hams around the world (and my morse code was never good)
So I dont want any header that starts GMB or any reply.
Sounds like you don't want to see the weathery replies, either.
Settings -> General Settings -> Misc
Watch/Ignore works on subthreads
As mentioned, that option only works when using the watch or ignore
flags, not the markread flag. When enabled, when a rule marks a message
as watched, all replies under it are also flagged as watched.
Similarly, when a rule marks a message a ignored, all replies under it
are also flagged as ignored. That just sets the watch or ignore flag on
a message and all replies to it.
To actually hide those messages and their replies, you have to switch to
the Hide Ignored Messages view (Ctrl+F6). Look under Group -> Message
Views. I actually defined buttons to add to the header pane's toolbar
to switch between views. If you go into Manage Views, the Hide Ignored
view only has the "Not Ignored" attribute set; i.e., only non-ignored messages are visible. I don't know if Dialog comes with that as a
pre-set view, or if I edited one of the view slots to that name and set
that attribute.
Instead of !markread, use !ignore in your rule. Enable the "works on subthreads" option. And use a Hide Ignored view by default. Even for
the worst trolls, I don't delete their messages, just hide them. If
someone says something that hints that I've missed something that
someone said that might have value despite their trolling history, I can quickly click on the All Messages toolbar button to see all those ignore-flagged messages that disappear under the Hide Ignored view.
You don't have to hide the ignore-flagged messages, but then you'll see
them highlighted as new messages along with any replies to them with the Ignore flag shown on them. Tis a pity Dialog doesn't have a "Markread
works on subthreads" option, too, but it doesn't, so the only way to
flag (and hide) an unwanted message and its replies (i.e., a subthread)
is to use the ignore flag and use the Hide Ignored view.
It's been two months since I looked at this thread.
FWIW your suggestion of "!ignore Subject {^GMT}" never did work as today's >weather report "GMT Monday 6th September 2021" popped up as ever. Only the >day changes :(
On Tue, 13 Jul 2021 15:43:11 -0500, VanguardLH wrote:[...]
[...]Sounds like you don't want to see the weathery replies, either.
Settings -> General Settings -> Misc
Watch/Ignore works on subthreads
[...]when a rule marks a message a ignored, all replies under it
are also flagged as ignored.
[...]To actually hide those messages and their replies, you have to switch to
the Hide Ignored Messages view (Ctrl+F6). Look under Group -> Message
Views.
[...]You don't have to hide the ignore-flagged messages, but then you'll see
them highlighted as new messages along with any replies to them with the
Ignore flag shown on them.
It's been two months since I looked at this thread.
FWIW your suggestion of "!ignore Subject {^GMT}" never did work as today's weather report "GMT Monday 6th September 2021" popped up as ever. Only the day changes :(
It's been two months since I looked at this thread. FWIW your
suggestion of "!ignore Subject {^GMT}" never did work as today's
weather report "GMT Monday 6th September 2021" popped up as ever.
Only the day changes :(
On Mon, 6th Sep 2021 13:30:41 +0100, Jim S wrote:
On Tue, 13 Jul 2021 15:43:11 -0500, VanguardLH wrote:[...]
[...]Sounds like you don't want to see the weathery replies, either.
Settings -> General Settings -> Misc
Watch/Ignore works on subthreads
[...]when a rule marks a message a ignored, all replies under it
are also flagged as ignored.
[...]To actually hide those messages and their replies, you have to switch to >>> the Hide Ignored Messages view (Ctrl+F6). Look under Group -> Message
Views.
[...]You don't have to hide the ignore-flagged messages, but then you'll see
them highlighted as new messages along with any replies to them with the >>> Ignore flag shown on them.
It's been two months since I looked at this thread.
FWIW your suggestion of "!ignore Subject {^GMT}" never did work as today's >> weather report "GMT Monday 6th September 2021" popped up as ever. Only the >> day changes :(
I don't think, you really tuned all your settings and filter rules according to the settings VanguardLH suggested. I cited some of the most relevant ones for your usage scenario: Filtering all messages that start with "GMB" with
a following word boundary and all replies to such messages. (If I interpret your requirements correctly.)
Provided, you set above mentioned option "Watch/Ignore works on subthreads", you probably want:
!ignore,markread Subject {^GMB\b}
Please note, that I used ignore *and* markread. - To mark the first message of the thread as read and exempt this message and all following ones from automatically loading bodies. All following (= ignored) messages will also
be marked as read. But not because of the "markread" entry in the action rule. Ignore automatically marks follow-ups as read. (Just not the initial message.)
If you do not want to see ignored and/or unread messages, you need to activate an appropriate view, as well. (As VanguardLH already suggested.)
If this doesn't work, post a Message-ID to an example (or post the whole Subject line of an example), post the Scoring&Action rule and explain, what you expect from that rule and what the (differing) outcome is. Also check, that you wrote the Scoring&Action rule inside a Scoring&Action section, that really matches the appropriate group name.
Bernd
Every group I use only displays unread messages, so if the filter works I might never know :)
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 482 |
Nodes: | 16 (0 / 16) |
Uptime: | 74:33:18 |
Calls: | 9,572 |
Calls today: | 3 |
Files: | 13,666 |
Messages: | 6,142,508 |