1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
<?
/*
File name : imap.inc
Version : 1.1.0
Author : Umut Gokbayrak
e-mail : umut@trlinux.com
Purpose : It automates any IMAP function. It is included from th imap_pop3 class.
Last modified : 10 Sep 2000
*/
/*******************************************************************************/
/* Functions IMAP and POP3 share */
/*******************************************************************************/
class imap_pop3 {
var $port;
var $protocol;
var $hostname;
var $username;
var $password;
var $mbox;
var $mbox_id;
var $message_count;
function imap_pop3($port, $protocol, $hostname, $username, $password,$mbox_id) {
global $text80;
$this->port = $port;
$this->protocol = $protocol;
$this->hostname = $hostname;
$this->username = $username;
$this->password = $password;
$this->mbox = false;
$this->mbox_id = $mbox_id;
$this->messagecount = 0;
if (trim($port) == "") {
switch ($protocol) {
case "imap" :
$this->port = "143";
break;
case "pop3" :
$this->port = "110";
break;
default :
echo " <p> <p> <p><center><font color='red'><p><b>$text80</b></p></font></conter>";
die;
} // end switch
} // end if
$this->makealive();
} // end function
function authenticate() {
$this->mbox = imap_open("{" . $this->hostname . "/" . $this->protocol . "}", $this->username, $this->password);
if ($this->mbox) {
imap_close($this->mbox);
return true;
} else {
return false;
} // end if
} // end function
function decode_mime_string ($string) {
if (eregi("=?([A-Z,0-9,-]+)?([A-Z,0-9,-]+)?([A-Z,0-9,-,=,_]+)?=", $string)) {
$coded_strings = explode('=?', $string);
$counter = 1;
$string = $coded_strings[0];
while ($counter < sizeof($coded_strings)) {
$elements = explode('?', $coded_strings[$counter]);
if (eregi("Q", $elements[1])) {
$elements[2] = str_replace('_', ' ', $elements[2]);
$elements[2] = eregi_replace("=([A-F,0-9]{2})", "%\\1", $elements[2]);
$string .= urldecode($elements[2]);
} else {
$elements[2] = str_replace('=', '', $elements[2]);
if ($elements[2]) { $string .= base64_decode($elements[2]); }
}
if (isset($elements[3]) && $elements[3] != '') {
$elements[3] = ereg_replace("^=", '', $elements[3]);
$string .= $elements[3];
}
$string .= " ";
$counter++;
}
}
return $string;
}
/*******************************************************************************/
/* Only IMAP specific functions */
/*******************************************************************************/
function makealive() { // checks to see if imap stream is active. If not it does.
if (!$this->mbox) {
$this->mbox = imap_open("{" . $this->hostname . "/" . $this->protocol . ":" . $this->port . "}$this->mbox_id", $this->username, $this->password) or die ("<meta http-equiv=\"refresh\" content=\"0; url=index.php?error_id=1\">");
} else {
$active = imap_ping($this->mbox);
if (!$active) {
$this->mbox = imap_open("{" . $this->hostname . "/" . $this->protocol . ":" . $this->port . "}$this->mbox_id", $this->username, $this->password) or die ("<meta http-equiv=\"refresh\" content=\"0; url=index.php?error_id=1\">");
} // end if
} // end if
} // end function
/*******************************************************************************/
/* IMAP specific functions with shared names */
/*******************************************************************************/
function getMailboxes() { // returns an array of subscribed imap folders
$this->makealive();
if ($this->mbox ){
$list = imap_getsubscribed($this->mbox, "{" . $this->hostname . ":" . $this->port . "}", "*");
if (is_array($list)) {
$folders = array("name" => array(),
"id" => array());
$folder_counter=-1;
reset($list);
while (list($key, $val) = each($list)) {
$folder_counter++;
$folders["name"][$folder_counter] = substr(stristr(imap_utf7_decode($val->name),"}"), 1);
$folders["id"][$folder_counter] = rawurlencode(substr(stristr($val->name,"}"), 1));
} // end while
} // end if
}
return $folders;
} // end function
function mbox_exists($mbox_id) { // Checks to see if the mbox_id is a valid mailbox or not.
if (trim($mbox_id) != "INBOX") {
$this->makealive();
if ($this->mbox){
$it_exists = false;
$list = imap_getsubscribed($this->mbox, "{" . $this->hostname . ":" . $this->port . "}", "*");
if (is_array($list)) {
while (list($key, $val) = each($list)) {
if (substr(stristr(imap_utf7_decode($val->name),"}"), 1) == trim($mbox_id)) {
$it_exists = true;
} // end if
} // end while
} // end if
} else {
Header("Location: index.php?error_id=2");
} // end if
if (!$it_exists) {
Header("Location: index.php?error_id=3");
}
}
} // end function
function postaci_get_headers() {
global $text40, $topmsg, $seperator;
$postaci_headers= array("msg_no" => array(),
"attach" => array(),
"from" => array(),
"to" => array(),
"subject" => array(),
"size" => array(),
"status" => array(),
"cc" => array(),
"msg_date"=> array());
$this->makealive();
if ($this->mbox ){
$mailbox_headers = array();
$mailbox_headers=imap_headers($this->mbox);
if ($topmsg >= $this->messagecount) {
$topmsg = $this->messagecount;
$bottommsg = $this->messagecount - $seperator +1;
}
if ($topmsg <= 0) {
$topmsg = $this->messagecount;
$bottommsg = $this->messagecount - $seperator +1;
} else {
$bottommsg = $topmsg - $seperator +1;
}
if ($bottommsg <= 0) {
$bottommsg = 1;
}
$simple_counter = -1;
for ($i = $topmsg; $i>=$bottommsg;$i = $i -1) {
$simple_counter++;
$size=$mailbox_headers[$i-1];
$size=ereg_replace(".*\(","",$size);
$size=ereg_replace(" .*$"," ",$size);
$htmlsize=ceil($size/1024). "K";
$message_header=imap_header($this->mbox,$i);
$message_date=ereg_replace(" "," ", date("Y M d - H:i",$message_header->udate));
if ($message_header->Unseen == "U" || $message_header->Recent == "N") {
$message_is_new = 1;
} else {
$message_is_new = 0;
}
$htmlfrom = htmlspecialchars($this->decode_mime_string($message_header->fromaddress));
$htmlcc = htmlspecialchars($this->decode_mime_string($message_header->ccaddress));
$htmlto = htmlspecialchars($this->decode_mime_string($message_header->toaddress));
$mysubject = $this->decode_mime_string($message_header->subject);
if (strlen($mysubject) <= 0 ) {
$mysubject="$text40";
}
$message_number=trim($message_header->Msgno);
$structure=imap_fetchstructure($this->mbox,$message_number);
$c=count($structure->parts);
$attachment_exists = 0;
if ($c>1 ) {
$attachment_exists = 1;
}
$postaci_headers["msg_no"][$simple_counter] = $message_number;
if ($attachment_exists == 0) {
$postaci_headers["attach"][$simple_counter] = 0;
} else {
$postaci_headers["attach"][$simple_counter] = 1;
}
$postaci_headers["from"][$simple_counter] = $htmlfrom;
$postaci_headers["to"][$simple_counter] = $htmlto;
$postaci_headers["subject"][$simple_counter] = $mysubject;
$postaci_headers["size"][$simple_counter] = $htmlsize;
$postaci_headers["status"][$simple_counter] = $message_is_new;
$postaci_headers["cc"][$simple_counter] = $htmlcc;
$postaci_headers["msg_date"][$simple_counter] = $message_date;
}
} else {
Header("Location: index.php?error_id=2");
} // end if
return $postaci_headers;
} // end function
function empty_mailbox() {
$this->makealive();
if ($this->mbox){
$mboxstatus=imap_check($this->mbox);
$this->messagecount=$mboxstatus->Nmsgs;
if ($this->messagecount == 0) {
return true;
} else {
return false;
}
} else {
Header("Location: index.php?error_id=2");
} // end if
} // end function
function close_mailbox() {
if ($this->mbox){
imap_close($this->mbox);
}
} // end function
} // end class
?>
|