9front - general discussion about 9front
 help / color / mirror / Atom feed
From: theinicke@bss-wf.de
To: 9front@9front.org
Subject: Re: [9front] Mailing list mails completely lost?
Date: Fri, 25 Jun 2021 20:58:07 +0200	[thread overview]
Message-ID: <007BBC0B1E046D712A05F694E8C57E5C@bss-wf.de> (raw)
In-Reply-To: <724d657b-7522-7848-7c8c-97d8b9d0514f@bss-wf.de>

Just as an update, going to be quite now:

In the meantime both my last mails got delivered to my mailbox
(the aforementioned mails are still in limbo).

Also if someone likes the script, I have changed it to take all
the mail files into account:

#!/bin/rc

argv0=$0
fn usage {
	echo usage: $argv0 '[-ds datestart] [-de dateend] searchstr' >[1=2]
	exit 'usage'
}
datestart=()
dateend=()
while(~ $1 -*){
	switch($1){
	case -ds
		datestart=$2
		shift
	case -de
		dateend=$2
		shift
	case * 
		usage
	}
	shift
}
if(! ~ $#* 1)
	usage

searchstr=$"1

ramfs
mkdir /tmp/mails
for(f in `{ls | sed -n '/^[0-9]+\.[0-9][0-9](\.tmp)?$/p' | sort -rn}) {
	date = `{echo $f | sed 's/\.[0-9][0-9](\.tmp)?$//'}
	if(~ $#datestart 0 || test $date -ge $datestart) {
		if(~ $#dateend 0 || test $date -le $dateend) {
			if(grep -i $"searchstr <$"f >/dev/null) {
				aux/stub /tmp/mails/^$f
				bind $f /tmp/mails/^$f
			}
		}
	}
}

--
Tobias Heinicke

Quoth Tobias Heinicke <theinicke@bss-wf.de>:
> Interestingly enough my last mail was not delivered to me (sent with 
> acmemail(1)) while the former was - this made me think that my mail 
> server may not like something in the header, but comparing
> 1624575618.00 (which I have not received)
> 1624544584.00 (which I have received) with each other this does not seem 
> to be the case as those mail headers are almost identical..
> 
> Anyway this mail is mostly for testing but also if someone experiences 
> something similar and has not yet got a better way to find something in 
> the archive, I have wrote the attached script for dealing with the archive.
> 
> Ex:
> Out of the 5 mails the following provided me the only one that I have 
> not received is 1624575618.00:
> 
> cpu% 9fs 9front.org
> cpu% cd /n/9front.org/lists/9front
> cpu% mails/find -ds `{seconds '20 Jun 2021'} -de `{seconds '27 Jun 
> 2021'} 'From: igor@9lab.org'
> 
> --
> Tobias Heinicke
> 
> On 6/25/21 1:29 AM, Stanley Lieber wrote:
> > On June 24, 2021 6:46:07 PM EDT, igor@9lab.org wrote:
> >> Quoth ori@eigenstate.org:
> >>> Quoth Stanley Lieber <sl@stanleylieber.com>:
> >>>> On June 24, 2021 3:37:43 PM EDT, Kurt H Maier <khm@sciops.net> wrote:
> >>>>> On Thu, Jun 24, 2021 at 09:05:44PM +0200, Tobias Heinicke wrote:
> >>>>>> Anyhow I had send the following mail and it was never delivered (or at
> >>>>>> least I have not received it from the ML):
> >>>>>
> >>>>> I got this message.
> >>>>> Received: (qmail 75698 invoked from network); 21 Jun 2021 10:59:06 -0700
> >>>>>
> >>>>>
> >>>>> khm
> >>>>>
> >>>>
> >>>> me too.
> >>>>
> >>>> sl
> >>>
> >>> The mailing list archives are available over 9p.
> >>> if you're not sure that a message arrived, you
> >>> can check.
> >>
> >> There is also the following web based mailing list
> >> archive:
> >>
> >> • https://inbox.vuxu.org/9front/
> >>
> >> …mainly useful if you are on a non Plan9 system
> >> without access to 9p or you want to link to posts
> >>from a web page.
> >>
> >>
> >>
> >>
> > 
> > I was not aware this existed.
> > 
> > sl
> > 
> 


  reply	other threads:[~2021-06-25 23:38 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-24 19:05 Tobias Heinicke
2021-06-24 19:37 ` Kurt H Maier
2021-06-24 19:51   ` Stanley Lieber
2021-06-24 22:21     ` ori
2021-06-24 22:46       ` igor
2021-06-24 23:29         ` Stanley Lieber
2021-06-25  5:11           ` theinicke
2021-06-25 14:22             ` Stanley Lieber
2021-06-25 18:02               ` Kurt H Maier
2021-06-25 21:21                 ` Stanley Lieber
2021-06-25 22:58                   ` Steffen Nurpmeso
2021-06-25 22:02               ` kvik
2021-07-25 19:01               ` Stanley Lieber
2021-07-25 22:31                 ` ori
2021-07-26  8:13                 ` hiro
2021-06-25  8:44           ` Tobias Heinicke
2021-06-25 18:58             ` theinicke [this message]
2021-06-26 13:19 ` cinap_lenrek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=007BBC0B1E046D712A05F694E8C57E5C@bss-wf.de \
    --to=theinicke@bss-wf.de \
    --cc=9front@9front.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).