// Bugfixes to Aeromail 1.40 // By Laird Bedore - 03/20/2001 // // // index.php, message.php, compose.php, folder.php: * Add ,,,,, and to files, for proper HTML compatibility. action.php, line 12: * Change echo "summin went rong
"; To echo "\n"; echo "\n"; echo "Error\n"; echo "\n"; echo "Moving messages to folder $tofolder failed.
"; echo "Click here to get back to folder $folder.\n"; echo ""; or something like that. i haven't actually tested that one. config.inc, line 43: * Insert: // Server suffix - domain name to add to users email addresses. $SERVER_SUFFIX = "mydomain.com"; * Change the default of PROG_DIR to "mail/"; for compatibility with ELM, PINE, MUTT, etc, or at least add a note about using "mail/" for the PROG_DIR for most unix shell servers. * Change change the default of "FORCE_FROM" to 1. Most implementations of sendmail (and all other servers) do not work safely with this feature enabled. folder.php, line 53: * Change $first = "ffffff"; $second = "ddeebb"; To $first = $COLOR_ROW_OFF; $second = $COLOR_ROW_ON; in message.php, on line 28, and in compose.php on line 128: * Insert in compose.php: * replace all "width=700" with "width=40%" * replace all "size=80" with "size=75" * replace all "size=68" with "size=62" * change "cols=85" to "cols=78" * change "rows=25" to "rows=18" * Move the javascript section from line 166 to line 113. * At line 157, replace the
With: colspan=2 align=center>
****** in send_message.php: * Replace at line 16: //$mailheaders = "From:$user$SERVER_SUFFIX\n"; //$mailheaders .= "Reply-To: $user$SERVER_SUFFIX\n"; $mailheaders = "To: $to\n"; With: if ($FORCE_FROM) { $mailheaders = "From: $user@$SERVER_SUFFIX\n"; $mailheaders .= "Reply-To: $user@$SERVER_SUFFIX\n"; $mailheaders .= "To: $to\n"; } else { $mailheaders = "To: $to\n"; } * insert at line 16: if (!strstr($to,"@")) { $to .= "@$SERVER_SUFFIX"; } // End of bugfixes file