unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* Display update bug in notmuch new
@ 2018-07-30 13:24 Thomas Schneider
  2021-12-23 13:17 ` David Bremner
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Schneider @ 2018-07-30 13:24 UTC (permalink / raw)
  To: notmuch

[-- Attachment #1: Type: text/plain, Size: 1208 bytes --]

Hi,

I discovered an issue in notmuch new: when deleting a large amount of
messages (so that it takes long and displays “$time remaining”), it does
not clean the line afterwards:

---
$ pwd
/home/qsx/.maildir/fnord
$ tar xf /tmp/mails.tar
$ notmuch new
Processed 9001 total files in 4s (2113 files/sec.).
Added 9001 new messages to the database.
$ rm new/*
$ notmuch new
No new mail. Removed 9001 messages.lmost no time remaining).
---

Version information: notmuch 0.27, on GNU/Linux

Steps to reproduce:

---
cd $MAILDIR
cat << EOF > /tmp/test.py
ADDRESS = "test@example.org"

import mailbox
import email.message
import email.utils
from datetime import datetime

mb = mailbox.Maildir('./test') # will create if not existing

for i in range(1, 9002): # OVER NINE THOUSAND
    m = email.message.EmailMessage()
    m["From"] = ADDRESS
    m["To"] = ADDRESS
    m["Date"] = email.utils.localtime(datetime.now())
    m["Subject"] = "test {}".format(i)
    m["Message-Id"] = email.utils.make_msgid(idstring = "test.{}".format(i))
    m.set_content("test {}".format(i))
    mb.add(m)
EOF
python3.6 /tmp/test.py
notmuch new
rm -r test
notmuch new
---

	--qsx

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-12-23 13:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-30 13:24 Display update bug in notmuch new Thomas Schneider
2021-12-23 13:17 ` 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).