with a ? by SourceForge.net in your original log message, which follows:
check for safe_mode before set_time_limit.
this check was removed for reasons I don?t know,
but it is mandatory becaus it breaks attachment
download in installations with safe_mode.
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2234
7612ce4b-ef26-0410-bec9-
ea0150e637f0
$sid = sqimap_session_id();
// Don't kill the connection if the browser is over a dialup
// and it would take over 30 seconds to download it.
- set_time_limit(0);
+
+ // don“t call set_time_limit in safe mode.
+ if (!ini_get("safe_mode")) {
+ set_time_limit(0);
+ }
fputs ($imap_stream, "$sid FETCH $id BODY[$ent_id]\r\n");
$cnt = 0;