16 Oct
2009
16 Oct
'09
9:33 p.m.
On Fri, 2009-10-16 at 23:23 +0400, Kostik wrote:
OK, so two problems:
write(7, "From MAILER-DAEMON Fri Oct 16 2"..., 168) = 168 pwrite64(7, "\nContent-Length: 0", 18, 4235) = 18
It's writing a zero byte mail. Was the incoming mail really zero bytes, or is there something that truncates it?
fstat64(7, {st_mode=S_IFREG|0600, st_size=4255, ...}) = 0 fdatasync(7) = 0 write(7, "\n", 1) = 1
write() happened after fdatasync(), that causes this to fail:
close(7) = -1 EDQUOT (Disk quota exceeded)
So this later problem should be fixed by: http://hg.dovecot.org/dovecot-1.2/rev/b5e6de777e52