On Sun, Nov 09, 2003 at 01:29:29PM +0100, Holger Hecht wrote:
> I have the problem that when I try to send a message from sqwebmail (3.3.7), I
> get the message "maildir_createmsg: cannot create temp file."
The message is generated from sqwebmail/maildir.c in function
maildir_createmsg if maildir_tmpcreate_fd returns -1.
Try changing this line:
error("maildir_createmsg: cannot create temp file.");
to
eio("maildir_createmsg: cannot create temp file.",0);
and see if that gives you a more useful message (it should include the I/O
error such as 'Permission denied' or whatever, if that's the problem)
Otherwise I don't know what would be the problem if you've checked the usual
things - disk space, inodes (df -i), filesystem quotas if you're using them,
permissions on the Maildir itself, permissions on sqwebmail (it hasn't lost
its setuid root bit?)
Regards,
Brian.