Display update bug in notmuch new
Thomas Schneider
qsx at chaotikum.eu
Mon Jul 30 06:24:20 PDT 2018
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 at 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 832 bytes
Desc: not available
URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20180730/27ec32af/attachment.sig>
More information about the notmuch
mailing list