This is probably due to the php bug fixed in php 4.3.3 whereby warning messages are now issued if session_start is called more than once. The real messages are probably being masked by the fact that you are behind a proxy.
The next release of Squirrelmail has a fix for this. In the meantime, change your error reporting level in your php.ini file so that warnings are not displayed. It is probably currently set to E_ALL - changing it to E_ALL & ~E_NOTICE will fix your immediate problem. If this is a production server, you really shouldn't be showing any error messages at all, but logging them to a file. See www.php.net/manual/en/ref.errorfunc.php for details. Cheers -- Phil Driscoll ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
