On Mon, Dec 21, 2020 at 01:32:47PM +0100, Matthias Apitz wrote: > Linux has strace(1) (at least it could be installed). I'd start mutt > below strace, like that: > > $ strace -o mutt.tr -f -t mutt .....
OK. So here I have attached two strace snippets while mutt is showing a mail from a Maildir folder. One snippet shows opening a mail where the body is shown and one where the body is not shown. Below is a diff of those two snippets. The interesting part is in the second hunk. This is where the header has been read (every lseek(4,0,SEEK_CUR) corresponds to one header line). After the header has been read, the good invocation will lseek(4,0,SEEK_SET) in order to re-read the Maildir file. Then it creates a temp file, dumps the contents to this tempfle, and closes it. Then it reopens the file, deletes it and reads the contents back. The bad snippet skips all this. It just closes the Maildir file. Both snippets and the diff are attached to this mail with un-shortened strings. Here is the diff with shortened strings for readability: --- mutt.ok 2020-12-21 18:06:43.740563995 +0100 +++ mutt.bad 2020-12-21 18:06:40.624565819 +0100 @@ -8,10 +8,10 @@ 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 getpid() = 22617 22617 getuid() = 1000 -22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = -1 ENOENT (No such file or directory) +22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = -1 ENOENT (No such file or directory) 22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101520, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 -22617 lstat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 +22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 +22617 lstat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fcntl(3, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) 22617 openat(AT_FDCWD, "/home/jw/Maildir/.ML.mutt/cur/1608410405.M316715P6694.raven.wolf.lan,S=4769,W=4880:2,S", O_RDONLY) = 4 @@ -89,35 +89,12 @@ 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 lseek(3, 0, SEEK_CUR) = 0 -22617 lseek(4, 0, SEEK_SET) = 0 -22617 read(4, "Return-Path: <mutt-users-boun...@mutt.org>\nX-Origina ....", 4096) = 4096 -22617 getpid() = 22617 -22617 getuid() = 1000 -22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = -1 ENOENT (No such file or directory) -22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101519, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 5 -22617 lstat("/tmp/mutt-raven-1000-22617-9076436961676064980", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 fcntl(5, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) -22617 lseek(4, 4096, SEEK_SET) = 4096 -22617 read(4, " > hours or even days, just to eventually ...", 4096) = 673 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 read(4, "", 4096) = 0 -22617 lseek(5, 0, SEEK_CUR) = 0 -22617 write(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, ...", 1465) = 1465 -22617 close(5) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_RDONLY) = 5 -22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = 0 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=1465, ...}) = 0 -22617 read(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin ...", 4096) = 1465 -22617 read(5, "", 4096) = 0 -22617 close(5) = 0 22617 close(4) = 0 -22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: ...", 1647) = 1647 +22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>...", 182) = 182 22617 close(3) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_RDONLY) = 3 -22617 stat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 -22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = 0 +22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_RDONLY) = 3 +22617 stat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 +22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = 0 22617 write(1, "\33[?25l", 6) = 6 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 @@ -128,34 +105,14 @@ 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 -22617 fstat(3, {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 -22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef ...", 4096) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 +22617 fstat(3, {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 +22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf ...", 4096) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 @@ -163,7 +120,7 @@ 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 -22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 ...", 2084) = 2084 +22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 ...", 485) = 485 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 poll([{fd=0, events=POLLIN}], 1, 300000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "\33", 1) = 1 -- Josef Wolf j...@raven.inka.de
22617 stat("/home/jw/Maildir/.ML.mutt/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.ML.mutt/cur", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[?25l", 6) = 6 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 stat("/home/jw/Maildir/.ML.mutt/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.ML.mutt/cur", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[?25l", 6) = 6 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 getpid() = 22617 22617 getuid() = 1000 22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = -1 ENOENT (No such file or directory) 22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101520, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 22617 lstat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fcntl(3, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) 22617 openat(AT_FDCWD, "/home/jw/Maildir/.ML.mutt/cur/1608410405.M316715P6694.raven.wolf.lan,S=4769,W=4880:2,S", O_RDONLY) = 4 22617 lseek(4, 0, SEEK_CUR) = 0 22617 lseek(4, 0, SEEK_CUR) = 0 22617 fstat(4, {st_mode=S_IFREG|0600, st_size=4769, ...}) = 0 22617 read(4, "Return-Path: <mutt-users-boun...@mutt.org>\nX-Original-To: j...@raven.inka.de\nDelivered-To: j...@raven.inka.de\nReceived: by raven.inka.de (Postfix, from userid 460)\n\tid 006A760127; Sat, 19 Dec 2020 21:40:04 +0100 (CET)\nEnvelope-to: j...@raven.inka.de\nReceived: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136])\n\tby mail.inka.de with esmtps \n\tid 1kqis2-00131O-HS; Sat, 19 Dec 2020 21:30:30 +0100\nReceived: from localhost (localhost [127.0.0.1])\n\tby silver.osuosl.org (Postfix) with ESMTP id 957EC20481;\n\tSat, 19 Dec 2020 20:30:22 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from silver.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id Qo2OYoBb71uj; Sat, 19 Dec 2020 20:30:21 +0000 (UTC)\nReceived: from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby silver.osuosl.org (Postfix) with ESMTP id 09D1D20470;\n\tSat, 19 Dec 2020 20:30:14 +0000 (UTC)\nX-Original-To: mutt-users@mutt.org\nDelivered-To: mutt-us...@osuosl.org\nReceived: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133])\n by ash.osuosl.org (Postfix) with ESMTP id 4F74E1BF3A0\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nReceived: from localhost (localhost [127.0.0.1])\n by hemlock.osuosl.org (Postfix) with ESMTP id 4C3828760B\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from hemlock.osuosl.org ([127.0.0.1])\n by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n with ESMTP id yuu6gyDHx-y2 for <mutt-users@mutt.org>;\n Sat, 19 Dec 2020 20:30:09 +0000 (UTC)\nX-Greylist: from auto-whitelisted by SQLgrey-1.7.6\nReceived: from mail.inka.de (quechua.inka.de [193.197.184.2])\n by hemlock.osuosl.org (Postfix) with ESMTPS id 00B6587608\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:08 +0000 (UTC)\nReceived: from raven.inka.de (uucp@[127.0.0.1])\n by mail.inka.de with uucp (rmailwrap 0.5) \n id 1kqird-001308-Ml; Sat, 19 Dec 2020 21:30:05 +0100\nReceived: by raven.inka.de (Postfix, from userid 1000)\n id BE7B160125; Sat, 19 Dec 2020 21:26:55 +0100 (CET)\nDate: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nMessage-ID: <20201219202655.ge15...@raven.inka.de>\nMail-Followup-To: Josef Wolf <j...@raven.inka.de>, mutt-users@mutt.org\nReferences: <20201218101623.ga1...@raven.inka.de> <x90ixoaxdqvbn...@afu.lan>\n <20201219124436.gd15...@raven.inka.de> <x95d7qp7bfghp...@afu.lan>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=us-ascii\nContent-Disposition: inline\nIn-Reply-To: <x95d7qp7bfghp...@afu.lan>\nUser-Agent: Mutt/1.10.1 (2018-07-13)\nX-BeenThere: mutt-users@mutt.org\nX-Mailman-Version: 2.1.29\nPrecedence: list\nList-Id: <mutt-users.mutt.org>\nList-Unsubscribe: <http://lists.mutt.org/mailman/options/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=unsubscribe>\nList-Archive: <http://lists.mutt.org/pipermail/mutt-users/>\nList-Post: <mailto:mutt-users@mutt.org>\nList-Help: <mailto:mutt-users-requ...@mutt.org?subject=help>\nList-Subscribe: <http://lists.mutt.org/mailman/listinfo/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=subscribe>\nErrors-To: mutt-users-boun...@mutt.org\nSender: \"Mutt-users\" <mutt-users-boun...@mutt.org>\nLines: 42\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > >", 4096) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 lseek(3, 0, SEEK_CUR) = 0 22617 lseek(4, 0, SEEK_SET) = 0 22617 read(4, "Return-Path: <mutt-users-boun...@mutt.org>\nX-Original-To: j...@raven.inka.de\nDelivered-To: j...@raven.inka.de\nReceived: by raven.inka.de (Postfix, from userid 460)\n\tid 006A760127; Sat, 19 Dec 2020 21:40:04 +0100 (CET)\nEnvelope-to: j...@raven.inka.de\nReceived: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136])\n\tby mail.inka.de with esmtps \n\tid 1kqis2-00131O-HS; Sat, 19 Dec 2020 21:30:30 +0100\nReceived: from localhost (localhost [127.0.0.1])\n\tby silver.osuosl.org (Postfix) with ESMTP id 957EC20481;\n\tSat, 19 Dec 2020 20:30:22 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from silver.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id Qo2OYoBb71uj; Sat, 19 Dec 2020 20:30:21 +0000 (UTC)\nReceived: from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby silver.osuosl.org (Postfix) with ESMTP id 09D1D20470;\n\tSat, 19 Dec 2020 20:30:14 +0000 (UTC)\nX-Original-To: mutt-users@mutt.org\nDelivered-To: mutt-us...@osuosl.org\nReceived: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133])\n by ash.osuosl.org (Postfix) with ESMTP id 4F74E1BF3A0\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nReceived: from localhost (localhost [127.0.0.1])\n by hemlock.osuosl.org (Postfix) with ESMTP id 4C3828760B\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from hemlock.osuosl.org ([127.0.0.1])\n by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n with ESMTP id yuu6gyDHx-y2 for <mutt-users@mutt.org>;\n Sat, 19 Dec 2020 20:30:09 +0000 (UTC)\nX-Greylist: from auto-whitelisted by SQLgrey-1.7.6\nReceived: from mail.inka.de (quechua.inka.de [193.197.184.2])\n by hemlock.osuosl.org (Postfix) with ESMTPS id 00B6587608\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:08 +0000 (UTC)\nReceived: from raven.inka.de (uucp@[127.0.0.1])\n by mail.inka.de with uucp (rmailwrap 0.5) \n id 1kqird-001308-Ml; Sat, 19 Dec 2020 21:30:05 +0100\nReceived: by raven.inka.de (Postfix, from userid 1000)\n id BE7B160125; Sat, 19 Dec 2020 21:26:55 +0100 (CET)\nDate: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nMessage-ID: <20201219202655.ge15...@raven.inka.de>\nMail-Followup-To: Josef Wolf <j...@raven.inka.de>, mutt-users@mutt.org\nReferences: <20201218101623.ga1...@raven.inka.de> <x90ixoaxdqvbn...@afu.lan>\n <20201219124436.gd15...@raven.inka.de> <x95d7qp7bfghp...@afu.lan>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=us-ascii\nContent-Disposition: inline\nIn-Reply-To: <x95d7qp7bfghp...@afu.lan>\nUser-Agent: Mutt/1.10.1 (2018-07-13)\nX-BeenThere: mutt-users@mutt.org\nX-Mailman-Version: 2.1.29\nPrecedence: list\nList-Id: <mutt-users.mutt.org>\nList-Unsubscribe: <http://lists.mutt.org/mailman/options/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=unsubscribe>\nList-Archive: <http://lists.mutt.org/pipermail/mutt-users/>\nList-Post: <mailto:mutt-users@mutt.org>\nList-Help: <mailto:mutt-users-requ...@mutt.org?subject=help>\nList-Subscribe: <http://lists.mutt.org/mailman/listinfo/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=subscribe>\nErrors-To: mutt-users-boun...@mutt.org\nSender: \"Mutt-users\" <mutt-users-boun...@mutt.org>\nLines: 42\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > >", 4096) = 4096 22617 getpid() = 22617 22617 getuid() = 1000 22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = -1 ENOENT (No such file or directory) 22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101519, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 5 22617 lstat("/tmp/mutt-raven-1000-22617-9076436961676064980", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fcntl(5, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) 22617 lseek(4, 4096, SEEK_SET) = 4096 22617 read(4, " > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 673 22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 read(4, "", 4096) = 0 22617 lseek(5, 0, SEEK_CUR) = 0 22617 write(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 1465) = 1465 22617 close(5) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_RDONLY) = 5 22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = 0 22617 fstat(5, {st_mode=S_IFREG|0600, st_size=1465, ...}) = 0 22617 read(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 1465 22617 read(5, "", 4096) = 0 22617 close(5) = 0 22617 close(4) = 0 22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 1647) = 1647 22617 close(3) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_RDONLY) = 3 22617 stat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = 0 22617 write(1, "\33[?25l", 6) = 6 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 lseek(3, 0, SEEK_CUR) = 1647 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 F\33[53G0\33[60GTo mutt-users@mut ( 51) \33[1P\33[3;42H1 rs \33[3;60HKevin J. McCarthy ( 55) \33[1P\33[4;42H2 F\33[4;60HTo mutt-users@mut ( 96) \33[1P\33[5;42H\33[37m\33[41m3\33[5;52H19\33[5;80H42) \342\224\202 \342\224\214>\r\n\33[39;49m\33(B\33[m.spam \r\n/var/spool/mail/jw\33[7;37HN\n\n| 17 Dec 18 2020 Felix Finch\33[78G( 31) \33(B\33[0;1m\33[35m\342\224\202 \342\224\214>\33[10;42H\33[39m\33(B\33[m8 F\33[10;60HTo mutt-users@mut ( 47\33[85G\33[1P\33[12;46H\33(B\33[0;1m\33[31mat, 19\33[12;63H1:26:55\33[18;39H\33[39m\33(B\33[mOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\33[19;39H\33[34m> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote: \33[20;39H>\33[35m > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\33[34m \33[21;39H>\33[35m >\33[31m > Does Mutt even show the attribution header in the reply?\33[34m \33[22;39H>\33[35m > \33[34m \33[23;39H>\33[35m > What is the attribution header?\33[34m \33[24;41H \33[25;39H> Sorry I shouldn't have said \"header\". I meant the value of $attribution \33[26;41Hthat is prepended to the quoted text in a reply. Like the\33[27;39H> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote: \33[28;39H> at the top of this email. \33[30;39H\33[39m\33(B\33[mAh.\33[K\n\10\10\10\33[K\nAFAIR, this line is present in. But I'll give more attention on that next time.\33[K\33[34;39H\33[34m>\33[35m >\33[31m >\33[32m > Changing to a different mail or even to a different folder don't help. The\33[34m \33[35;39H>\33[35m >\33[31m >\33[32m > only way is to quit mutt and start again. Then it works again for several\33[34m \33[36;40H\33[35m >\33[31m >\33[32m > hours or even days, just to eventually stop showing mail contents again.\33[37;40H\33[35m >\33[31m > \33[34m \n\33[8G\33[39m\33(B\33[0;7m3\33[129G64%\33(B\33[m", 2084) = 2084 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 poll([{fd=0, events=POLLIN}], 1, 300000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "\33", 1) = 1 22617 poll([{fd=0, events=POLLIN}], 1, 1000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "O", 1) = 1 22617 poll([{fd=0, events=POLLIN}], 1, 1000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "A", 1) = 1 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 close(3) = 0
22617 stat("/home/jw/Maildir/.ML.mutt/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.ML.mutt/cur", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[?25l", 6) = 6 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 stat("/home/jw/Maildir/.ML.mutt/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.ML.mutt/cur", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[?25l", 6) = 6 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 getpid() = 22617 22617 getuid() = 1000 22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = -1 ENOENT (No such file or directory) 22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101520, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 22617 lstat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fcntl(3, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) 22617 openat(AT_FDCWD, "/home/jw/Maildir/.ML.mutt/cur/1608410405.M316715P6694.raven.wolf.lan,S=4769,W=4880:2,S", O_RDONLY) = 4 22617 lseek(4, 0, SEEK_CUR) = 0 22617 lseek(4, 0, SEEK_CUR) = 0 22617 fstat(4, {st_mode=S_IFREG|0600, st_size=4769, ...}) = 0 22617 read(4, "Return-Path: <mutt-users-boun...@mutt.org>\nX-Original-To: j...@raven.inka.de\nDelivered-To: j...@raven.inka.de\nReceived: by raven.inka.de (Postfix, from userid 460)\n\tid 006A760127; Sat, 19 Dec 2020 21:40:04 +0100 (CET)\nEnvelope-to: j...@raven.inka.de\nReceived: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136])\n\tby mail.inka.de with esmtps \n\tid 1kqis2-00131O-HS; Sat, 19 Dec 2020 21:30:30 +0100\nReceived: from localhost (localhost [127.0.0.1])\n\tby silver.osuosl.org (Postfix) with ESMTP id 957EC20481;\n\tSat, 19 Dec 2020 20:30:22 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from silver.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id Qo2OYoBb71uj; Sat, 19 Dec 2020 20:30:21 +0000 (UTC)\nReceived: from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby silver.osuosl.org (Postfix) with ESMTP id 09D1D20470;\n\tSat, 19 Dec 2020 20:30:14 +0000 (UTC)\nX-Original-To: mutt-users@mutt.org\nDelivered-To: mutt-us...@osuosl.org\nReceived: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133])\n by ash.osuosl.org (Postfix) with ESMTP id 4F74E1BF3A0\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nReceived: from localhost (localhost [127.0.0.1])\n by hemlock.osuosl.org (Postfix) with ESMTP id 4C3828760B\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from hemlock.osuosl.org ([127.0.0.1])\n by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n with ESMTP id yuu6gyDHx-y2 for <mutt-users@mutt.org>;\n Sat, 19 Dec 2020 20:30:09 +0000 (UTC)\nX-Greylist: from auto-whitelisted by SQLgrey-1.7.6\nReceived: from mail.inka.de (quechua.inka.de [193.197.184.2])\n by hemlock.osuosl.org (Postfix) with ESMTPS id 00B6587608\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:08 +0000 (UTC)\nReceived: from raven.inka.de (uucp@[127.0.0.1])\n by mail.inka.de with uucp (rmailwrap 0.5) \n id 1kqird-001308-Ml; Sat, 19 Dec 2020 21:30:05 +0100\nReceived: by raven.inka.de (Postfix, from userid 1000)\n id BE7B160125; Sat, 19 Dec 2020 21:26:55 +0100 (CET)\nDate: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nMessage-ID: <20201219202655.ge15...@raven.inka.de>\nMail-Followup-To: Josef Wolf <j...@raven.inka.de>, mutt-users@mutt.org\nReferences: <20201218101623.ga1...@raven.inka.de> <x90ixoaxdqvbn...@afu.lan>\n <20201219124436.gd15...@raven.inka.de> <x95d7qp7bfghp...@afu.lan>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=us-ascii\nContent-Disposition: inline\nIn-Reply-To: <x95d7qp7bfghp...@afu.lan>\nUser-Agent: Mutt/1.10.1 (2018-07-13)\nX-BeenThere: mutt-users@mutt.org\nX-Mailman-Version: 2.1.29\nPrecedence: list\nList-Id: <mutt-users.mutt.org>\nList-Unsubscribe: <http://lists.mutt.org/mailman/options/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=unsubscribe>\nList-Archive: <http://lists.mutt.org/pipermail/mutt-users/>\nList-Post: <mailto:mutt-users@mutt.org>\nList-Help: <mailto:mutt-users-requ...@mutt.org?subject=help>\nList-Subscribe: <http://lists.mutt.org/mailman/listinfo/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=subscribe>\nErrors-To: mutt-users-boun...@mutt.org\nSender: \"Mutt-users\" <mutt-users-boun...@mutt.org>\nLines: 42\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > >", 4096) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 lseek(3, 0, SEEK_CUR) = 0 22617 close(4) = 0 22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\n", 182) = 182 22617 close(3) = 0 22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_RDONLY) = 3 22617 stat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = 0 22617 write(1, "\33[?25l", 6) = 6 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\n", 4096) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 lseek(3, 0, SEEK_CUR) = 182 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 F\33[53G0\33[60GTo mutt-users@mut ( 51) \33[1P\33[3;42H1 rs \33[3;60HKevin J. McCarthy ( 55) \33[1P\33[4;42H2 F\33[4;60HTo mutt-users@mut ( 96) \33[1P\33[5;42H\33[37m\33[41m3\33[5;52H19\33[5;80H42) \342\224\202 \342\224\214>\r\n\33[39;49m\33(B\33[m.spam \r\n/var/spool/mail/jw\33[7;37HN\n\n| 17 Dec 18 2020 Felix Finch\33[78G( 31) \33(B\33[0;1m\33[35m\342\224\202 \342\224\214>\33[10;42H\33[39m\33(B\33[m8 F\33[10;60HTo mutt-users@mut ( 47\33[85G\33[1P\33[12;46H\33(B\33[0;1m\33[31mat, 19\33[12;63H1:26:55\33[38;8H\33[39m\33(B\33[0;7m3\33[132G\33(B\33[m", 485) = 485 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 poll([{fd=0, events=POLLIN}], 1, 300000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "\33", 1) = 1 22617 poll([{fd=0, events=POLLIN}], 1, 1000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "O", 1) = 1 22617 poll([{fd=0, events=POLLIN}], 1, 1000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "A", 1) = 1 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 close(3) = 0
--- mutt.ok 2020-12-21 18:06:43.740563995 +0100 +++ mutt.bad 2020-12-21 18:06:40.624565819 +0100 @@ -8,10 +8,10 @@ 22617 write(1, "\33[?12l\33[?25h", 12) = 12 22617 getpid() = 22617 22617 getuid() = 1000 -22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = -1 ENOENT (No such file or directory) +22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = -1 ENOENT (No such file or directory) 22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101520, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 -22617 lstat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 +22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3 +22617 lstat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 fcntl(3, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) 22617 openat(AT_FDCWD, "/home/jw/Maildir/.ML.mutt/cur/1608410405.M316715P6694.raven.wolf.lan,S=4769,W=4880:2,S", O_RDONLY) = 4 @@ -89,35 +89,12 @@ 22617 lseek(4, 0, SEEK_CUR) = 4096 22617 fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 22617 lseek(3, 0, SEEK_CUR) = 0 -22617 lseek(4, 0, SEEK_SET) = 0 -22617 read(4, "Return-Path: <mutt-users-boun...@mutt.org>\nX-Original-To: j...@raven.inka.de\nDelivered-To: j...@raven.inka.de\nReceived: by raven.inka.de (Postfix, from userid 460)\n\tid 006A760127; Sat, 19 Dec 2020 21:40:04 +0100 (CET)\nEnvelope-to: j...@raven.inka.de\nReceived: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136])\n\tby mail.inka.de with esmtps \n\tid 1kqis2-00131O-HS; Sat, 19 Dec 2020 21:30:30 +0100\nReceived: from localhost (localhost [127.0.0.1])\n\tby silver.osuosl.org (Postfix) with ESMTP id 957EC20481;\n\tSat, 19 Dec 2020 20:30:22 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from silver.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id Qo2OYoBb71uj; Sat, 19 Dec 2020 20:30:21 +0000 (UTC)\nReceived: from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby silver.osuosl.org (Postfix) with ESMTP id 09D1D20470;\n\tSat, 19 Dec 2020 20:30:14 +0000 (UTC)\nX-Original-To: mutt-users@mutt.org\nDelivered-To: mutt-us...@osuosl.org\nReceived: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133])\n by ash.osuosl.org (Postfix) with ESMTP id 4F74E1BF3A0\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nReceived: from localhost (localhost [127.0.0.1])\n by hemlock.osuosl.org (Postfix) with ESMTP id 4C3828760B\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:10 +0000 (UTC)\nX-Virus-Scanned: amavisd-new at osuosl.org\nReceived: from hemlock.osuosl.org ([127.0.0.1])\n by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n with ESMTP id yuu6gyDHx-y2 for <mutt-users@mutt.org>;\n Sat, 19 Dec 2020 20:30:09 +0000 (UTC)\nX-Greylist: from auto-whitelisted by SQLgrey-1.7.6\nReceived: from mail.inka.de (quechua.inka.de [193.197.184.2])\n by hemlock.osuosl.org (Postfix) with ESMTPS id 00B6587608\n for <mutt-users@mutt.org>; Sat, 19 Dec 2020 20:30:08 +0000 (UTC)\nReceived: from raven.inka.de (uucp@[127.0.0.1])\n by mail.inka.de with uucp (rmailwrap 0.5) \n id 1kqird-001308-Ml; Sat, 19 Dec 2020 21:30:05 +0100\nReceived: by raven.inka.de (Postfix, from userid 1000)\n id BE7B160125; Sat, 19 Dec 2020 21:26:55 +0100 (CET)\nDate: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nMessage-ID: <20201219202655.ge15...@raven.inka.de>\nMail-Followup-To: Josef Wolf <j...@raven.inka.de>, mutt-users@mutt.org\nReferences: <20201218101623.ga1...@raven.inka.de> <x90ixoaxdqvbn...@afu.lan>\n <20201219124436.gd15...@raven.inka.de> <x95d7qp7bfghp...@afu.lan>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=us-ascii\nContent-Disposition: inline\nIn-Reply-To: <x95d7qp7bfghp...@afu.lan>\nUser-Agent: Mutt/1.10.1 (2018-07-13)\nX-BeenThere: mutt-users@mutt.org\nX-Mailman-Version: 2.1.29\nPrecedence: list\nList-Id: <mutt-users.mutt.org>\nList-Unsubscribe: <http://lists.mutt.org/mailman/options/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=unsubscribe>\nList-Archive: <http://lists.mutt.org/pipermail/mutt-users/>\nList-Post: <mailto:mutt-users@mutt.org>\nList-Help: <mailto:mutt-users-requ...@mutt.org?subject=help>\nList-Subscribe: <http://lists.mutt.org/mailman/listinfo/mutt-users>,\n <mailto:mutt-users-requ...@mutt.org?subject=subscribe>\nErrors-To: mutt-users-boun...@mutt.org\nSender: \"Mutt-users\" <mutt-users-boun...@mutt.org>\nLines: 42\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > >", 4096) = 4096 -22617 getpid() = 22617 -22617 getuid() = 1000 -22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = -1 ENOENT (No such file or directory) -22617 statfs("/tmp", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=524288, f_bfree=524061, f_bavail=524061, f_files=4101572, f_ffree=4101519, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 5 -22617 lstat("/tmp/mutt-raven-1000-22617-9076436961676064980", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 fcntl(5, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW) -22617 lseek(4, 4096, SEEK_SET) = 4096 -22617 read(4, " > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 673 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0 -22617 read(4, "", 4096) = 0 -22617 lseek(5, 0, SEEK_CUR) = 0 -22617 write(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 1465) = 1465 -22617 close(5) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-9076436961676064980", O_RDONLY) = 5 -22617 unlink("/tmp/mutt-raven-1000-22617-9076436961676064980") = 0 -22617 fstat(5, {st_mode=S_IFREG|0600, st_size=1465, ...}) = 0 -22617 read(5, "On Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 1465 -22617 read(5, "", 4096) = 0 -22617 close(5) = 0 22617 close(4) = 0 -22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 1647) = 1647 +22617 write(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\n", 182) = 182 22617 close(3) = 0 -22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-7177689561858928903", O_RDONLY) = 3 -22617 stat("/tmp/mutt-raven-1000-22617-7177689561858928903", {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 -22617 unlink("/tmp/mutt-raven-1000-22617-7177689561858928903") = 0 +22617 openat(AT_FDCWD, "/tmp/mutt-raven-1000-22617-1750430088532712185", O_RDONLY) = 3 +22617 stat("/tmp/mutt-raven-1000-22617-1750430088532712185", {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 +22617 unlink("/tmp/mutt-raven-1000-22617-1750430088532712185") = 0 22617 write(1, "\33[?25l", 6) = 6 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 @@ -128,34 +105,14 @@ 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 -22617 fstat(3, {st_mode=S_IFREG|0600, st_size=1647, ...}) = 0 -22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\nOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\n> > > Does Mutt even show the attribution header in the reply?\n> > \n> > What is the attribution header?\n> \n> Sorry I shouldn't have said \"header\". I meant the value of $attribution\n> that is prepended to the quoted text in a reply. Like the\n> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote:\n> at the top of this email.\n\nAh.\n\nAFAIR, this line is present in. But I'll give more attention on that next time.\n\n> > > > Changing to a different mail or even to a different folder don't help. The\n> > > > only way is to quit mutt and start again. Then it works again for several\n> > > > hours or even days, just to eventually stop showing mail contents again.\n> > > \n> > > So, it's able to open the new mailbox, parse it, and display the messages in\n> > > the index, but you can't view a message or its attachments?\n> > \n> > Exactly. If I select a message, it even shows the header of the message. But no\n> > body and no attachmets.\n> \n> What if you invoke the <view-attachments> menu, from the index and from the\n> pager?\n\nAFAIR, it is completely empty. Even the text/plain entry that indicates the\nnormal body is missing.\n\n> -- \n> Kevin J. McCarthy\n> GPG Fingerprint: 8975 A9B3 3AA3 7910 385C 5308 ADEF 7684 8031 6BDA\n\n\n\n-- \nJosef Wolf\n...@raven.inka.de\n\n", 4096) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 -22617 lseek(3, 0, SEEK_CUR) = 1647 +22617 fstat(3, {st_mode=S_IFREG|0600, st_size=182, ...}) = 0 +22617 read(3, "Date: Sat, 19 Dec 2020 21:26:55 +0100\nFrom: Josef Wolf <j...@raven.inka.de>\nTo: mutt-users@mutt.org\nSubject: Re: Mutt stops showing mail contents\nUser-Agent: Mutt/1.10.1 (2018-07-13)\n\n", 4096) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 +22617 lseek(3, 0, SEEK_CUR) = 182 22617 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 @@ -163,7 +120,7 @@ 22617 stat("/home/jw/Maildir/.Drafts", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 22617 access("/home/jw/Maildir/.Drafts/new", F_OK) = 0 22617 stat("/home/jw/Maildir/.Drafts/new", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0 -22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 F\33[53G0\33[60GTo mutt-users@mut ( 51) \33[1P\33[3;42H1 rs \33[3;60HKevin J. McCarthy ( 55) \33[1P\33[4;42H2 F\33[4;60HTo mutt-users@mut ( 96) \33[1P\33[5;42H\33[37m\33[41m3\33[5;52H19\33[5;80H42) \342\224\202 \342\224\214>\r\n\33[39;49m\33(B\33[m.spam \r\n/var/spool/mail/jw\33[7;37HN\n\n| 17 Dec 18 2020 Felix Finch\33[78G( 31) \33(B\33[0;1m\33[35m\342\224\202 \342\224\214>\33[10;42H\33[39m\33(B\33[m8 F\33[10;60HTo mutt-users@mut ( 47\33[85G\33[1P\33[12;46H\33(B\33[0;1m\33[31mat, 19\33[12;63H1:26:55\33[18;39H\33[39m\33(B\33[mOn Sat, Dec 19, 2020 at 10:18:22AM -0800, Kevin J. McCarthy wrote:\33[19;39H\33[34m> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote: \33[20;39H>\33[35m > On Fri, Dec 18, 2020 at 11:51:56AM -0800, Kevin J. McCarthy wrote:\33[34m \33[21;39H>\33[35m >\33[31m > Does Mutt even show the attribution header in the reply?\33[34m \33[22;39H>\33[35m > \33[34m \33[23;39H>\33[35m > What is the attribution header?\33[34m \33[24;41H \33[25;39H> Sorry I shouldn't have said \"header\". I meant the value of $attribution \33[26;41Hthat is prepended to the quoted text in a reply. Like the\33[27;39H> On Sat, Dec 19, 2020 at 01:44:37PM +0100, Josef Wolf wrote: \33[28;39H> at the top of this email. \33[30;39H\33[39m\33(B\33[mAh.\33[K\n\10\10\10\33[K\nAFAIR, this line is present in. But I'll give more attention on that next time.\33[K\33[34;39H\33[34m>\33[35m >\33[31m >\33[32m > Changing to a different mail or even to a different folder don't help. The\33[34m \33[35;39H>\33[35m >\33[31m >\33[32m > only way is to quit mutt and start again. Then it works again for several\33[34m \33[36;40H\33[35m >\33[31m >\33[32m > hours or even days, just to eventually stop showing mail contents again.\33[37;40H\33[35m >\33[31m > \33[34m \n\33[8G\33[39m\33(B\33[0;7m3\33[129G64%\33(B\33[m", 2084) = 2084 +22617 write(1, "\33[6;9r\33[9;1H\n\33[1;39r\33[2;41H10 F\33[53G0\33[60GTo mutt-users@mut ( 51) \33[1P\33[3;42H1 rs \33[3;60HKevin J. McCarthy ( 55) \33[1P\33[4;42H2 F\33[4;60HTo mutt-users@mut ( 96) \33[1P\33[5;42H\33[37m\33[41m3\33[5;52H19\33[5;80H42) \342\224\202 \342\224\214>\r\n\33[39;49m\33(B\33[m.spam \r\n/var/spool/mail/jw\33[7;37HN\n\n| 17 Dec 18 2020 Felix Finch\33[78G( 31) \33(B\33[0;1m\33[35m\342\224\202 \342\224\214>\33[10;42H\33[39m\33(B\33[m8 F\33[10;60HTo mutt-users@mut ( 47\33[85G\33[1P\33[12;46H\33(B\33[0;1m\33[31mat, 19\33[12;63H1:26:55\33[38;8H\33[39m\33(B\33[0;7m3\33[132G\33(B\33[m", 485) = 485 22617 rt_sigaction(SIGINT, {sa_handler=0x56229870b430, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f02b944c5a0}, NULL, 8) = 0 22617 poll([{fd=0, events=POLLIN}], 1, 300000) = 1 ([{fd=0, revents=POLLIN}]) 22617 read(0, "\33", 1) = 1