C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\gridtip\webmailer\src\search.php


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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
<?php

/**
 * search.php
 *
 * IMAP search page
 *
 * @copyright 1999-2011 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: search.php 14084 2011-01-06 02:44:03Z pdontthink $
 * @package squirrelmail
 * @subpackage search
 */

/** This is the search page */
define('PAGE_NAME''search');

/**
 * Path for SquirrelMail required files.
 * @ignore
 */
define('SM_PATH','../');

/** SquirrelMail required files.
 */
require_once(SM_PATH 'include/validate.php');
require_once(
SM_PATH 'functions/imap.php');
require_once(
SM_PATH 'functions/imap_search.php');
require_once(
SM_PATH 'functions/imap_mailbox.php');
require_once(
SM_PATH 'functions/strings.php');
require_once(
SM_PATH 'functions/forms.php');

global 
$allow_thread_sort;

/* get globals we may need */

sqgetGlobalVar('username'$usernameSQ_SESSION);
sqgetGlobalVar('key'$keySQ_COOKIE);
sqgetGlobalVar('delimiter'$delimiterSQ_SESSION);
sqgetGlobalVar('onetimepad'$onetimepadSQ_SESSION);
sqgetGlobalVar('composenew' $composenewSQ_FORM);
sqgetGlobalVar('composesession' $composesession SQ_SESSION);

if (!
sqgetGlobalVar('mailbox',$mailbox,SQ_GET)) {
    unset(
$mailbox);
}
if (!
sqgetGlobalVar('submit',$submit,SQ_GET)) {
    
$submit '';
}
if (!
sqgetGlobalVar('what',$what,SQ_GET)) {
    
$what='';
}
if (! 
sqgetGlobalVar('where',$where,SQ_GET) ||
    ! 
in_array$where, array('BODY','TEXT','SUBJECT','FROM','CC','TO'))) {
    
// make sure that 'where' is one if standard IMAP SEARCH keywords
    
if (isset($mailbox) && isSentMailbox($mailboxTRUE))
        
$where 'TO';
    else
        
$where 'FROM';
}
if ( !
sqgetGlobalVar('preselected'$preselectedSQ_GET) || !is_array($preselected)) {
  
$preselected = array();
} else {
  
$preselected array_keys($preselected);
}
if (!
sqgetGlobalVar('checkall',$checkall,SQ_GET)) {
    unset(
$checkall);
}
if (
sqgetGlobalVar('count',$count,SQ_GET)) {
    
$count = (int) $count;
} else {
    unset(
$count);
}
if (!
sqgetGlobalVar('smtoken',$submitted_tokenSQ_GET)) {
    
$submitted_token '';
}
/* end of get globals */

/*  here are some functions, could go in imap_search.php
    this was here, pretty handy  */
function s_opt$val$sel$tit ) {
    echo 
"            <option value=\"$val\"";
    if ( 
$sel == $val ) {
        echo 
' selected="selected"';
    }
    echo  
">$tit</option>\n";
}

/*  function to get the recent searches and put them in the attributes array  */
function get_recent($username$data_dir) {
    
$attributes = array();
    
$types = array('search_what''search_where''search_folder');
    
$recent_count getPref($data_dir$username'search_memory'0);
    for (
$x=1;$x<=$recent_count;$x++) {
        
reset($types);
        foreach (
$types as $key) {
            
$attributes[$key][$x] = getPref($data_dir$username$key.$x"");
        }
    }
    return 
$attributes;
}

/*  function to get the saved searches and put them in the saved_attributes array  */
function get_saved($username$data_dir) {
    
$saved_attributes = array();
    
$types = array('saved_what''saved_where''saved_folder');
    foreach (
$types as $key) {
        for (
$x=1;;$x++) {
            
$prefval getPref($data_dir$username$key."$x""");
            if (
$prefval == "") {
                break;
            } else {
                
$saved_attributes[$key][$x] = $prefval;
            }
        }
    }
    return 
$saved_attributes;
}

/*  function to update recent pref arrays  */
function update_recent($what$where$mailbox$username$data_dir) {
    
$attributes = array();
    
$types = array('search_what''search_where''search_folder');
    
$input = array($what$where$mailbox);
    
$attributes get_recent$username$data_dir);
    
reset($types);
    
$dupe 'no';
    for (
$i=1;$i<=count($attributes['search_what']);$i++) {
        if (isset(
$attributes['search_what'][$i])) {
            if (
$what == $attributes['search_what'][$i] &&
                
$where == $attributes['search_where'][$i] &&
                
$mailbox == $attributes['search_folder'][$i]) {
                    
$dupe 'yes';
            }
        }
    }
    if (
$dupe == 'no') {
        
$i 0;
        foreach (
$types as $key) {
            
array_push ($attributes[$key], $input[$i]);
            
array_shift ($attributes[$key]);
            
$i++;
        }
        
$recent_count getPref($data_dir$username'search_memory'0);
        
$n=0;
        for (
$i=1;$i<=$recent_count;$i++) {
            
reset($types);
            foreach (
$types as $key) {
                
setPref($data_dir$username$key.$i$attributes[$key][$n]);
            }
            
$n++;
        }
    }
}

/*  function to forget a recent search  */
function forget_recent($forget_index$username$data_dir) {
    
$attributes = array();
    
$types = array('search_what''search_where''search_folder');
    
$attributes get_recent$username$data_dir);
    
reset($types);
    foreach (
$types as $key) {
        
array_splice($attributes[$key], $forget_index 11);
        
array_unshift($attributes[$key], '');
    }
    
reset($types);
    
$recent_count getPref($data_dir$username'search_memory'0);
    
$n=0;
    for (
$i=1;$i<=$recent_count;$i++) {
        
reset($types);
        foreach (
$types as $key) {
            
setPref($data_dir$username$key.$i$attributes[$key][$n]);
        }
        
$n++;
    }
}

/*  function to delete a saved search  */
function delete_saved($delete_index$username$data_dir) {
    
$types = array('saved_what''saved_where''saved_folder');
    
$attributes get_saved($username$data_dir);
    foreach (
$types as $key) {
        
array_splice($attributes[$key], $delete_index1);
    }
    
reset($types);
    
$n=0;
    
$saved_count count($attributes['saved_what']);
    
$last_element $saved_count 1;
        for (
$i=1;$i<=$saved_count;$i++) {
            
reset($types);
            foreach (
$types as $key) {
                
setPref($data_dir$username$key.$i$attributes[$key][$n]);
            }
        
$n++;
        }
    
reset($types);
    foreach(
$types as $key) {
    
removePref($data_dir$username$key.$last_element);
    }
}

/*  function to save a search from recent to saved  */
function save_recent($save_index$username$data_dir) {
    
$attributes = array();
    
$types = array('search_what''search_where''search_folder');
    
$saved_types = array(=> 'saved_what'=> 'saved_where'=> 'saved_folder');
    
$saved_array get_saved($username$data_dir);
    
$save_index $save_index -1;
    if (isset(
$saved_array['saved_what'])) {
        
$saved_count = (count($saved_array['saved_what']) + 1);
    } else {
        
// there are no saved searches. Function is used to save first search
        
$saved_count 1;
    }
    
$attributes get_recent ($username$data_dir);
    
$n 0;
    foreach (
$types as $key) {
        
$slice array_slice($attributes[$key], $save_index1);
        
$name $saved_types[$n];
        
setPref($data_dir$username$name.$saved_count$slice[0]);
        
$n++;
    }
}

function 
printSearchMessages($msgs,$mailbox$cnt$imapConnection$where$what$usecache false$newsort false) {
    global 
$sort$color$allow_server_sort$allow_server_thread;

    if (
$cnt 0) {
        if ((!empty(
$allow_server_sort) && $allow_server_sort) || (!empty($allow_server_thread) && $allow_server_thread)) {
            
$msort $msgs;
        } else {
            
$msort calc_msort($msgs$sort$mailbox);
        }

        if ( 
$mailbox == 'INBOX' ) {
            
$showbox _("INBOX");
        } else {
            
$showbox imap_utf7_decode_local($mailbox);
        }
        echo 
html_tag'div''<b><big>' _("Folder:") . ' '.
            
htmlspecialchars($showbox) .'</big></b>','center') . "\n";

        
$msg_cnt_str get_msgcnt_str(1$cnt$cnt);
        
$toggle_all get_selectall_link(1$sort);

        
$safe_name preg_replace("/[^0-9A-Za-z_]/"'_'$mailbox);
        
$form_name "FormMsgs" $safe_name;
        echo 
'<form name="' $form_name '" method="post" action="move_messages.php">' ."\n" .
             
'<input type="hidden" name="mailbox" value="'.htmlspecialchars($mailbox).'">' "\n" .
             
'<input type="hidden" name="startMessage" value="1">' "\n" .
             
addHidden('smtoken'sm_generate_security_token()) . "\n";

        echo 
'<table border="0" width="100%" cellpadding="0" cellspacing="0">';
        echo 
'<tr><td>';

        
mail_message_listing_beginning($imapConnection$mailbox$sort,
                                       
$msg_cnt_str$toggle_all1);

        echo 
'</td></tr>';
        echo 
'<tr><td height="5" bgcolor="'.$color[4].'"></td></tr>';
        echo 
'<tr><td>';
        echo 
'    <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
        echo 
'     <tr><td>';
        echo 
'       <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[5].'">';
        echo 
'<tr><td>';

        
printHeader($mailbox6$colorfalse);

        
displayMessageArray($imapConnection$cnt1,
            
$msort$mailbox$sort$color$cnt$where$what);

        echo 
'</td></tr></table></td></tr></table>';
        
mail_message_listing_end($cnt''$msg_cnt_str$color);
        echo 
"\n</table></form>\n\n";
    }
}

/* ------------------------ main ------------------------ */

/*  reset these arrays on each page load just in case  */
$attributes = array ();
$saved_attributes = array ();
$search_all 'none';
$perbox_count = array ();
$recent_count getPref($data_dir$username'search_memory'0);

/*  get mailbox names  */
$imapConnection sqimap_login($username$key$imapServerAddress$imapPort0);
$boxes sqimap_mailbox_list($imapConnection);

/*  set current mailbox to INBOX if none was selected or if page
    was called to search all folders.  */
if ( !isset($mailbox) || $mailbox == 'None' || $mailbox == '' ) {
    
$mailbox $boxes[0]['unformatted'];
}
if (
$mailbox == 'All Folders') {
    
$search_all 'all';
}

// the preg_match() is a fix for Dovecot wherein UIDs can be bigger than
// normal integers - this isn't in 1.4 yet, but when adding new code, why not...
if (sqgetGlobalVar('unread_passed_id'$unread_passed_idSQ_GET)
 && 
preg_match('/^[0-9]+$/'$unread_passed_id)) {
    
sqimap_mailbox_select($imapConnection$mailbox);
    
sqimap_toggle_flag($imapConnection$unread_passed_id'\\Seen'falsetrue);
}

if (isset(
$composenew) && $composenew) {
    
$comp_uri "../src/compose.php?mailbox="urlencode($mailbox).
        
"&amp;session=$composesession&amp";
    
displayPageHeader($color$mailbox"comp_in_new('$comp_uri');"false);
} else {
    
displayPageHeader($color$mailbox);
}
/*  See how the page was called and fire off correct function  */
if (empty($submit) && !empty($what)) {
    
$submit _("Search");
}

// need to verify security token if user wants to do anything
if (!empty($submit)) {
    
sm_validate_security_token($submitted_token3600TRUE);
}

if (
$submit == _("Search") && !empty($what)) {
    if (
$recent_count 0) {
        
update_recent($what$where$mailbox$username$data_dir);
    }
}
elseif (
$submit == 'forget' && isset($count)) {
    
forget_recent($count$username$data_dir);
}
elseif (
$submit == 'save' && isset($count)) {
    
save_recent($count$username$data_dir);
}
elseif (
$submit == 'delete' && isset($count)) {
    
delete_saved($count$username$data_dir);
}

do_hook('search_before_form');

echo 
html_tag'table',
         
html_tag'tr'"\n" .
             
html_tag'td''<b>' _("Search") . '</b>''center'$color[0] )
         ) ,
     
'''''width="100%"') . "\n";

/*  update the recent and saved searches from the pref files  */
$attributes get_recent($username$data_dir);
$saved_attributes get_saved($username$data_dir);
if (isset(
$saved_attributes['saved_what'])) {
    
$saved_count count($saved_attributes['saved_what']);
} else {
    
$saved_count 0;
}
$count_all 0;

/* Saved Search Table */
if ($saved_count 0) {
    echo 
"<br />\n"
    
html_tag'table''''center'$color[9], 'width="95%" cellpadding="1" cellspacing="1" border="0"' )
    . 
html_tag'tr',
          
html_tag'td''<b>'._("Saved Searches") . '</b>''center' )
      )
    . 
html_tag'tr' )
    . 
html_tag'td' )
    . 
html_tag'table''''center''''width="100%" cellpadding="2" cellspacing="2" border="0"' );
    for (
$i=0$i $saved_count; ++$i) {
        if (
$i 2) {
            echo 
html_tag'tr'''''$color[0] );
        } else {
            echo 
html_tag'tr'''''$color[4] );
        }
        echo 
html_tag'td'htmlspecialchars(imap_utf7_decode_local($saved_attributes['saved_folder'][$i 1])), 'left''''width="35%"' )
        . 
html_tag'td'htmlspecialchars($saved_attributes['saved_what'][$i 1]), 'left' )
        . 
html_tag'td'htmlspecialchars($saved_attributes['saved_where'][$i 1]), 'center' )
        . 
html_tag'td''''right' )
        .   
'<a href="search.php'
        
.     '?mailbox=' urlencode($saved_attributes['saved_folder'][$i 1])
        .     
'&amp;what=' urlencode($saved_attributes['saved_what'][$i 1])
        .     
'&amp;where=' urlencode($saved_attributes['saved_where'][$i 1])
        .     
'&amp;smtoken=' sm_generate_security_token()
        .   
'">' _("edit") . '</a>'
        
.   '&nbsp;|&nbsp;'
        
.   '<a href="search.php'
        
.     '?mailbox=' urlencode($saved_attributes['saved_folder'][$i 1])
        .     
'&amp;what=' urlencode($saved_attributes['saved_what'][$i 1])
        .     
'&amp;where=' urlencode($saved_attributes['saved_where'][$i 1])
        .     
'&amp;submit=Search_no_update'
        
.     '&amp;smtoken=' sm_generate_security_token()
        .   
'">' _("search") . '</a>'
        
.   '&nbsp;|&nbsp;'
        
.   "<a href=\"search.php?count=$i&amp;submit=delete&amp;smtoken=" sm_generate_security_token() .'">'
        
.     _("delete")
        .   
'</a>'
        
'</td></tr>';
    }
    echo 
"</table></td></tr></table>\n";
}

if (
$recent_count 0) {
    echo 
"<br />\n"
       
html_tag'table''''center'$color[9], 'width="95%" cellpadding="1" cellspacing="1" border="0"' )
       . 
html_tag'tr',
             
html_tag'td''<b>' _("Recent Searches") . '</b>''center' )
         )
       . 
html_tag'tr' )
       . 
html_tag'td' )
       . 
html_tag'table''''center''''width="100%" cellpadding="0" cellspacing="0" border="0"' );
    for (
$i=1$i <= $recent_count; ++$i) {
            if (isset(
$attributes['search_folder'][$i])) {
            if (
$attributes['search_folder'][$i] == "") {
                
$attributes['search_folder'][$i] = "INBOX";
            }
            }
            if (
$i 2) {
                echo 
html_tag'tr'''''$color[0] );
            } else {
                echo 
html_tag'tr'''''$color[0] );
            }
            if (isset(
$attributes['search_what'][$i]) &&
                !empty(
$attributes['search_what'][$i])) {
            echo 
html_tag'td'htmlspecialchars(imap_utf7_decode_local($attributes['search_folder'][$i])), 'left''''width="35%"' )
               . 
html_tag'td'htmlspecialchars($attributes['search_what'][$i]), 'left' )
               . 
html_tag'td'htmlspecialchars($attributes['search_where'][$i]), 'center' )
               . 
html_tag'td''''right' )
               .   
"<a href=\"search.php?count=$i&amp;submit=save&amp;smtoken=" sm_generate_security_token() . '">'
               
.     _("save")
               .   
'</a>'
               
.   '&nbsp;|&nbsp;'
               
.   '<a href="search.php'
               
.     '?mailbox=' urlencode($attributes['search_folder'][$i])
               .     
'&amp;what=' urlencode($attributes['search_what'][$i])
               .     
'&amp;where=' urlencode($attributes['search_where'][$i])
               .     
'&amp;submit=Search_no_update'
               
.     '&amp;smtoken=' sm_generate_security_token()
               .   
'">' _("search") . '</a>'
               
.   '&nbsp;|&nbsp;'
               
.   "<a href=\"search.php?count=$i&amp;submit=forget&amp;smtoken=" sm_generate_security_token() . '">'
               
.     _("forget")
               .   
'</a>'
               
'</td></tr>';
        }
        }
    echo 
'</table></td></tr></table><br />';
}

/** FIXME: remove or fix it. $newsort is not set and not extracted from request
if (isset($newsort)) {
    $sort = $newsort;
    sqsession_register($sort, 'sort');
}*/

/*********************************************************************
 * Check to see if we can use cache or not. Currently the only time  *
 * when you will not use it is when a link on the left hand frame is *
 * used. Also check to make sure we actually have the array in the   *
 * registered session data.  :)                                      *
 *********************************************************************/

/** FIXME: remove or fix it. $use_mailbox_cache is not set and not extracted from request
if (! isset($use_mailbox_cache)) {
    $use_mailbox_cache = 0;
}*/

/* There is a problem with registered vars in 4.1 */
/*
if( substr( phpversion(), 0, 3 ) == '4.1'  ) {
    $use_mailbox_cache = FALSE;
}
*/

/* Search Form */
echo html_tag'div''<b>' _("Current Search") . '</b>''left' ) . "\n"
   
'<form action="search.php" name="s">'
   
addHidden('smtoken'sm_generate_security_token())
   . 
html_tag'table''''''''width="95%" cellpadding="0" cellspacing="0" border="0"' )
   . 
html_tag'tr' )
   . 
html_tag'td''''left' )
   . 
'<select name="mailbox">'
   
'<option value="All Folders"';
   if (
$mailbox == 'All Folders') {
       echo 
' selected="selected"';
   }
   echo 
'>[ ' _("All Folders") . " ]</option>\n";

   
$show_selected = array(strtolower($mailbox));
   echo 
sqimap_mailbox_option_list($imapConnection$show_selected0$boxes);

   echo 
'         </select>'.
        
"       </td>\n";

// FIXME: explain all str_replace calls.
$what_disp str_replace(','' '$what);
$what_disp str_replace('\\\\''\\'$what_disp);
$what_disp str_replace('\\"''"'$what_disp);
$what_disp str_replace('"''&quot;'$what_disp);

echo 
html_tag'td''<input type="text" size="35" name="what" value="' $what_disp '" />' "\n"'center' )
     . 
html_tag'td''''right' )
     . 
"<select name=\"where\">";
s_opt'BODY'$where_("Body") );
s_opt'TEXT'$where_("Everywhere") );
s_opt'SUBJECT'$where_("Subject") );
s_opt'FROM'$where_("From") );
s_opt'CC'$where_("Cc") );
s_opt'TO'$where_("To") );
echo 
"         </select>\n" .
     
"        </td>\n".
     
html_tag'td''<input type="submit" name="submit" value="' _("Search") . '" />' "\n"'center''''colspan="3"' ) .
     
"     </tr>\n".
     
"   </table>\n".
     
"</form>\n";


do_hook('search_after_form');

flush();

/*
    search all folders option still in the works. returns a table for each
    folder it finds a match in.
*/

$old_value 0;
if (
$allow_thread_sort == TRUE) {
    
$old_value $allow_thread_sort;
    
$allow_thread_sort FALSE;
}

if (
$search_all == 'all') {
    
$mailbox == '';
    
$boxcount count($boxes);
    echo 
'<br /><center><b>' .
         
_("Search Results") .
         
"</b></center><br />\n";
    for (
$x=0;$x<$boxcount;$x++) {
        if (!
in_array('noselect'$boxes[$x]['flags'])) {
            
$mailbox $boxes[$x]['unformatted'];
            if ((
$submit == _("Search") || $submit == 'Search_no_update') && !empty($what)) {
                
sqimap_mailbox_select($imapConnection$mailbox);
                
$msgs sqimap_search($imapConnection$where$what$mailbox$color0$search_all$count_all);
                
$count_all count($msgs);
                
printSearchMessages($msgs$mailbox$count_all$imapConnection,
                                    
$where$whatfalsefalse);
                
array_push($perbox_count$count_all);
            }
        }
    }
    for (
$i=0;$i<count($perbox_count);$i++) {
        if (
$perbox_count[$i]) {
            
$count_all true;
            break;
        }
    }
    if (!
$count_all) {
       echo 
'<br /><center>' _("No Messages Found") . '</center>';
    }
}

/*  search one folder option  */
else {
    if ((
$submit == _("Search") || $submit == 'Search_no_update') && !empty($what)) {
        echo 
'<br />'
        
html_tag'div''<b>' _("Search Results") . '</b>''center' ) . "\n";
        
sqimap_mailbox_select($imapConnection$mailbox);
        
$msgs sqimap_search($imapConnection$where$what$mailbox$color0$search_all$count_all);
        if (
count($msgs)) {
            
printSearchMessages($msgs$mailboxcount($msgs), $imapConnection,
                                
$where$whatfalsefalse);
        } else {
            echo 
'<br /><center>' _("No Messages Found") . '</center>';
        }
    }
}

/*  must have search terms to search  */
if ($submit == _("Search") && empty($what)) {
        echo 
'<br />'
        
html_tag'div''<b>' _("Please enter something to search for") . '</b>''center' ) . "\n";
}

$allow_thread_sort $old_value;


do_hook('search_bottom');
sqimap_logout($imapConnection);
echo 
'</body></html>';