=- Lars Hecking wrote on Thu 15.Feb'07 at 12:28:27 +0000 -= > Another, maybe unrelated issue is that this mutt is leaving > empty temp directories behind in my $HOME, > e.g. .muttsfqvuB, .muttu0gZlQ.
I've reported this a few weeks ago. That's the effect of the new "secure file creation" mechanism, which leaves those temp-dirs behind on NFS. See #2707 A temp-fix is to replace the "safe_open" with "open" in lib.c: 622 - if ((fd = safe_open (path, flags)) < 0) + if ((fd = open (path, flags,0600)) < 0) BTW, Lars, can you have a look at #1431 again? -- © Rado S. -- You must provide YOUR effort for your goal! EVERY effort counts: at least to show your attitude. You're responsible for ALL of it: you get what you give.
