This makes more sense to me, and has been shown not to break anything, and while...
[squirrelmail.git] / functions / imap_general.php
CommitLineData
59177427 1<?php
bccadd02 2
35586184 3/**
a6fd80f5 4 * imap_general.php
35586184 5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
15e6162e 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
35586184 8 *
15e6162e 9 * This implements all functions that do general imap functions.
35586184 10 *
15e6162e 11 * $Id$
35586184 12 */
13
b68edc75 14require_once(SM_PATH . 'functions/page_header.php');
47a29326 15require_once(SM_PATH . 'functions/auth.php');
16
35586184 17
41600f7d 18global $sqimap_session_id;
19$sqimap_session_id = 1;
71257f8b 20
3411d4ec 21/* Sets an unique session id in order to avoid simultanous sessions crash. */
487daa81 22function sqimap_session_id($unique_id = false) {
41600f7d 23 global $data_dir, $username, $sqimap_session_id;
487daa81 24 if (!$unique_id) {
25 return( sprintf("A%03d", $sqimap_session_id++) );
26 } else {
27 return( sprintf("A%03d", $sqimap_session_id++) . ' UID' );
28 }
9c737111 29}
30
3411d4ec 31/*
32 * Both send a command and accept the result from the command.
33 * This is to allow proper session number handling.
34 */
487daa81 35function sqimap_run_command_list ($imap_stream, $query, $handle_errors, &$response, &$message, $unique_id = false) {
c5809184 36 if ($imap_stream) {
37 $sid = sqimap_session_id($unique_id);
38 fputs ($imap_stream, $sid . ' ' . $query . "\r\n");
39 $read = sqimap_read_data_list ($imap_stream, $sid, $handle_errors, $response, $message, $query );
40 return $read;
41 } else {
42 global $squirrelmail_language, $color;
43 set_up_language($squirrelmail_language);
44 require_once(SM_PATH . 'functions/display_messages.php');
45 $string = "<b><font color=$color[2]>\n" .
46 _("ERROR : No available imapstream.") .
47 "</b></font>\n";
48 error_box($string,$color);
49 return false;
50 }
51
1c72b151 52}
53
487daa81 54function sqimap_run_command ($imap_stream, $query, $handle_errors, &$response, &$message, $unique_id = false) {
c5809184 55 if ($imap_stream) {
56 $sid = sqimap_session_id($unique_id);
57 fputs ($imap_stream, $sid . ' ' . $query . "\r\n");
58 $read = sqimap_read_data ($imap_stream, $sid, $handle_errors, $response, $message, $query);
59 return $read;
60 } else {
61 global $squirrelmail_language, $color;
62 set_up_language($squirrelmail_language);
63 require_once(SM_PATH . 'functions/display_messages.php');
64 $string = "<b><font color=$color[2]>\n" .
65 _("ERROR : No available imapstream.") .
66 "</b></font>\n";
67 error_box($string,$color);
68 return false;
69 }
70
42a07ac1 71}
72
9c737111 73
b8c285ab 74/*
75 * custom fgets function. gets a line from IMAP
76 * no matter how big it may be
77 */
78
79function sqimap_fgets($imap_stream) {
80 $read = '';
81 $buffer = 4096;
82 $results = '';
c41daf03 83 $offset = 0;
84 while (strpos($results, "\r\n", $offset) === false) {
b8c285ab 85 if (!($read = fgets($imap_stream, $buffer))) {
86 break;
87 }
c41daf03 88 if ( $results != '' ) {
89 $offset = strlen($results) - 1;
90 }
b8c285ab 91 $results .= $read;
92 }
93 return $results;
94}
95
bee165ef 96/*
3411d4ec 97 * Reads the output from the IMAP stream. If handle_errors is set to true,
98 * this will also handle all errors that are received. If it is not set,
99 * the errors will be sent back through $response and $message
bee165ef 100 */
b8c285ab 101
3411d4ec 102function sqimap_read_data_list ($imap_stream, $pre, $handle_errors, &$response, &$message, $query = '') {
9c737111 103 global $color, $squirrelmail_language;
9c737111 104 $read = '';
487daa81 105 $pre_a = explode(' ',trim($pre));
106 $pre = $pre_a[0];
b8c285ab 107 $resultlist = array();
108 $data = array();
109 $read = sqimap_fgets($imap_stream);
110 while (1) {
111 switch (true) {
112 case preg_match("/^$pre (OK|BAD|NO)(.*)$/", $read, $regs):
113 case preg_match('/^\* (BYE \[ALERT\])(.*)$/', $read, $regs):
114 $response = $regs[1];
115 $message = trim($regs[2]);
116 break 2;
117 case preg_match("/^\* (OK \[PARSE\])(.*)$/", $read):
118 $read = sqimap_fgets($imap_stream);
119 break 1;
56afb33f 120 case preg_match('/^\* ([0-9]+) FETCH.*/', $read, $regs):
b8c285ab 121 $fetch_data = array();
122 $fetch_data[] = $read;
123 $read = sqimap_fgets($imap_stream);
863936bb 124 while (!preg_match('/^\* [0-9]+ FETCH.*/', $read) &&
b8c285ab 125 !preg_match("/^$pre (OK|BAD|NO)(.*)$/", $read)) {
126 $fetch_data[] = $read;
863936bb 127 $last = $read;
b8c285ab 128 $read = sqimap_fgets($imap_stream);
9c737111 129 }
863936bb 130 if (isset($last) && preg_match('/^\)/', $last)) {
131 array_pop($fetch_data);
132 }
b8c285ab 133 $resultlist[] = $fetch_data;
134 break 1;
135 default:
136 $data[] = $read;
137 $read = sqimap_fgets($imap_stream);
138 break 1;
9c737111 139 }
b8c285ab 140 }
141 if (!empty($data)) {
9c737111 142 $resultlist[] = $data;
143 }
b8c285ab 144 elseif (empty($resultlist)) {
145 $resultlist[] = array();
146 }
bee165ef 147 if ($handle_errors == false) {
148 return( $resultlist );
b8c285ab 149 }
150 elseif ($response == 'NO') {
151 /* ignore this error from M$ exchange, it is not fatal (aka bug) */
9c737111 152 if (strstr($message, 'command resulted in') === false) {
441f2d33 153 set_up_language($squirrelmail_language);
1f720b34 154 require_once(SM_PATH . 'functions/display_messages.php');
155 $string = "<b><font color=$color[2]>\n" .
b8c285ab 156 _("ERROR : Could not complete request.") .
157 "</b><br>\n" .
9b761dbd 158 _("Query:") . ' ' .
159 htmlspecialchars($query) . '<br>' .
b8c285ab 160 _("Reason Given: ") .
9b761dbd 161 htmlspecialchars($message) . "</font><br>\n";
1f720b34 162 error_box($string,$color);
052e0c26 163 exit;
9c737111 164 }
b8c285ab 165 }
166 elseif ($response == 'BAD') {
9c737111 167 set_up_language($squirrelmail_language);
1f720b34 168 require_once(SM_PATH . 'functions/display_messages.php');
bef6629c 169 $string = "<b><font color=$color[2]>\n" .
b8c285ab 170 _("ERROR : Bad or malformed request.") .
171 "</b><br>\n" .
9b761dbd 172 _("Query:") . ' '.
173 htmlspecialchars($query) . '<br>' .
b8c285ab 174 _("Server responded: ") .
9b761dbd 175 htmlspecialchars($message) . "</font><br>\n";
1f720b34 176 error_box($string,$color);
9c737111 177 exit;
b8c285ab 178 }
179 else {
3411d4ec 180 return $resultlist;
9c737111 181 }
9c737111 182}
183
b3837b0f 184function sqimap_read_data ($imap_stream, $pre, $handle_errors, &$response, &$message, $query = '') {
863936bb 185 $res = sqimap_read_data_list($imap_stream, $pre, $handle_errors, $response, $message, $query);
186
187 /* sqimap_read_data should be called for one response
188 but since it just calls sqimap_read_data_list which
189 handles multiple responses we need to check for that
190 and merge the $res array IF they are seperated and
191 IF it was a FETCH response. */
192
193 if (isset($res[1]) && is_array($res[1]) && isset($res[1][0])
194 && preg_match('/^\* \d+ FETCH/', $res[1][0])) {
195 $result = array();
196 foreach($res as $index=>$value) {
197 $result = array_merge($result, $res["$index"]);
56afb33f 198 }
199 }
863936bb 200 if (isset($result)) {
201 return $result;
56afb33f 202 }
56afb33f 203 else {
863936bb 204 return $res[0];
56afb33f 205 }
206
9c737111 207}
208
3411d4ec 209/*
210 * Logs the user into the imap server. If $hide is set, no error messages
211 * will be displayed. This function returns the imap connection handle.
212 */
9c737111 213function sqimap_login ($username, $password, $imap_server_address, $imap_port, $hide) {
47a29326 214 global $color, $squirrelmail_language, $onetimepad, $use_imap_tls, $imap_auth_mech;
85fc999e 215
bd9829d7 216 $imap_server_address = sqimap_get_user_server($imap_server_address, $username);
47a29326 217 $host=$imap_server_address;
218
219 if (($use_imap_tls == true) and (check_php_version(4,3)) and (extension_loaded('openssl'))) {
220 /* Use TLS by prefixing "tls://" to the hostname */
221 $imap_server_address = 'tls://' . $imap_server_address;
222 }
223
3411d4ec 224 $imap_stream = fsockopen ( $imap_server_address, $imap_port, $error_number, $error_string, 15);
85fc999e 225
3411d4ec 226 /* Do some error correction */
9c737111 227 if (!$imap_stream) {
228 if (!$hide) {
441f2d33 229 set_up_language($squirrelmail_language, true);
1f720b34 230 require_once(SM_PATH . 'functions/display_messages.php');
231 $string = sprintf (_("Error connecting to IMAP server: %s.") .
232 "<br>\r\n", $imap_server_address) .
233 "$error_number : $error_string<br>\r\n";
2f1f7a12 234 logout_error($string,$color);
9c737111 235 }
236 exit;
237 }
052e0c26 238
2f1f7a12 239 $server_info = fgets ($imap_stream, 1024);
240
241 /* Decrypt the password */
242 $password = OneTimePadDecrypt($password, $onetimepad);
243
639c7164 244 if (($imap_auth_mech == 'cram-md5') OR ($imap_auth_mech == 'digest-md5')) {
fe0b18b3 245 // We're using some sort of authentication OTHER than plain or login
47a29326 246 $tag=sqimap_session_id(false);
247 if ($imap_auth_mech == 'digest-md5') {
248 $query = $tag . " AUTHENTICATE DIGEST-MD5\r\n";
249 } elseif ($imap_auth_mech == 'cram-md5') {
250 $query = $tag . " AUTHENTICATE CRAM-MD5\r\n";
251 }
252 fputs($imap_stream,$query);
253 $answer=sqimap_fgets($imap_stream);
254 // Trim the "+ " off the front
255 $response=explode(" ",$answer,3);
256 if ($response[0] == '+') {
257 // Got a challenge back
258 $challenge=$response[1];
259 if ($imap_auth_mech == 'digest-md5') {
260 $reply = digest_md5_response($username,$password,$challenge,'imap',$host);
261 } elseif ($imap_auth_mech == 'cram-md5') {
262 $reply = cram_md5_response($username,$password,$challenge);
263 }
264 fputs($imap_stream,$reply);
265 $read=sqimap_fgets($imap_stream);
266 if ($imap_auth_mech == 'digest-md5') {
267 // DIGEST-MD5 has an extra step..
268 if (substr($read,0,1) == '+') { // OK so far..
269 fputs($imap_stream,"\r\n");
270 $read=sqimap_fgets($imap_stream);
271 }
272 }
273 $results=explode(" ",$read,3);
274 $response=$results[1];
275 $message=$results[2];
276 } else {
277 // Fake the response, so the error trap at the bottom will work
278 $response="BAD";
279 $message='IMAP server does not appear to support the authentication method selected.';
280 $message .= ' Please contact your system administrator.';
281 }
fe0b18b3 282 } elseif ($imap_auth_mech == 'login') {
283 // Original IMAP login code
47a29326 284 $query = 'LOGIN "' . quoteIMAP($username) . '" "' . quoteIMAP($password) . '"';
285 $read = sqimap_run_command ($imap_stream, $query, false, $response, $message);
1e7fc1cb 286 } elseif ($imap_auth_mech == 'plain') {
287 /* Replace this with SASL PLAIN if it ever gets implemented */
288 $response="BAD";
289 $message='SquirrelMail does not support SASL PLAIN yet. Rerun conf.pl and use login instead.';
290 } else {
291 $response="BAD";
292 $message="Internal SquirrelMail error - unknown IMAP authentication method chosen. Please contact the developers.";
fe0b18b3 293 }
47a29326 294
295 /* If the connection was not successful, lets see why */
9c737111 296 if ($response != 'OK') {
297 if (!$hide) {
74424a43 298 if ($response != 'NO') {
3411d4ec 299 /* "BAD" and anything else gets reported here. */
9b761dbd 300 $message = htmlspecialchars($message);
9c737111 301 set_up_language($squirrelmail_language, true);
1f720b34 302 require_once(SM_PATH . 'functions/display_messages.php');
9c737111 303 if ($response == 'BAD') {
1f720b34 304 $string = sprintf (_("Bad request: %s")."<br>\r\n", $message);
9c737111 305 } else {
1f720b34 306 $string = sprintf (_("Unknown error: %s") . "<br>\n", $message);
9c737111 307 }
1e7fc1cb 308 if (isset($read) && is_array($read)) {
309 $string .= '<br>' . _("Read data:") . "<br>\n";
9c737111 310 foreach ($read as $line) {
1f720b34 311 $string .= htmlspecialchars($line) . "<br>\n";
9c737111 312 }
313 }
1f720b34 314 error_box($string,$color);
9c737111 315 exit;
165e24a7 316 } else {
3411d4ec 317 /*
318 * If the user does not log in with the correct
1c72b151 319 * username and password it is not possible to get the
320 * correct locale from the user's preferences.
321 * Therefore, apply the same hack as on the login
322 * screen.
3411d4ec 323 *
324 * $squirrelmail_language is set by a cookie when
1c72b151 325 * the user selects language and logs out
bee165ef 326 */
9be8198d 327
9c737111 328 set_up_language($squirrelmail_language, true);
bd9c880b 329 include_once(SM_PATH . 'functions/display_messages.php' );
69146537 330 sqsession_destroy();
bd9c880b 331 logout_error( _("Unknown user or password incorrect.") );
9c737111 332 exit;
052e0c26 333 }
9c737111 334 } else {
052e0c26 335 exit;
9c737111 336 }
337 }
9c737111 338 return $imap_stream;
339}
f1e6f580 340
3411d4ec 341/* Simply logs out the IMAP session */
9c737111 342function sqimap_logout ($imap_stream) {
8d936b0c 343 /* Logout is not valid until the server returns 'BYE'
344 * If we don't have an imap_ stream we're already logged out */
26a2cc8b 345 if(isset($imap_stream) && $imap_stream)
8d936b0c 346 sqimap_run_command($imap_stream, 'LOGOUT', false, $response, $message);
9c737111 347}
348
487daa81 349function sqimap_capability($imap_stream, $capability='') {
9c737111 350 global $sqimap_capabilities;
9c737111 351 if (!is_array($sqimap_capabilities)) {
1c72b151 352 $read = sqimap_run_command($imap_stream, 'CAPABILITY', true, $a, $b);
353
9c737111 354 $c = explode(' ', $read[0]);
355 for ($i=2; $i < count($c); $i++) {
356 $cap_list = explode('=', $c[$i]);
3411d4ec 357 if (isset($cap_list[1])) {
9c737111 358 $sqimap_capabilities[$cap_list[0]] = $cap_list[1];
3411d4ec 359 } else {
9c737111 360 $sqimap_capabilities[$cap_list[0]] = TRUE;
3411d4ec 361 }
f1e6f580 362 }
9c737111 363 }
487daa81 364 if ($capability) {
365 if (isset($sqimap_capabilities[$capability])) {
366 return $sqimap_capabilities[$capability];
367 } else {
368 return false;
369 }
f1e6f580 370 }
487daa81 371 return $sqimap_capabilities;
9c737111 372}
373
3411d4ec 374/* Returns the delimeter between mailboxes: INBOX/Test, or INBOX.Test */
9c737111 375function sqimap_get_delimiter ($imap_stream = false) {
3411d4ec 376 global $sqimap_delimiter, $optional_delimiter;
85fc999e 377
9c737111 378 /* Use configured delimiter if set */
379 if((!empty($optional_delimiter)) && $optional_delimiter != 'detect') {
380 return $optional_delimiter;
381 }
85fc999e 382
9c737111 383 /* Do some caching here */
384 if (!$sqimap_delimiter) {
385 if (sqimap_capability($imap_stream, 'NAMESPACE')) {
3411d4ec 386 /*
387 * According to something that I can't find, this is supposed to work on all systems
388 * OS: This won't work in Courier IMAP.
389 * OS: According to rfc2342 response from NAMESPACE command is:
390 * OS: * NAMESPACE (PERSONAL NAMESPACES) (OTHER_USERS NAMESPACE) (SHARED NAMESPACES)
391 * OS: We want to lookup all personal NAMESPACES...
392 */
1c72b151 393 $read = sqimap_run_command($imap_stream, 'NAMESPACE', true, $a, $b);
f1e6f580 394 if (eregi('\\* NAMESPACE +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL)', $read[0], $data)) {
9c737111 395 if (eregi('^\\( *\\((.*)\\) *\\)', $data[1], $data2)) {
f1e6f580 396 $pn = $data2[1];
9c737111 397 }
f1e6f580 398 $pna = explode(')(', $pn);
9c737111 399 while (list($k, $v) = each($pna)) {
862ff2d3 400 $lst = explode('"', $v);
401 if (isset($lst[3])) {
402 $pn[$lst[1]] = $lst[3];
403 } else {
74424a43 404 $pn[$lst[1]] = '';
862ff2d3 405 }
f1e6f580 406 }
407 }
408 $sqimap_delimiter = $pn[0];
409 } else {
410 fputs ($imap_stream, ". LIST \"INBOX\" \"\"\r\n");
411 $read = sqimap_read_data($imap_stream, '.', true, $a, $b);
412 $quote_position = strpos ($read[0], '"');
413 $sqimap_delimiter = substr ($read[0], $quote_position+1, 1);
414 }
415 }
416 return $sqimap_delimiter;
9c737111 417}
052e0c26 418
419
3411d4ec 420/* Gets the number of messages in the current mailbox. */
9c737111 421function sqimap_get_num_messages ($imap_stream, $mailbox) {
1f720b34 422 $read_ary = sqimap_run_command ($imap_stream, "EXAMINE \"$mailbox\"", false, $result, $message);
9c737111 423 for ($i = 0; $i < count($read_ary); $i++) {
85fc999e 424 if (ereg("[^ ]+ +([^ ]+) +EXISTS", $read_ary[$i], $regs)) {
425 return $regs[1];
426 }
9c737111 427 }
1f720b34 428 return false; //"BUG! Couldn't get number of messages in $mailbox!";
9c737111 429}
430
431
3411d4ec 432/* Returns a displayable email address.
433 * Luke Ehresman <lehresma@css.tayloru.edu>
434 * "Luke Ehresman" <lehresma@css.tayloru.edu>
435 * <lehresma@css.tayloru.edu>
436 * lehresma@css.tayloru.edu (Luke Ehresman)
437 * lehresma@css.tayloru.edu
438 * becomes: lehresma@css.tayloru.edu
439 */
9c737111 440function sqimap_find_email ($string) {
9c737111 441 if (ereg("<([^>]+)>", $string, $regs)) {
442 $string = $regs[1];
3411d4ec 443 } else if (ereg("([^ ]+@[^ ]+)", $string, $regs)) {
444 $string = $regs[1];
9c737111 445 }
446 return trim($string);
447}
448
449
450/*
3411d4ec 451 * Takes the From: field and creates a displayable name.
452 * Luke Ehresman <lkehresman@yahoo.com>
453 * "Luke Ehresman" <lkehresman@yahoo.com>
454 * lkehresman@yahoo.com (Luke Ehresman)
455 * becomes: Luke Ehresman
456 * <lkehresman@yahoo.com>
457 * becomes: lkehresman@yahoo.com
6282af09 458 */
9c737111 459function sqimap_find_displayable_name ($string) {
6282af09 460 $string = trim($string);
2f7bda0a 461
7e3de682 462 if ( ereg('^(.+)<.*>', $string, $regs) ) {
092d4f2c 463 $orig_string = $string;
2f7bda0a 464 $string = str_replace ('"', '', $regs[1] );
092d4f2c 465 if (trim($string) == '') {
466 $string = sqimap_find_email($orig_string);
467 }
33565ec4 468 if( $string == '' || $string == ' ' ){
1ba8cd6b 469 $string = '&nbsp;';
33565ec4 470 }
7e3de682 471 }
472 elseif ( ereg('\((.*)\)', $string, $regs) ) {
9e9c63e4 473 if( ( $regs[1] == '' ) || ( $regs[1] == ' ' ) ){
474 if ( ereg('^(.+) \(', $string, $regs) ) {
475 $string = ereg_replace( ' \(\)$', '', $string );
476 } else {
1ba8cd6b 477 $string = '&nbsp;';
9e9c63e4 478 }
479 } else {
480 $string = $regs[1];
481 }
7e3de682 482 }
483 else {
2f7bda0a 484 $string = str_replace ('"', '', sqimap_find_email($string));
9c737111 485 }
9c737111 486
7e3de682 487 return trim($string);
488}
85fc999e 489
9c737111 490/*
3411d4ec 491 * Returns the number of unseen messages in this folder
492 */
9c737111 493function sqimap_unseen_messages ($imap_stream, $mailbox) {
1f720b34 494 $read_ary = sqimap_run_command ($imap_stream, "STATUS \"$mailbox\" (UNSEEN)", false, $result, $message);
ea7ff111 495 $i = 0;
1f720b34 496 $regs = array(false, false);
ea7ff111 497 while (isset($read_ary[$i])) {
498 if (ereg("UNSEEN ([0-9]+)", $read_ary[$i], $regs)) {
499 break;
500 }
501 $i++;
502 }
9c737111 503 return $regs[1];
504}
505
1f720b34 506/*
507 * Returns the number of unseen/total messages in this folder
508 */
509function sqimap_status_messages ($imap_stream, $mailbox) {
510 $read_ary = sqimap_run_command ($imap_stream, "STATUS \"$mailbox\" (MESSAGES UNSEEN)", false, $result, $message);
511 $i = 0;
512 $messages = $unseen = false;
513 $regs = array(false,false);
514 while (isset($read_ary[$i])) {
515 if (preg_match('/UNSEEN\s+([0-9]+)/i', $read_ary[$i], $regs)) {
516 $unseen = $regs[1];
517 }
518 if (preg_match('/MESSAGES\s+([0-9]+)/i', $read_ary[$i], $regs)) {
519 $messages = $regs[1];
520 }
521 $i++;
522 }
523 return array('MESSAGES' => $messages, 'UNSEEN'=>$unseen);
524}
525
9c737111 526
527/*
3411d4ec 528 * Saves a message to a given folder -- used for saving sent messages
529 */
9c737111 530function sqimap_append ($imap_stream, $sent_folder, $length) {
531 fputs ($imap_stream, sqimap_session_id() . " APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n");
85fc999e 532 $tmp = fgets ($imap_stream, 1024);
9c737111 533}
534
8813fb15 535function sqimap_append_done ($imap_stream, $folder='') {
1f720b34 536 global $squirrelmail_language, $color;
9c737111 537 fputs ($imap_stream, "\r\n");
538 $tmp = fgets ($imap_stream, 1024);
69146537 539 if (preg_match("/(.*)(BAD|NO)(.*)$/", $tmp, $regs)) {
540 set_up_language($squirrelmail_language);
1f720b34 541 require_once(SM_PATH . 'functions/display_messages.php');
8813fb15 542 $reason = $regs[3];
543 if ($regs[2] == 'NO') {
544 $string = "<b><font color=$color[2]>\n" .
545 _("ERROR : Could not append message to") ." $folder." .
546 "</b><br>\n" .
547 _("Server responded: ") .
548 $reason . "<br>\n";
549 if (preg_match("/(.*)(quota)(.*)$/i", $reason, $regs)) {
5296b8ef 550 $string .= _("Solution: ") .
551 _("Remove unneccessary messages from your folder and start with your Trash folder.")
8813fb15 552 ."<br>\n";
553 }
554 $string .= "</font>\n";
555 error_box($string,$color);
556 } else {
557 $string = "<b><font color=$color[2]>\n" .
1f720b34 558 _("ERROR : Bad or malformed request.") .
559 "</b><br>\n" .
560 _("Server responded: ") .
561 $tmp . "</font><br>\n";
8813fb15 562 error_box($string,$color);
563 exit;
564 }
69146537 565 }
9c737111 566}
85fc999e 567
bd9829d7 568function sqimap_get_user_server ($imap_server, $username) {
bd9829d7 569 if (substr($imap_server, 0, 4) != "map:") {
570 return $imap_server;
571 }
bd9829d7 572 $function = substr($imap_server, 4);
573 return $function($username);
574}
575
576/* This is an example that gets imapservers from yellowpages (NIS).
577 * you can simple put map:map_yp_alias in your $imap_server_address
578 * in config.php use your own function instead map_yp_alias to map your
579 * LDAP whatever way to find the users imapserver. */
580
581function map_yp_alias($username) {
582 $yp = `ypmatch $username aliases`;
583 return chop(substr($yp, strlen($username)+1));
584}
585
15e6162e 586?>