On Tue, Oct 21, 2003 at 06:12:31PM +0100, jeo wrote:
> Yes, I know, and footer is exactly there, but is not appended.
Well, then we are guessing, since It Works For Me (TM)
What version of sqwebmail are you running? Under what O/S? What options did
you compile it with?
Is the 'footer' file world-readable? (ls -l)
If you're comfortable with C, you might want to try adding some debugging,
e.g. in sqwebmail/newmsg_create.c
if (do_footer)
{
fp=http11_open_langfile(get_templatedir(),
sqwebmail_content_language,
"footer");
if (fp != 0)
{
while ((n=fread(buf, 1, sizeof(buf), fp)) > 0)
rfc2646create_parse(createptr, buf, n);
fclose(fp);
}
else perror("footer"); <<<<<< TRY ADDING THIS LINE
}
and have a look in your Apache error log for something like
footer: Permission denied
or such like.