From d94dfa40e13e29045ea2052b0a4d3891a558ed3c Mon Sep 17 00:00:00 2001 From: lkehresman Date: Mon, 22 Nov 1999 16:18:14 +0000 Subject: [PATCH] Updating directory structure git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- .mailboxMessageList.php3.swp | Bin 16384 -> 0 bytes ATHORS | 2 - index.html | 9 - left.php3 | 90 --------- login.php3 | 51 ------ mailboxMessageList.php3 | 314 ------------------------------- mailboxMessageListtmp.php3 | 345 ----------------------------------- signout.php3 | 34 ---- webmail.php3 | 19 -- 9 files changed, 864 deletions(-) delete mode 100644 .mailboxMessageList.php3.swp delete mode 100644 ATHORS delete mode 100644 index.html delete mode 100644 left.php3 delete mode 100644 login.php3 delete mode 100644 mailboxMessageList.php3 delete mode 100644 mailboxMessageListtmp.php3 delete mode 100644 signout.php3 delete mode 100644 webmail.php3 diff --git a/.mailboxMessageList.php3.swp b/.mailboxMessageList.php3.swp deleted file mode 100644 index a94c0a29f592a64e918f29480d601cd385782771..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16384 zcmeHOO>87b6)uu&fF&XcMB>1K=gzP@tD$GTk-d9;NvJD%BZ9mPz)#r6a$I@ z#eiZ!F`yVw3@8Q^1BwB~z6Pd?5n_+fyaUKz!dQIQO14?{1A8nXaN_1BfuZ-VC)ItEN~Qf?L%lE_%3iA z_$KfSZ~^!;wg~J{NGe!~Gf3jP-JDt==eaHfCqF0xd0(WjX;bh%(mDZHKn!QkRGI zs6bM%Ku1KjS94jp376S2~py(30lT=n#Ri`J7=FbkuaA^$$E3Ps5s$2ZVP$P zYLERich3NEH9I}q;e;Mhk=owS4fAoW1>pv1OSpi<63vh65Q`$8?+zTV!}A(xu)N@^ zu$U2*1ctud&r6B%`lUe94{;mmANh2Ar&ZU==j&SG#F@RGi6_}kCD!6T?>^@9fn&Cz zTeAS=v^@nUHlHby->=B%fE!nCk2uL~e!NTbFwE%!O~DuX@t09m9=3b5@es!7v11s= zawNso3h^@&#FxtzZNx~{U^vM!$D61cjg?hc@&On#qO$2~soUz)(=hWiEl@0$k0dDH zEW5!DXz5V1&bf;=A*BoQM&}UukyllC`i(kRxLu zX7F6bS!kB-PkSBLG}&QF!uZ>Va+snhvNfqlG|D5d$(r|EG&O7WSp5g!1tTLb)5ne( z@*6sM`o<2Pc`tPk-j20Lt3daIduRDx|6T6g>}<3O8W$^*i~{RVHhpBrvGp^Z*I4W_ z_?>7?+1V<(GTPby&RigMo7|^;+^40!cV(A)Oj0%yO$(bGX0%Jcr7}d?zO)aVf@a z_Qh&sXdkA-;Af!Q zxn9rEEEXa$l8r01dIRflI#KQK-O17we+pdZj+mhjSnAHorEW|1~-us@4gd7+Ma9KT|NGjN)#Vt#p=ez z235-|#*$X{ZPS@q<<32?2eeVd@|h* z4a^|e@%)aM>dbZ;U;)KBYyq*j9eZ4g!w1W>L&F`xxaLAT5Bvyw`WJxj15X2&flELEI4W@q{=Oya`irPfCB=YZKrx^g zPz)#r6a$I@#eiZ!F`yXuA2LwXrEi!W75$(&AAegjnL!y<~43g#~34tL9o>R%66q`vFeUaJsdn)hZg! zxJELnn;Ywytop;t7ZBLVrpB2NDae0}NT diff --git a/ATHORS b/ATHORS deleted file mode 100644 index 1ebe0685..00000000 --- a/ATHORS +++ /dev/null @@ -1,2 +0,0 @@ -Nathan Ehresman -Luke Ehresman diff --git a/index.html b/index.html deleted file mode 100644 index 8a027207..00000000 --- a/index.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/left.php3 b/left.php3 deleted file mode 100644 index c5498d0a..00000000 --- a/left.php3 +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -"; - echo "$errorNumber : $errorString
"; - exit; - } - $serverInfo = fgets($imapConnection, 256); - - fputs($imapConnection, "1 login $username $key\n"); - $read = fgets($imapConnection, 1024); - - fputs($imapConnection, "1 list \"\" *\n"); - $str = imapReadData($imapConnection); - - echo ""; - echo "
$org_name
"; - echo "Folders
"; - echo "
"; - echo "\n"; - for ($i = 0;$i < count($str); $i++) { - $mailbox = Chop($str[$i]); - // find the quote at the begining of the mailbox name. - // i subtract 1 from the strlen so it doesn't find the quote at the end of the mailbox name. - $mailbox = findMailboxName($mailbox); - $periodCount = countCharInString($mailbox, "."); - - // indent the correct number of spaces. - for ($j = 0;$j < $periodCount;$j++) - echo "  "; - - $mailboxURL = urlencode($mailbox); - echo ""; - echo readShortMailboxName($mailbox, "."); - echo "
\n"; - } - echo "
"; - - fclose($imapConnection); - -?> -
diff --git a/login.php3 b/login.php3 deleted file mode 100644 index 98bd70b8..00000000 --- a/login.php3 +++ /dev/null @@ -1,51 +0,0 @@ - - - -\n"; - echo "
\n"; - echo "
SquirrelMail version $version
By Nathan and Luke Ehresman
\n"; - echo "\n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo "
\n"; - echo "
$org_name Login
\n"; - echo "
\n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo "
\n"; - echo " Name:\n"; - echo " \n"; - echo "
\n"; - echo "
\n"; - echo " Password:\n"; - echo " \n"; - echo "
\n"; - echo "
\n"; - echo "
\n"; - echo "
\n"; - echo "
\n"; - echo "\n"; -?> - - - - - - diff --git a/mailboxMessageList.php3 b/mailboxMessageList.php3 deleted file mode 100644 index 6db6c1a5..00000000 --- a/mailboxMessageList.php3 +++ /dev/null @@ -1,314 +0,0 @@ -login first."; - exit; - } - if(!isset($username) || !isset($key)) { - echo "You need a valid user and password to access this page!"; - exit; - } -?> - - - - with [] because HTML uses <> as tags, thus not printing what's in <> */ - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - - while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) { - if (substr($read, 0, 5) == "From:") { - $read = ereg_replace("<", "EMAILSTART--", $read); - $read = ereg_replace(">", "--EMAILEND", $read); - $from = substr($read, 5, strlen($read) - 6); - } - else if (substr($read, 0, 5) == "Date:") { - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - $date = substr($read, 5, strlen($read) - 6); - } - else if (substr($read, 0, 8) == "Subject:") { - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - $subject = substr($read, 8, strlen($read) - 9); - } - - $read = fgets($imapConnection, 1024); - } - } - - function getMessageFlags($imapConnection, $i, &$flags) { - /** * 2 FETCH (FLAGS (\Answered \Seen)) */ - fputs($imapConnection, "messageFetch FETCH $i:$i FLAGS\n"); - while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) { - if (strpos($read, "FLAGS")) { - $read = ereg_replace("\(", "", $read); - $read = ereg_replace("\)", "", $read); - $read = substr($read, strpos($read, "FLAGS")+6, strlen($read)); - $read = trim($read); - $flags = explode(" ", $read);; - $i = 0; - while ($i < count($flags)) { - $flags[$i] = substr($flags[$i], 1, strlen($flags[$i])); - $i++; - } - } else { - $flags[0] = "None"; - } - $read = fgets($imapConnection, 1024); - } - } - - function getEmailAddr($sender) { - if (strpos($sender, "EMAILSTART--") == false) - return ""; - - $start = strpos($sender, "EMAILSTART--"); - $emailAddr = substr($sender, $start, strlen($sender)); - - return $emailAddr; - } - - function getSender($sender) { - if (strpos($sender, "EMAILSTART--") == false) - return ""; - - $first = substr($sender, 0, strpos($sender, "EMAILSTART--")); - $second = substr($sender, strpos($sender, "--EMAILEND") +10, strlen($sender)); - return "$first$second"; - } - - function getSenderName($sender) { - $name = getSender($sender); - $emailAddr = getEmailAddr($sender); - $emailStart = strpos($emailAddr, "EMAILSTART--"); - $emailEnd = strpos($emailAddr, "--EMAILEND") - 10; - - if (($emailAddr == "") && ($name == "")) { - $from = $sender; - } - else if ((strstr($name, "?") != false) || (strstr($name, "$") != false) || (strstr($name, "%") != false)){ - $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr); - $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr); - $from = $emailAddr; - } - else if (strlen($name) > 0) { - $from = $name; - } - else if (strlen($emailAddr > 0)) { - $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr); - $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr); - $from = $emailAddr; - } - - $from = trim($from); - - // strip out any quotes if they exist - if ((strlen($from) > 0) && ($from[0] == "\"") && ($from[strlen($from) - 1] == "\"")) - $from = substr($from, 1, strlen($from) - 2); - - return $from; - } - - function printMessageInfo($imapConnection, $i, $from, $subject, $date) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - getMessageFlags($imapConnection, $i, $flags); - $dateParts = explode(" ", trim($date)); - $dateString = getDateString($dateParts); // this will reformat the date string into a good format for us. - $senderName = getSenderName($from); - if (strlen(Chop($subject)) == 0) - $subject = "(no subject)"; - - $j = 0; - $deleted = false; - $seen = false; - $answered = false; - while ($j < count($flags)) { - if ($flags[$j] == "Deleted") { - $deleted = true; - } else if ($flags[$j] == "Answered") { - $answered = true; - } else if ($flags[$j] == "Seen") { - $seen = true; - } - $j++; - } - - if ($deleted == false) { - echo "\n"; - if ($seen == false) { - echo " $i\n"; - echo " $senderName\n"; - echo "
$dateString
\n"; - echo " $subject\n"; - } else { - echo " $i\n"; - echo " $senderName\n"; - echo "
$dateString
\n"; - echo " $subject\n"; - } - echo "\n"; - } - } - - - - ///////////////////////////////////////////////////////////////////////////////// - // - // incoming variables from URL: - // $sort Direction to sort by date - // values: 0 - descending order - // values: 1 - ascending order - // $startMessage Message to start at - // $mailbox Full Mailbox name - // - // incoming from cookie: - // $username duh - // $key pass - // - ///////////////////////////////////////////////////////////////////////////////// - - - // open a connection on the imap port (143) - $imapConnection = fsockopen($imapServerAddress, 143, &$errorNumber, &$errorString); - if (!$imapConnection) { - echo "Error connecting to IMAP Server.
"; - echo "$errorNumber : $errorString
"; - exit; - } - $serverInfo = fgets($imapConnection, 256); - - // login - fputs($imapConnection, "1 login $username $key\n"); - $read = fgets($imapConnection, 1024); - if (strpos($read, "NO")) { - echo "
"; - echo ""; - echo " "; - echo " "; - echo "
"; - echo "
ERROR
"; - echo "
"; - echo "

Unknown user or password incorrect.
Click here to try again.
"; - echo "
"; - echo ""; - exit; - } - - - // If the page has been loaded without a specific mailbox, - // just show a page of general info. - if (!isset($mailbox)) { - displayPageHeader("None"); - - echo "
"; - echo ""; - echo " "; - echo " "; - echo "
"; - echo "
Welcome to $org_name's WebMail system
"; - echo "
"; - echo "
"; - echo "
Running SquirrelMail version $version (c) 1999 by Nathan and Luke Ehresman.
"; - echo "
"; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo "
"; - if (strlen($org_logo) > 3) - echo " "; - else - echo " $org_name"; - echo "
"; - echo " $motd"; - echo "
"; - echo "
"; - echo ""; - exit; - } - - - // switch to the mailbox, and get the number of messages in it. - selectMailbox($imapConnection, $mailbox, $numMessages); - - // make a URL safe $mailbox for use in the links - $urlMailbox = urlencode($mailbox); - - displayPageHeader($mailbox); - $i = 1; - while ($i <= $numMessages) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - - $messages[$i]["DATE"] = getTimeStamp(explode(" ", trim($date))); - $messages[$i]["ID"] = $i; - $messages[$i]["FROM"] = $from; - $messages[$i]["SUBJECT"] = $subject; - $i++; - } - - if ($sort == 0) - $msgs = ary_sort($messages, "DATE", -1); - else - $msgs = ary_sort($messages, "DATE", 1); - - if ($endMessage > 24) { - echo "Next   "; - $endMessage = 24; - } - - /** Display "Next, Previous" on top */ - - /** This is the beginning of the message list table. It wraps around all messages */ - echo ""; - echo "
"; - echo ""; - echo ""; - echo " "; - echo " "; - echo " \n"; - else - echo " \n"; - echo " \n"; - echo ""; - - // loop through and display the info for each message. - for ($i = $startMessage;$i <= $endMessage; $i++) { - printMessageInfo($imapConnection, $msgs[$i]["ID"], $msgs[$i]["FROM"], $msgs[$i]["SUBJECT"], $msgs[$i]["DATE"]); - } - - echo "
NumFromDate"; - if ($sort == 0) - echo " Subject
\n"; - echo "
"; /** End of message-list table */ - - /** Display "Next, Previous" on bottom */ - fclose($imapConnection); -?> -
- - diff --git a/mailboxMessageListtmp.php3 b/mailboxMessageListtmp.php3 deleted file mode 100644 index 3f6a7905..00000000 --- a/mailboxMessageListtmp.php3 +++ /dev/null @@ -1,345 +0,0 @@ -login first."; - exit; - } - if(!isset($username) || !isset($key)) { - echo "You need a valid user and password to access this page!"; - exit; - } -?> - - - - with [] because HTML uses <> as tags, thus not printing what's in <> */ - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - - while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) { - if (substr($read, 0, 5) == "From:") { - $read = ereg_replace("<", "EMAILSTART--", $read); - $read = ereg_replace(">", "--EMAILEND", $read); - $from = substr($read, 5, strlen($read) - 6); - } - else if (substr($read, 0, 5) == "Date:") { - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - $date = substr($read, 5, strlen($read) - 6); - } - else if (substr($read, 0, 8) == "Subject:") { - $read = ereg_replace("<", "[", $read); - $read = ereg_replace(">", "]", $read); - $subject = substr($read, 8, strlen($read) - 9); - } - - $read = fgets($imapConnection, 1024); - } - } - - function getMessageFlags($imapConnection, $i, &$flags) { - /** * 2 FETCH (FLAGS (\Answered \Seen)) */ - fputs($imapConnection, "messageFetch FETCH $i:$i FLAGS\n"); - while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) { - if (strpos($read, "FLAGS")) { - $read = ereg_replace("\(", "", $read); - $read = ereg_replace("\)", "", $read); - $read = substr($read, strpos($read, "FLAGS")+6, strlen($read)); - $read = trim($read); - $flags = explode(" ", $read);; - $i = 0; - while ($i < count($flags)) { - $flags[$i] = substr($flags[$i], 1, strlen($flags[$i])); - $i++; - } - } else { - $flags[0] = "None"; - } - $read = fgets($imapConnection, 1024); - } - } - - function getEmailAddr($sender) { - if (strpos($sender, "EMAILSTART--") == false) - return ""; - - $start = strpos($sender, "EMAILSTART--"); - $emailAddr = substr($sender, $start, strlen($sender)); - - return $emailAddr; - } - - function getSender($sender) { - if (strpos($sender, "EMAILSTART--") == false) - return ""; - - $first = substr($sender, 0, strpos($sender, "EMAILSTART--")); - $second = substr($sender, strpos($sender, "--EMAILEND") +10, strlen($sender)); - return "$first$second"; - } - - function getSenderName($sender) { - $name = getSender($sender); - $emailAddr = getEmailAddr($sender); - $emailStart = strpos($emailAddr, "EMAILSTART--"); - $emailEnd = strpos($emailAddr, "--EMAILEND") - 10; - - if (($emailAddr == "") && ($name == "")) { - $from = $sender; - } - else if ((strstr($name, "?") != false) || (strstr($name, "$") != false) || (strstr($name, "%") != false)){ - $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr); - $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr); - $from = $emailAddr; - } - else if (strlen($name) > 0) { - $from = $name; - } - else if (strlen($emailAddr > 0)) { - $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr); - $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr); - $from = $emailAddr; - } - - $from = trim($from); - - // strip out any quotes if they exist - if ((strlen($from) > 0) && ($from[0] == "\"") && ($from[strlen($from) - 1] == "\"")) - $from = substr($from, 1, strlen($from) - 2); - - return $from; - } - - function printMessageInfo($imapConnection, $i, $from, $subject, $date) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - getMessageFlags($imapConnection, $i, $flags); - $dateParts = explode(" ", trim($date)); - $dateString = getDateString($dateParts); // this will reformat the date string into a good format for us. - $senderName = getSenderName($from); - if (strlen(Chop($subject)) == 0) - $subject = "(no subject)"; - - $j = 0; - $deleted = false; - $seen = false; - $answered = false; - while ($j < count($flags)) { - if ($flags[$j] == "Deleted") { - $deleted = true; - } else if ($flags[$j] == "Answered") { - $answered = true; - } else if ($flags[$j] == "Seen") { - $seen = true; - } - $j++; - } - - if ($deleted == false) { - echo "\n"; - if ($seen == false) { - echo " $i\n"; - echo " $senderName\n"; - echo "
$dateString
\n"; - echo " $subject\n"; - } else { - echo " $i\n"; - echo " $senderName\n"; - echo "
$dateString
\n"; - echo " $subject\n"; - } - echo "\n"; - } - } - - - - ///////////////////////////////////////////////////////////////////////////////// - // - // incoming variables from URL: - // $sort Direction to sort by date - // values: 0 - descending order - // values: 1 - ascending order - // $startMessage Message to start at - // $mailbox Full Mailbox name - // - // incoming from cookie: - // $username duh - // $key pass - // - ///////////////////////////////////////////////////////////////////////////////// - - - // If the page has been loaded without a specific mailbox, - // just show a page of general info. - if (!isset($mailbox)) { - displayPageHeader("None"); - - echo "
"; - echo ""; - echo " "; - echo " "; - echo "
"; - echo "
Welcome to $org_name's WebMail system
"; - echo "
"; - echo "
"; - echo "
Running SquirrelMail version $version (c) 1999 by Nathan and Luke Ehresman.
"; - echo "
"; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo "
"; - if (strlen($org_logo) > 3) - echo " "; - else - echo " $org_name"; - echo "
"; - echo " $motd"; - echo "
"; - echo "
"; - echo ""; - exit; - } - - // open a connection on the imap port (143) - $imapConnection = fsockopen($imapServerAddress, 143, &$errorNumber, &$errorString); - if (!$imapConnection) { - echo "Error connecting to IMAP Server.
"; - echo "$errorNumber : $errorString
"; - exit; - } - $serverInfo = fgets($imapConnection, 256); - echo "LOGGING IN
"; - - // login - fputs($imapConnection, "1 login $username $key\n"); - $read = fgets($imapConnection, 1024); - - // switch to the mailbox, and get the number of messages in it. - selectMailbox($imapConnection, $mailbox, $numMessages); - - // make a URL safe $mailbox for use in the links - $urlMailbox = urlencode($mailbox); - - displayPageHeader($mailbox); - $i = 0; - echo "NumMessages: $numMessages
"; - while ($i < $numMessages) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - $messages[$i]["DATE"] = $date; - $messages[$i]["ID"] = $i; - $messages[$i]["FROM"] = $from; - $messages[$i]["SUBJECT"] = $subject; - echo "$messages[$i][\"FROM\"]
"; - $i++; - } - - if ($sort == 0) { - ary_sort($messages, "SUBJECT", -1); - } else { - ary_sort($messages, "SUBJECT", 1); - } - - /** This is the beginning of the message list table. It wraps around all messages */ - echo ""; -// echo ""; - echo "

Viewing messages $startMessage to $endMessage   ($numMessages total)
"; - // display the correct next/Previous listings... -/* if ($sort == 1) { - if ($endMessage < $numMessages) { - $nextGroup = $endMessage + 1; - echo "Next   "; - } - if ($startMessage > 1) { - $nextGroup = $startMessage - 25; - echo "Previous"; - } - } else { - if ($endMessage > 1) { - $nextGroup = $endMessage - 1; - echo "Next   "; - } - if ($startMessage < $numMessages) { - $nextGroup = $startMessage + 25; - echo "Previous"; - } - } - */ - echo ""; - echo ""; - echo " "; - echo " "; - echo " \n"; - else - echo " \n"; - echo " \n"; - echo ""; - - // loop through and display the info for each message. - if ($sort == 1) { - for ($i = $startMessage;$i <= $endMessage; $i++) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - printMessageInfo($imapConnection, $i, $from, $subject, $date); - } - } else { - for ($i = $startMessage;$i >= $endMessage; $i--) { - getMessageHeaders($imapConnection, $i, $from, $subject, $date); - printMessageInfo($imapConnection, $i, $from, $subject, $date); - } - } - - echo "
NumFromDate"; - if ($sort == 0) - echo " Subject
\n"; - - // display the correct next/Previous listings... - if ($sort == 1) { - if ($endMessage < $numMessages) { - $nextGroup = $endMessage + 1; - echo "Next   "; - } - if ($startMessage > 1) { - $nextGroup = $startMessage - 25; - echo "Previous"; - } - } else { - if ($endMessage > 1) { - $nextGroup = $endMessage - 1; - echo "Next   "; - } - if ($startMessage < $numMessages) { - $nextGroup = $startMessage + 25; - echo "Previous"; - } - } - echo "
"; /** End of message-list table */ - - fclose($imapConnection); -?> -
- - diff --git a/signout.php3 b/signout.php3 deleted file mode 100644 index 693a02ff..00000000 --- a/signout.php3 +++ /dev/null @@ -1,34 +0,0 @@ - - - -
"; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo " "; - echo "
"; - echo " Sign Out"; - echo "
"; - echo "
You have been successfully signed out.
"; - echo " Click here to log back in.

"; - echo "
"; - echo "
"; - echo "
"; -?> - - - diff --git a/webmail.php3 b/webmail.php3 deleted file mode 100644 index 1c57f545..00000000 --- a/webmail.php3 +++ /dev/null @@ -1,19 +0,0 @@ - - - -OM-USA WebMail - - - - - - -- 2.25.1