617c2937c889d52149da909e112b46c1d89c7c50
[squirrelmail.git] / functions / imap_general.php
1 <?php
2
3 /**
4 * imap.php
5 *
6 * Copyright (c) 1999-2001 The Squirrelmail Development Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This implements all functions that do general imap functions.
10 *
11 * $Id$
12 */
13
14 /**
15 * Unique SessionId
16 *
17 * Sets an unique session id in order to avoid simultanous sessions crash.
18 *
19 * @return string a 4 chars unique string
20 */
21 function sqimap_session_id() {
22
23 global $data_dir, $username;
24
25 $IMAPSessionID = substr(session_id(), -4);
26 if( $IMAPSessionID == '' ) {
27 $IMAPSessionID = 'A001';
28 }
29
30 return( $IMAPSessionID );
31 }
32
33
34 /******************************************************************************
35 ** Reads the output from the IMAP stream. If handle_errors is set to true,
36 ** this will also handle all errors that are received. If it is not set,
37 ** the errors will be sent back through $response and $message
38 ******************************************************************************/
39
40 function sqimap_read_data_list ($imap_stream, $pre, $handle_errors,
41 &$response, &$message) {
42 global $color, $squirrelmail_language;
43
44 $read = '';
45 $resultlist = array();
46
47 $more_msgs = true;
48 while ($more_msgs) {
49 $data = array();
50 $total_size = 0;
51 while (strpos($read, "\n") === false) {
52 $read .= fgets($imap_stream, 9096);
53 }
54
55 if (ereg("^\\* [0-9]+ FETCH.*\\{([0-9]+)\\}", $read, $regs)) {
56 $size = $regs[1];
57 } else if (ereg("^\\* [0-9]+ FETCH", $read, $regs)) {
58 // Sizeless response, probably single-line
59 $size = -1;
60 $data[] = $read;
61 $read = fgets($imap_stream, 9096);
62 } else {
63 $size = -1;
64 }
65 while (1) {
66 while (strpos($read, "\n") === false) {
67 $read .= fgets($imap_stream, 9096);
68 }
69 // If we know the size, no need to look at the end parameters
70 if ($size > 0) {
71 if ($total_size == $size) {
72 // We've reached the end of this 'message', switch to the next one.
73 $data[] = $read;
74 break;
75 } else if ($total_size > $size) {
76 $difference = $total_size - $size;
77 $total_size = $total_size - strlen($read);
78 $data[] = substr ($read, 0, strlen($read)-$difference);
79 $read = substr ($read, strlen($read)-$difference, strlen($read));
80 break;
81 } else {
82 $data[] = $read;
83 $read = fgets($imap_stream, 9096);
84 while (strpos($read, "\n") === false) {
85 $read .= fgets($imap_stream, 9096);
86 }
87 }
88 $total_size += strlen($read);
89 } else {
90 if (ereg("^$pre (OK|BAD|NO)(.*)", $read, $regs) ||
91 (($size == -1) && ereg("^\\* [0-9]+ FETCH.*", $read, $regs))) {
92 break;
93 } else {
94 $data[] = $read;
95 $read = fgets ($imap_stream, 9096);
96 }
97 }
98 }
99
100 while (($more_msgs = !ereg("^$pre (OK|BAD|NO)(.*)$", $read, $regs)) &&
101 !ereg("^\\* [0-9]+ FETCH.*", $read, $regs)) {
102 $read = fgets($imap_stream, 9096);
103 }
104 $resultlist[] = $data;
105 }
106 $response = $regs[1];
107 $message = trim($regs[2]);
108
109 if ($handle_errors == false) { return $resultlist; }
110
111 if ($response == 'NO') {
112 // ignore this error from m$ exchange, it is not fatal (aka bug)
113 if (strstr($message, 'command resulted in') === false) {
114 set_up_language($squirrelmail_language);
115 echo "<br><b><font color=$color[2]>\n";
116 echo _("ERROR : Could not complete request.");
117 echo "</b><br>\n";
118 echo _("Reason Given: ");
119 echo $message . "</font><br>\n";
120 exit;
121 }
122 } else if ($response == 'BAD') {
123 set_up_language($squirrelmail_language);
124 echo "<br><b><font color=$color[2]>\n";
125 echo _("ERROR : Bad or malformed request.");
126 echo "</b><br>\n";
127 echo _("Server responded: ");
128 echo $message . "</font><br>\n";
129 exit;
130 }
131 return $resultlist;
132 }
133
134 function sqimap_read_data ($imap_stream, $pre, $handle_errors, &$response, &$message) {
135 $res = sqimap_read_data_list($imap_stream, $pre, $handle_errors, $response, $message);
136 return $res[0];
137 }
138
139 /******************************************************************************
140 ** Logs the user into the imap server. If $hide is set, no error messages
141 ** will be displayed. This function returns the imap connection handle.
142 ******************************************************************************/
143 function sqimap_login ($username, $password, $imap_server_address, $imap_port, $hide) {
144
145 global $color, $squirrelmail_language, $HTTP_ACCEPT_LANGUAGE, $onetimepad;
146
147 $imap_stream = fsockopen ( $imap_server_address, $imap_port,
148 $error_number, $error_string, 15);
149 $server_info = fgets ($imap_stream, 1024);
150
151 // Decrypt the password
152 $password = OneTimePadDecrypt($password, $onetimepad);
153
154 /** Do some error correction **/
155 if (!$imap_stream) {
156 if (!$hide) {
157 set_up_language($squirrelmail_language, true);
158 printf (_("Error connecting to IMAP server: %s.")."<br>\r\n", $imap_server_address);
159 echo "$error_number : $error_string<br>\r\n";
160 }
161 exit;
162 }
163
164 fputs ($imap_stream, sqimap_session_id() . ' LOGIN "' . quoteIMAP($username) .
165 '" "' . quoteIMAP($password) . "\"\r\n");
166 $read = sqimap_read_data ($imap_stream, sqimap_session_id(), false, $response, $message);
167
168 /** If the connection was not successful, lets see why **/
169 if ($response != "OK") {
170 if (!$hide) {
171 if ($response != 'NO') {
172 // "BAD" and anything else gets reported here.
173 set_up_language($squirrelmail_language, true);
174 if ($response == 'BAD')
175 printf (_("Bad request: %s")."<br>\r\n", $message);
176 else
177 printf (_("Unknown error: %s") . "<br>\n", $message);
178 echo '<br>';
179 echo _("Read data:") . "<br>\n";
180 if (is_array($read))
181 {
182 foreach ($read as $line)
183 {
184 echo htmlspecialchars($line) . "<br>\n";
185 }
186 }
187 exit;
188 } else {
189 // If the user does not log in with the correct
190 // username and password it is not possible to get the
191 // correct locale from the user's preferences.
192 // Therefore, apply the same hack as on the login
193 // screen.
194
195 // $squirrelmail_language is set by a cookie when
196 // the user selects language and logs out
197
198 set_up_language($squirrelmail_language, true);
199
200 ?>
201 <html>
202 <body bgcolor="ffffff">
203 <br>
204 <center>
205 <table width="70%" noborder bgcolor="ffffff" align="center">
206 <tr>
207 <td bgcolor="dcdcdc">
208 <font color="cc0000">
209 <center>
210 <?php echo _("ERROR") ?>
211 </center>
212 </font>
213 </td>
214 </tr>
215 <tr>
216 <td>
217 <center>
218 <?php echo _("Unknown user or password incorrect.") ?><br>
219 <a href="login.php" target="_top"><?php echo _("Click here to try again") ?></a>
220 </center>
221 </td>
222 </tr>
223 </table>
224 </center>
225 </body>
226 </html>
227 <?php
228 session_destroy();
229 exit;
230 }
231 } else {
232 exit;
233 }
234 }
235
236 return $imap_stream;
237 }
238
239
240
241
242 /******************************************************************************
243 ** Simply logs out the imap session
244 ******************************************************************************/
245 function sqimap_logout ($imap_stream) {
246 fputs ($imap_stream, sqimap_session_id() . " LOGOUT\r\n");
247 }
248
249 function sqimap_capability($imap_stream, $capability) {
250 global $sqimap_capabilities;
251
252 if (!is_array($sqimap_capabilities)) {
253 fputs ($imap_stream, sqimap_session_id() . " CAPABILITY\r\n");
254 $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
255
256 $c = explode(' ', $read[0]);
257 for ($i=2; $i < count($c); $i++) {
258 $cap_list = explode('=', $c[$i]);
259 if (isset($cap_list[1]))
260 $sqimap_capabilities[$cap_list[0]] = $cap_list[1];
261 else
262 $sqimap_capabilities[$cap_list[0]] = TRUE;
263 }
264 }
265 if (! isset($sqimap_capabilities[$capability]))
266 return false;
267 return $sqimap_capabilities[$capability];
268 }
269
270 /******************************************************************************
271 ** Returns the delimeter between mailboxes: INBOX/Test, or INBOX.Test...
272 ******************************************************************************/
273 function sqimap_get_delimiter ($imap_stream = false) {
274
275 global $sqimap_delimiter;
276 global $optional_delimiter;
277
278 /* Use configured delimiter if set */
279 if((!empty($optional_delimiter)) && $optional_delimiter != "detect")
280 return $optional_delimiter;
281
282 /* Do some caching here */
283 if (!$sqimap_delimiter) {
284 if (sqimap_capability($imap_stream, "NAMESPACE")) {
285 /* According to something that I can't find, this is supposed to work on all systems
286 OS: This won't work in Courier IMAP.
287 OS: According to rfc2342 response from NAMESPACE command is:
288 OS: * NAMESPACE (PERSONAL NAMESPACES) (OTHER_USERS NAMESPACE) (SHARED NAMESPACES)
289 OS: We want to lookup all personal NAMESPACES...
290 */
291 fputs ($imap_stream, sqimap_session_id() . " NAMESPACE\r\n");
292 $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
293 if (eregi('\\* NAMESPACE +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL)', $read[0], $data)) {
294 if (eregi('^\\( *\\((.*)\\) *\\)', $data[1], $data2))
295 $pn = $data2[1];
296 $pna = explode(')(', $pn);
297 while (list($k, $v) = each($pna))
298 {
299 $lst = explode('"', $v);
300 if (isset($lst[3])) {
301 $pn[$lst[1]] = $lst[3];
302 } else {
303 $pn[$lst[1]] = '';
304 }
305 }
306 }
307 $sqimap_delimiter = $pn[0];
308 } else {
309 fputs ($imap_stream, ". LIST \"INBOX\" \"\"\r\n");
310 $read = sqimap_read_data($imap_stream, '.', true, $a, $b);
311 $quote_position = strpos ($read[0], '"');
312 $sqimap_delimiter = substr ($read[0], $quote_position+1, 1);
313 }
314 }
315 return $sqimap_delimiter;
316 }
317
318
319 /******************************************************************************
320 ** Gets the number of messages in the current mailbox.
321 ******************************************************************************/
322 function sqimap_get_num_messages ($imap_stream, $mailbox) {
323 fputs ($imap_stream, sqimap_session_id() . " EXAMINE \"$mailbox\"\r\n");
324 $read_ary = sqimap_read_data ($imap_stream, sqimap_session_id(), true, $result, $message);
325 for ($i = 0; $i < count($read_ary); $i++) {
326 if (ereg("[^ ]+ +([^ ]+) +EXISTS", $read_ary[$i], $regs)) {
327 return $regs[1];
328 }
329 }
330 return "BUG! Couldn't get number of messages in $mailbox!";
331 }
332
333
334 /******************************************************************************
335 ** Returns a displayable email address
336 ******************************************************************************/
337 function sqimap_find_email ($string) {
338 /** Luke Ehresman <lehresma@css.tayloru.edu>
339 ** <lehresma@css.tayloru.edu>
340 ** lehresma@css.tayloru.edu
341 **
342 ** What about
343 ** lehresma@css.tayloru.edu (Luke Ehresman)
344 **/
345
346 if (ereg("<([^>]+)>", $string, $regs)) {
347 $string = $regs[1];
348 }
349 return trim($string);
350 }
351
352
353 /******************************************************************************
354 ** Takes the From: field, and creates a displayable name.
355 ** Luke Ehresman <lkehresman@yahoo.com>
356 ** becomes: Luke Ehresman
357 ** <lkehresman@yahoo.com>
358 ** becomes: lkehresman@yahoo.com
359 ******************************************************************************/
360 function sqimap_find_displayable_name ($string) {
361 $string = ' '.trim($string);
362 $orig_string = $string;
363 if (strpos($string, '<') && strpos($string, '>')) {
364 if (strpos($string, '<') == 1) {
365 $string = sqimap_find_email($string);
366 } else {
367 $string = trim($string);
368 $string = substr($string, 0, strpos($string, '<'));
369 $string = ereg_replace ('"', '', $string);
370 }
371
372 if (trim($string) == '') {
373 $string = sqimap_find_email($orig_string);
374 }
375 }
376 return $string;
377 }
378
379
380 /******************************************************************************
381 ** Returns the number of unseen messages in this folder
382 ******************************************************************************/
383 function sqimap_unseen_messages ($imap_stream, $mailbox) {
384 //fputs ($imap_stream, sqimap_session_id() . " SEARCH UNSEEN NOT DELETED\r\n");
385 fputs ($imap_stream, sqimap_session_id() . " STATUS \"$mailbox\" (UNSEEN)\r\n");
386 $read_ary = sqimap_read_data ($imap_stream, sqimap_session_id(), true, $result, $message);
387 ereg("UNSEEN ([0-9]+)", $read_ary[0], $regs);
388 return $regs[1];
389 }
390
391
392 /******************************************************************************
393 ** Saves a message to a given folder -- used for saving sent messages
394 ******************************************************************************/
395 function sqimap_append ($imap_stream, $sent_folder, $length) {
396 fputs ($imap_stream, sqimap_session_id() . " APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n");
397 $tmp = fgets ($imap_stream, 1024);
398 }
399
400 function sqimap_append_done ($imap_stream) {
401 fputs ($imap_stream, "\r\n");
402 $tmp = fgets ($imap_stream, 1024);
403 }
404 ?>