* Public notmuch.mbox missing some messages which are tagged in nmbug
@ 2017-10-11 1:37 W. Trevor King
2017-10-11 11:04 ` David Bremner
0 siblings, 1 reply; 4+ messages in thread
From: W. Trevor King @ 2017-10-11 1:37 UTC (permalink / raw)
To: notmuch
[-- Attachment #1: Type: text/plain, Size: 2852 bytes --]
I was dusting off my local nmbug repository today, and noticed that
some messages are tagged in the nmbug repository [1] but missing from
our mbox archive [2]. Here's a list:
$ nmbug status
U 20170509021719.13086-2-david@tethera.net obsolete
U 20170509021719.13086-2-david@tethera.net patch
U 20170509021719.13086-3-david@tethera.net obsolete
U 20170509021719.13086-3-david@tethera.net patch
U 20170509021719.13086-4-david@tethera.net obsolete
U 20170509021719.13086-4-david@tethera.net patch
U 20170813074533.2226-1-jani@nikula.org obsolete
U 20170813074533.2226-1-jani@nikula.org patch
U 2fc048ce68331b233ee16b99719635fe7d8a882f.1494445220.git.jani@nikula.org patch
U 2fc048ce68331b233ee16b99719635fe7d8a882f.1494445220.git.jani@nikula.org pushed
U 5fc2d4dd230648ea4939bb06f0bb0ac30c5a8fd3.1494445220.git.jani@nikula.org patch
U 5fc2d4dd230648ea4939bb06f0bb0ac30c5a8fd3.1494445220.git.jani@nikula.org pushed
U 86lgngplvt.fsf@phe.ftfl.ca moreinfo
U 86lgngplvt.fsf@phe.ftfl.ca patch
U 908464f22bc477ad9a986c622aad50a345a5f20d.1494445220.git.jani@nikula.org patch
U 908464f22bc477ad9a986c622aad50a345a5f20d.1494445220.git.jani@nikula.org pushed
U f7ffa56ea5e973ff2a76dc5637e83bf47928ef83.1494445220.git.jani@nikula.org patch
U f7ffa56ea5e973ff2a76dc5637e83bf47928ef83.1494445220.git.jani@nikula.org pushed
Some of those have Message-IDs which suggest their generation date,
but we can lookup the first tag for each message ID in the nmbug
history regardless:
$ for id in $(nmbug status | awk '{print $2}' | uniq);
> do
> nmbug log -- --date=short --format='%ad %h %an %s' --reverse -- "tags/${id}" | head -n1;
> done | sort | uniq
2017-05-08 65b227d David Bremner
2017-05-10 5e0caf7 David Bremner
2017-07-22 17f6f80 David Bremner
2017-08-14 e82eb9c David Bremner
If somebody has copies of those messages, can they push them up into
the mbox? Maybe they went to the freelists list [3]? Maybe they were
off-list? Maybe they just missed inclusion in the mbox?
There may be more messages missing from the archive which I happen to
have locally (e.g. maybe I was CCed), and I haven't checked for those.
But I know the entries listed above were missing as of 2017-10-10
20:41 UTC (my most recent archive download).
Cheers,
Trevor
[1]: https://notmuchmail.org/nmbug/
http://nmbug.notmuchmail.org/git/nmbug-tags.git
[2]: https://notmuchmail.org/archives/notmuch.mbox
[3]: https://www.freelists.org/list/notmuch
--
This email may be signed or encrypted with GnuPG (http://www.gnupg.org).
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Public notmuch.mbox missing some messages which are tagged in nmbug
2017-10-11 1:37 Public notmuch.mbox missing some messages which are tagged in nmbug W. Trevor King
@ 2017-10-11 11:04 ` David Bremner
2017-10-11 13:41 ` Daniel Kahn Gillmor
0 siblings, 1 reply; 4+ messages in thread
From: David Bremner @ 2017-10-11 11:04 UTC (permalink / raw)
To: W. Trevor King, notmuch
"W. Trevor King" <wking@tremily.us> writes:
> If somebody has copies of those messages, can they push them up into
> the mbox? Maybe they went to the freelists list [3]? Maybe they were
> off-list? Maybe they just missed inclusion in the mbox?
It's likely that they were sent to the freelists list. I don't know of
an easy way to add them to the archive on notmuchmail.org, but I'm open
to ideas.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Public notmuch.mbox missing some messages which are tagged in nmbug
2017-10-11 11:04 ` David Bremner
@ 2017-10-11 13:41 ` Daniel Kahn Gillmor
2017-10-11 14:34 ` David Bremner
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Kahn Gillmor @ 2017-10-11 13:41 UTC (permalink / raw)
To: David Bremner, W. Trevor King, notmuch
On Wed 2017-10-11 08:04:05 -0300, David Bremner wrote:
> "W. Trevor King" <wking@tremily.us> writes:
>
>> If somebody has copies of those messages, can they push them up into
>> the mbox? Maybe they went to the freelists list [3]? Maybe they were
>> off-list? Maybe they just missed inclusion in the mbox?
>
> It's likely that they were sent to the freelists list. I don't know of
> an easy way to add them to the archive on notmuchmail.org, but I'm open
> to ideas.
if you have them locally, what if you were to just "bounce" them to the
mailing list right now? that is, pipe them individually into "sendmail
notmuch@notmuchmail.org"
the worst that happens is that some folks get a second copy of those
messages, but if they're using notmuch they won't care :)
--dkg
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Public notmuch.mbox missing some messages which are tagged in nmbug
2017-10-11 13:41 ` Daniel Kahn Gillmor
@ 2017-10-11 14:34 ` David Bremner
0 siblings, 0 replies; 4+ messages in thread
From: David Bremner @ 2017-10-11 14:34 UTC (permalink / raw)
To: Daniel Kahn Gillmor, W. Trevor King, notmuch
Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:
> On Wed 2017-10-11 08:04:05 -0300, David Bremner wrote:
>> "W. Trevor King" <wking@tremily.us> writes:
>>
>>> If somebody has copies of those messages, can they push them up into
>>> the mbox? Maybe they went to the freelists list [3]? Maybe they were
>>> off-list? Maybe they just missed inclusion in the mbox?
>>
>> It's likely that they were sent to the freelists list. I don't know of
>> an easy way to add them to the archive on notmuchmail.org, but I'm open
>> to ideas.
>
> if you have them locally, what if you were to just "bounce" them to the
> mailing list right now? that is, pipe them individually into "sendmail
> notmuch@notmuchmail.org"
>
> the worst that happens is that some folks get a second copy of those
> messages, but if they're using notmuch they won't care :)
I can try, but I seem to recall mailman being hostile to bounces before.
d
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-10-11 14:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-11 1:37 Public notmuch.mbox missing some messages which are tagged in nmbug W. Trevor King
2017-10-11 11:04 ` David Bremner
2017-10-11 13:41 ` Daniel Kahn Gillmor
2017-10-11 14:34 ` David Bremner
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
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 read-only IMAP folder(s) and NNTP newsgroup(s).