* [ISSUE] mpick: filter by CC
@ 2020-09-25 12:47 PaperMountainStudio
2020-11-06 18:41 ` Seirdy
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: PaperMountainStudio @ 2020-09-25 12:47 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 265 bytes --]
New issue by PaperMountainStudio on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186
Description:
Is this possible? I have a mailing list where sometimes people add the ML to CC, so it doesn't get filtered when I use `to =~ "@xxxxxxxx.com"`.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
@ 2020-11-06 18:41 ` Seirdy
2020-11-06 20:21 ` Duncaen
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Seirdy @ 2020-11-06 18:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 160 bytes --]
New comment by Seirdy on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723238333
Comment:
Putting together a tiny patch.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
2020-11-06 18:41 ` Seirdy
@ 2020-11-06 20:21 ` Duncaen
2020-11-06 20:25 ` Duncaen
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Duncaen @ 2020-11-06 20:21 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 254 bytes --]
New comment by Duncaen on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723282507
Comment:
You can already use strings to match any header, the keywords were added at first and are kept for backwards compatibility.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
2020-11-06 18:41 ` Seirdy
2020-11-06 20:21 ` Duncaen
@ 2020-11-06 20:25 ` Duncaen
2020-11-06 21:04 ` Seirdy
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Duncaen @ 2020-11-06 20:25 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 294 bytes --]
New comment by Duncaen on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723283826
Comment:
`"cc" =~ "foo"` already works and as far as I understand this issue is about extending the `to` keyword to not only match the to header, but also the `cc` header.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
` (2 preceding siblings ...)
2020-11-06 20:25 ` Duncaen
@ 2020-11-06 21:04 ` Seirdy
2020-11-06 22:02 ` PaperMountainStudio
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Seirdy @ 2020-11-06 21:04 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 372 bytes --]
New comment by Seirdy on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723298794
Comment:
On Fri Nov 6, 2020 at 12:25 PM PST, Duncan Overbruck wrote:
> `"cc" =~ "foo"` already works
Ah, I didn't know that. Guess
https://github.com/leahneukirchen/mblaze/pull/192 isn't needed anymore;
feel free to close it if it's not necessary.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
` (3 preceding siblings ...)
2020-11-06 21:04 ` Seirdy
@ 2020-11-06 22:02 ` PaperMountainStudio
2020-11-06 22:02 ` [ISSUE] [CLOSED] " PaperMountainStudio
2020-11-06 22:03 ` PaperMountainStudio
6 siblings, 0 replies; 8+ messages in thread
From: PaperMountainStudio @ 2020-11-06 22:02 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 797 bytes --]
New comment by PaperMountainStudio on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723319826
Comment:
> as far as I understand this issue is about extending the to keyword to not only match the to header, but also the cc header.
I will try to phrase my issues more clearly next time. I do not think the "to" keyword should match "To" and "CC" headers, that would be confusing.
I think "cc" is enough. I didn't know about it, but now, reading the manpage I noticed this line:
```
<hdrprop> ::= from | to | subject | <str>
```
previously I didn't pay much attention to `<str>` when I saw `From`, `To` and `Subject` there. I guess there is a deeper reason why these headers are separate from any other header on this line, but it's a bit confusing.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ISSUE] [CLOSED] mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
` (4 preceding siblings ...)
2020-11-06 22:02 ` PaperMountainStudio
@ 2020-11-06 22:02 ` PaperMountainStudio
2020-11-06 22:03 ` PaperMountainStudio
6 siblings, 0 replies; 8+ messages in thread
From: PaperMountainStudio @ 2020-11-06 22:02 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 268 bytes --]
Closed issue by PaperMountainStudio on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186
Description:
Is this possible? I have a mailing list where sometimes people add the ML to CC, so it doesn't get filtered when I use `to =~ "@xxxxxxxx.com"`.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: mpick: filter by CC
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
` (5 preceding siblings ...)
2020-11-06 22:02 ` [ISSUE] [CLOSED] " PaperMountainStudio
@ 2020-11-06 22:03 ` PaperMountainStudio
6 siblings, 0 replies; 8+ messages in thread
From: PaperMountainStudio @ 2020-11-06 22:03 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 806 bytes --]
New comment by PaperMountainStudio on mblaze repository
https://github.com/leahneukirchen/mblaze/issues/186#issuecomment-723319826
Comment:
> as far as I understand this issue is about extending the to keyword to not only match the to header, but also the cc header.
I will try to phrase my issues more clearly next time. I do not think the "to" keyword should match "To" and "CC" headers, that would be confusing.
I think `"cc" ~= ...` is enough. I didn't know about it, but now, reading the manpage I noticed this line:
```
<hdrprop> ::= from | to | subject | <str>
```
previously I didn't pay much attention to `<str>` when I saw `From`, `To` and `Subject` there. I guess there is a deeper reason why these headers are separate from any other header on this line, but it's a bit confusing.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-11-06 22:03 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-25 12:47 [ISSUE] mpick: filter by CC PaperMountainStudio
2020-11-06 18:41 ` Seirdy
2020-11-06 20:21 ` Duncaen
2020-11-06 20:25 ` Duncaen
2020-11-06 21:04 ` Seirdy
2020-11-06 22:02 ` PaperMountainStudio
2020-11-06 22:02 ` [ISSUE] [CLOSED] " PaperMountainStudio
2020-11-06 22:03 ` PaperMountainStudio
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).