[EMAIL PROTECTED] writes:
> Where can I set it so that when someone logs out
> it will redirect the user to a specific page instead
> of the login screen ?
You'll have to change the code. Edit sqwebmail/sqwebmail.c, there are two
places that need to be changed:
if (strcmp(formname, "logout") == 0)
{
unlink(IPFILE);
http_redirect_top("");
return;
}
Replace http_redirect_top("") with cgiredirect("$URL"). There are two
places in sqwebmail.c that need to be changed - a voluntary logout, and a
forced logout due to an expired session.
--
Sam