-Version 0.4pre2 -- DEVELOPMENT
+Version 0.4 -- DEVELOPMENT
+--------------------------
+- Changed <? to <?php in a few places
+
+Version 0.4pre2 -- May 5, 2000
------------------------------
- Replying sets the "Answered" flag on the original message
- When message is sent, it sends you to the folder you were looking at.
sub save_data {
open (FILE, ">config.php");
- print FILE "<?\n\t/** SquirrelMail configuration\n";
+ print FILE "<?php\n\t/** SquirrelMail configuration\n";
print FILE "\t ** Created using the configure script, conf.pl\n\t **/\n\n";
print FILE "\t\$org_name = \"$org_name\";\n";
$boxes = sqimap_mailbox_list($imapConnection);
for ($i = 0; $i < count($boxes); $i++) {
- $box = $boxes[$i]["unformatted"];
- $box2 = replace_spaces($boxes[$i]["formatted"]);
- echo " <OPTION VALUE=\"$box\">$box2\n";
+ if ($boxes[$i]["flags"][0] != "noselect" && $boxes[$i]["flags"][1] != "noselect" && $boxes[$i]["flags"][2] != "noselect") {
+ $box = $boxes[$i]["unformatted"];
+ $box2 = replace_spaces($boxes[$i]["formatted"]);
+ echo " <OPTION VALUE=\"$box\">$box2\n";
+ }
}
echo " </SELECT></SMALL></TT>";
echo " <SMALL><INPUT TYPE=SUBMIT NAME=\"moveButton\" VALUE=\"". _("Move") ."\"></SMALL></NOBR>\n";