Considering that the mail number per day of this mailing list is quite
large, is there a way to only receive the topics I participated in or
initiated on this mailing list?
Regards
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
I'm not sure if this can be done by Gmail.
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
From: Jeff King <hidden> Date: 2021-02-02 08:58:55
On Tue, Feb 02, 2021 at 04:31:59PM +0800, Hongyi Zhao wrote:
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
quoted
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
I'm not sure if this can be done by Gmail.
If you only care about topics that you have participated in, the easiest
thing is to simply unsubscribe from the list. The usual convention on
this list is to keep recipients in the to/cc fields intact, so you'll
continue to receive those emails directly from their senders.
-Peff
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
Thank you very much for your comment. It seems that the following
Gmail filter will do the trick:
From: *@vger.kernel.org
To or Cc: -hongyi.zhao@gmail.com
But I can't find the Cc field on the filter panel.
Regards
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
On Tue, Feb 2, 2021 at 4:58 PM Jeff King [off-list ref] wrote:
On Tue, Feb 02, 2021 at 04:31:59PM +0800, Hongyi Zhao wrote:
quoted
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
quoted
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
I'm not sure if this can be done by Gmail.
If you only care about topics that you have participated in, the easiest
thing is to simply unsubscribe from the list.
Do you mean I still can post to this list without subscription to it?
The usual convention on this list is to keep recipients in the to/cc fields intact, so you'll
continue to receive those emails directly from their senders.
-Peff
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
You can also read the archive at https://lore.kernel.org/git if you
later feel like checking for threads you might have missed.
-Peff
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
On Tue, Feb 2, 2021 at 6:02 AM Hongyi Zhao [off-list ref] wrote:
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
quoted
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
Thank you very much for your comment. It seems that the following
Gmail filter will do the trick:
From: *@vger.kernel.org
To or Cc: -hongyi.zhao@gmail.com
But I can't find the Cc field on the filter panel.
On Tue, Feb 2, 2021 at 10:28 PM Matheus Tavares Bernardino
[off-list ref] wrote:
On Tue, Feb 2, 2021 at 6:02 AM Hongyi Zhao [off-list ref] wrote:
quoted
On Tue, Feb 2, 2021 at 1:41 PM Junio C Hamano [off-list ref] wrote:
quoted
You can, on _your_ end, filter incoming messages that are sent via
vger.kernel.org and do not have your address on To or Cc.
Thank you very much for your comment. It seems that the following
Gmail filter will do the trick:
From: *@vger.kernel.org
To or Cc: -hongyi.zhao@gmail.com
But I can't find the Cc field on the filter panel.
Thanks a lot for your notes and I applied the setting rules suggested
by you now.
BTW, I'm not sure whether the following two formats are equivalent or not:
list:(<git.vger.kernel.org>) and list:([off-list ref])
Regards
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
You can also read the archive at https://lore.kernel.org/git if you
later feel like checking for threads you might have missed.
Btw, you can use the "tc:" prefix to search To/Cc: fields
as documented in https://lore.kernel.org/git/_/text/help/
You can get all the messages sent to you in gzipped mboxrd
format via:
curl -sSf -d '' 'https://lore.kernel.org/git/?q=tc:hongyi&x=m' >mboxrd.gz
And public-inbox.org/git still exists for redundancy and dogfooding:
curl -sSf -d '' 'https://public-inbox.org/git/?q=tc:hongyi&x=m' >mboxrd.gz
There may be a CLI tool for dealing with that in the near future
that lets you keep track of which messages you've read/unread or tagged :>
There may be a CLI tool for dealing with that in the near future
that lets you keep track of which messages you've read/unread or tagged :>
--
Assoc. Prof. Hongyi Zhao [off-list ref]
Theory and Simulation of Materials
Hebei Polytechnic University of Science and Technology engineering
NO. 552 North Gangtie Road, Xingtai, China
Oops, leaving out '-s' for curl would've shown you the error.
It's gzipped for bandwidth + I/O savings and truncation checking),
so you can pipe it to zcat or "pigz -dc":
curl -Sf -d '' 'https://public-inbox.org/git/?q=tc:hongyi&x=m' | zcat