~ubuntu-branches/ubuntu/hoary/squirrelmail/hoary-security

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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
**************************************
*** SquirrelMail Stable Series 1.4 ***
**************************************


Version 1.4.4 - 21 January 2005
-------------------------------
  - Fix listcommands plugin to include src/ in compose links.
  - Fix listcommands plugin to behave like normal reply/compose
    links, and return to message page that originally called from.
  - Max upload file size now correctly handles a '-1' value, meaning
    unlimited (#1094569). 
  - Send 8-bit username or password as literals (#1081259).
  - configtest.php now checks whether default language is actually
    present.
  - Fix 'plus instead of space in downloaded file name' issue,
    which was introduced in 1.4.4-RC1 (#1076733).
  - Disabled unmaintained Thai translation.
  - Security: Added hook for Preferences Backend to resolve potential
    insecure file inclusions. [CAN-2005-0075]
  - Set up language before outputing errors in auth.php and signout.php
    to make them appear in the correct language.
  - Security: Fix potential file inclusion issues in src/webmail.php.
    [CAN-2005-0103]
  - Fixed minor bug in DMN plugin that caused it to not correctly set
    lastTargetMailbox.
  - Security: Fix possible XSS issues in src/webmail.php. [CAN-2005-0104]
  - Correct undefined variable usage in src/webmail.php.

Version 1.4.4 RC1 - 31 December 2004
------------------------------------
  - Get alternating row colors of addressbook in sync with mailbox list.
  - Fix bug in detecting the delimiter in a folder moved to trash.
  - Trailing spaces are no longer trimmed from folder names (#818974).
  - Give proper error when PEAR DB not found.
  - Remove inappropriate strip_tags() from add-to-addressbook (#968475).
  - Translations are no longer included by default but instead are
    packaged separately. See locales/README.locales for details.
  - Backport Charset Decoding functions from DEVEL branch. This vastly
    increases the number of supported character sets and the performance
    of decoding.
  - Add src/configtest.php script which checks for common errors in the
    config.
  - Fixed forward in new window from search page courtesy of Jason Munro.
  - Prefs caching didn't work properly with register_globals off (#995102).
  - Various fixes for minor user interface glitches.
  - Fixed broken POP before SMTP (password wasn't being used).
  - Custom option page values now repopulate correctly.
  - Added "no focus" option for compose page in display preferences (setting
    reply focus to "No focus" also affects composing new messages).
  - Fix bug when Saving to Draft folder that contains special characters.
  - Fix RFC822 incompliant use of IP-address in Message-ID.
  - Uneditable address book entries no longer have checkboxes on addresses page.
  - Fix that viewing the last page of a mailbox with one message always
    claimed that the total of messages in that mailbox was 1.
  - Alignment of title text above folder list fixed.
  - Added Uighur translation support.
  - Added status bar to compose window when "Compose In New Window" is used.
  - Fixed issue with user setting display of messages to 0 per page.  Fixes
    bug #960447.
  - Detect, handle, and warn on LOGINDISABLED from IMAP server.
  - Correctly sort folders including - in the name.  Affects folders beginning
    with the same names, but second folder has - with additional characters.
    Patch courtesy of Morten Nilsen <morten[@]nilsen.com>.
  - Added size limit to signatures saved in file backend. Created error_option_save
    function, that allows sending error message to options page. Thanks to Martynas
    Bieliauskas for spotting big signature "option".
  - $agresive_decoding configuration option changed to $aggressive_decoding.
    Fixed spelling.
  - Fixed $custom_css loading in squirrelspell plugin.
  - Referenced document (presets.txt) missing.  Copied from devel.
  - Make SMTP Authentication detection in conf.pl more RFC-compliant.
  - Fixed IMAP errors when using mail_fetch plugin to auto-fetch on login.
  - Fixed folder list in Create Folders list for Courier (properly skip INBOX).
  - Corrected poor English in a string (#775978).
  - Corrected bug in SquirrelSpell that'd put the corrected spelling on the wrong
    line if quoting inline, or below the original email (#906217).
  - LC_NUMERIC locale is set to C. Some plugins might use decimal delimiters 
    incorrectly (#1027130).
  - Turkish translation uses C character case conversion rules. Fixes php and
    squirrelmail functions are assume English conversion rules.
  - Removed X-Mailer header from SquirrelMail. SpamAssassin 3.0 detects 
    User-Agent + X-Priority headers correctly. Older versions have to fix
    rules/20_head_tests.cf.
  - When replying to message with a " in the subject, the " was a replaced with a '.
  - Added Bengali translation support.
  - Security: Fixed XSS exploit in decodeHeader function. [CAN-2004-1036]
  - Fixed error output in SquirrelSpell plugin (patch courtesy David Boone).
  - Fixed bug in IMAP read routines that treated "0" as false instead of
    a string (patch courtesy Maurice Makaay).
  - Fixed PHP notice when header property value is blank.
  - Fixed decoding function problems when mbstring.func_override has
    MB_OVERLOAD_REGEX enabled.
  - Removed command line option unsupported by qmail-inject in
    class/deliver/Deliver_SendMail.class.php. Thanks to Ken Brush.
  - Ported charset encoding patches from devel. Closes bug #806698 and
    patch #550843.
  - Ported 8bit read receipts fixes from devel. Closes bug #934033.
  - Added Net-Style theme by Gabriele Maidecchi. Closes patch #1041323.
  - Disabled use of info plugin, when it is not enabled in config.
  - Fixed path used by random theme.
  - Added global address book configuration support and options to select
    writable address book backend. Removed 'global_file' address book
    backend. 'global_file' backend functions are provided by 'local_file'
    backend.
  - Sanitized nickname and name entries in address listing.
  - LDAP backend will use internal SquirrelMail charset conversion functions
    instead of the php xml extension. Closes bug #655137.
  - Fix two time zone calculation bugs, thanks to David White. Fixes #1063879.
  - Handle a reload of the signout page gracefully: do not present an error
    about having to be logged in to be able to sign out. Fixes #1070069.
  - Prevent "&" being eaten in set_url_var, thanks Marcin Orlowski. Fixes
    #1053725.
  - Added size attributes to newmail plugin sounds. Fixes #818958.
  - Updated translation engine options in translate plugin. Added Google
    translate. Disabled GPLtrans engine, because it is no longer available.
  - RFC822 header compliance with regards to SM based header containing an
    extra ; in the Received header. Fixes #1088548.
  - Add IMAP server type "hmailserver" to make search work with hMailServer.
    Fixes #1085377.
  - Reuploaded newmail plugin sounds. Fixes files uploaded to CVS without binary
    option.
  - Changing your JavaScript preference required a re-login to work.
    Fixes #983614.
  - Miscellaneous documentation updates / improvements.
  - Compose-in-new didn't always work with JavaScript disabled (#801999).

Version 1.4.3a - 2 June 2004
----------------------------
  - Fix typo in compose.php reply/reply to all quoting (#963499).

Version 1.4.3 - 30 May 2004
---------------------------
  - Fix form functions default parameter.
  - Disabled Korean extra functions, because they don't provide all required
    options and message composition is broken.
  - Added Basque translation support.
  - Security: Fixed XSS vulnarability in content-type display in the attachment
    area of read_body.php discovered by Roman Medina.

Version 1.4.3-RC1 - 10 May 2004
-------------------------------
  - Added new preference that determines cursor focus when replying.
  - HTML Filter bugfixes and further strengthening in response to some
    findings reported by stardust.
  - Display total number of new messages in newmail-plugin popup window.
  - Disabled Vietnamese and Ukrainian translations. They are done in different
    language.
  - Ported charset decoding support functions from SM head. Increases
    number of readable charsets.
  - Fix SquirrelMail to work with PHP5.
  - Reintroduce alternating row colors in addressbook, which has
    accidentally disappeared somewhere in the dark past.
  - Disabled Quick-email-reporting feature in spamcop plugin. (#809452). Admin
    can enable it by setting variable in plugins/spamcop/setup.php
  - Fix again for Internet Explorer's stupidity of decoding characters, then
    executing it blindly. See http://www.securityfocus.com/archive/1/340118.
  - Replaced obsolete 2mbit.com RBL with ahbl.org RBL (#829887).
  - Fixed sorting of sent_subfolders.
    Sent_subfolder plugin is hooked to special_mailbox hook.
    Stable 1.4 tracker #699920.
  - New hook function: boolean_hook_function()  Used for true/false hooks.
  - Fixed special_mailbox hook to allow more than one hooked plugin (#870365).
  - Added new reply citation to include date and author.
  - Security: Fix some XSS issues. [CAN-2004-0519, CAN-2004-0520]
  - Norwegian Bokmal translation uses nb_NO.
  - Improve display of some unparsable/absent dates (#891354).
  - Added non-anonymous LDAP bind and bind protocol patches from devel.
  - Add comment (Highest,Normal,Lowest) to X-Priority header.
  - Make writing of preferences, abook, calendars fail better when disk full
    (#915527).
  - Fix quoteimap() regex escaping problem (#921291).
  - Added international date format support (#927264).
  - Fixed "Resume Draft" to use correct identity (#845290).
  - Fixed RFC2821 incompliancy by adding a fallback mechanism to HELO if
    EHLO is not supported.
  - Fixed RFC2298 incompliancy by setting envelope sender to null.
  - Allow single quotes to be used in theme name in conf.pl (#805309).
  - Do not present special folders as renameable/deleteable (#816881).
  - Fixed on the fly decoding of base64 encoded attachments.
  - Fixed message rejects by the postfix sendmail wrapper when attachments were
    involved.
  - Fixed scenario where just created special folders were not displayed on
    first login.
  - Fixed wrong folding of headerlines in composed messages containing long
    email addresses.
  - Fixed date display bug for messages of today. Show short format in case
    of long format. (only occurs in the timeframe around 0:00 AM till
    timezone).
  - Use Special Folder Color config option works again (#931956).
  - In POP3-class, be more liberal regarding RFC-incompliant POP3-servers.
  - Security: fix SQL injection vulnerability in addressbook.
    [CAN-2004-0521]

Version 1.4.2 - 1 October 2003
------------------------------
  - Fix message highlighting for text containing spaces.
  - Added feature to allow user to switch on full date display in mailboxes instead
    of just partial date/time based on time of email, and current date.
  - Fixed bug that would cause e-mails dated in the future to be displayed with only
    the time.
  - Custom CSS option now works properly.
  - Fix SquirrelSpell JS incompatibility with other plugins that use forms like
    Link Buttons (#774454).
  - Fix when forwarding messages as attachment from message list, the displayed
    subject was wrong (appearing to the user that the wrong messages were attached).
    Closes #772371.
  - Fix that when user has no theme preference set, Alien Glow would be selected under
    display preferences instead of Default.
  - Remove chosen_theme from default_pref because this (wrongly) overrides the default
    theme defined in config.php.
  - Define defaults for missing colors in incomplete themes.
  - Updated 'action' to be 'smaction' so that plugins can modify the submit/action of
    forms.  This was suggested for the gpg plugin, but might be useful elsewhere.
  - Fix bug that after sending reply user was returned to the first page of the
    message list, which should be the last-active page (use startMessage).
  - Fix forwarded emails as attachment from appended ) to the email.
  - Prevent username and password from being sent in error message if IMAP
    drops connection during login.
  - Workaround for Mozilla bug #200412 in order to show multipart/related html mail.
  - Fix for disappearing '0' from decoded strings (bug #784193).
  - Add Minimal BW theme: a colorless environment for browsers that don't support colors.
  - Replace all session_start() calls with sqsession_is_active() to be compatible
    with upcoming PHP 4.3.3.
  - Encoding of Russian translation changed to utf-8. Lithuanian translation changed
    to utf-8. Fix allows to use national letters in folder names correctly.
  - Reintroduced mailbox-tree caching in order to limit the number of IMAP calls.
  - Fix for delete_move_next plugin when using server threading.
  - Calendar plugin: in month view, display events on the same day sorted by time,
    and include the time of the event in its tooltip.
  - Fix nbsp instead of space and allow wider character set in filename when
    downloading attachment.
  - Fix to prevent mailboxes being deleted in selected state which is against
    RFC3501.
  - Fix reply all address string in case the personal name contained a comma
    (address separator).
  - Added Malaysian translation.
  - conf.pl will no longer offer to detect login methods if TLS is being used,
    as the detection code does not support it.
  - Fix somewhat uncommon bug in paginator (bug #767289)

Version 1.4.1 -- 7 July 2003
----------------------------
  - Fixes to conf.pl for handling relative dirs outside the SM tree (bug #715119) and
    the default delete_folder values for Courier-IMAP and UW-IMAP (bug #715550).
  - Fixed problem with \ in passwords/usernames on login, fixes bug #718116.
  - Added lowsrc to the list of untrusted attributes in HTML email.
  - Fixed message highlighting for To, CC and From and
    for RFC1522 headers (bug #719564).
  - Fix for Folders being listed in create/remove/rename operations
    (bugs #725443, #722823, #729225).
  - Fixed incorrect folding inside message-id's.
  - Fix for bad attachment view link (bugs #697381, #729295).
  - Fix comp_in_new in search and addressbook not having right parameters (bug #731768).
  - Fix max attachment filesize off by factor 10 when ini_var set in bytes
    (bug #730742).
  - Fixed language bug in posting on modifying/deleting servers on mail_fetch plugin
    (#742705).
  - Fixed infinite loop in parseAddress on invalid mailadress (#742584).
  - Added Welsh translation.
  - Fixed error with appending sent mail to sent folder when one wasn't set, or user
    preferred not to append the sent mail.
  - Updated plugin documentation.
  - Added Faroese translation.
  - Fix for bug #719619 (xhtml-style css definitions weren't working).
  - Fix bug #722933 where resuming a draft message would lose the reference headers.
  - Fix that sending of read receipts failed when JavaScript on and comp in new off
    (bug #738130).
  - New function: sm_print_r() intended for debugging.  See
    functions/strings.php.
  - Update config_default to use SM_PATH. (bug #766577)
  - Minor misc. performance enhancements.

Version 1.4.0 -- 3 April 2003
-----------------------------
  - Fixed mail_fetch plugin. Now folder edition defaults to actual value.
    All settings from other servers are preserved when deleting one.
  - Added Vietnamese translation.
  - Fixed the newmail plugin.
  - Added RECENT response to sqimap_get_status.
  - Fixed attachment filename resolving.
  - Added check for X-Confirm-Reading-To to make MDN work for messages sent by Pine.
  - sqextractGlobalVar removed (use sqgetGlobalVar instead).
  - Subfolders of Sent and Drafts show To field instead of From
  - Updates in conf.pl to infamous delete_folder setting, including
    addition of appropriate default value for courier and UW.
  - Fix for date/time display in certain timezones.
  - Fix some features of login.php that are used by some plugins and was broken
    by register_globals = off.
  - Added Greek locale. Thanks to George P. Kremmydas
    <george at kefalonia-ithaki.gr> and Alexandros Vellis <avel at noc.uoa.gr>
  - Added notes about PHP 4.3.x to documentation.
  - Fixed \Noselect mailbox detection.
  - Fixed charset decode of base64 encoded strings.
  - Fixed encoding of email addresses in our composed messages.
  - Fixed folder creation for Courier using Autoconfig options.
  - Fixed encoded string handling inside MDN notifications.
  - Fixed unfold header routine in imap_messages (for mailbox_display).
  - Fixed subject_line hook.
  - Fixed sqgetGlobalVar switching.
  - Fixed handling of encoding/decoding strings.
  - Fixed wrong array_slice call for a subset of the headers.
  - Allow encoded personal names in compose.php.
  - Improved address parsing of addresses coming from the compose form.
  - Fixed uninitialized indices when parsing attachments.
  - Support text/directory MIME-type for vCards (RFC 2425).
  - Added Arabic locale. Thanks to Asrar Abbasi <asrar at canasoft.net> and
    Naveed Saqib <naveed.saqib at biznas.com>.
  - Update required PHP version in documentation to 4.0.6.
  - Fixed delete_move_next plugin to remember where it moved mail to.
  - Fixed compose to remember attachments.
  - Security: Fixed possible XSS in compose when replying to malicious sources.
  - Add display of the maximum filesize for attachment uploads.
  - Do not add < and > if an identity doesn't contain a full name.
  - Fixed bug in parsing Content-Type properties part.
  - Added move_before_move hook to allow plugins to act upon the different buttons
  - Fixed bug in Forwarding of Emails (move_messages.php)
  - Fixed variable spelling error in filters.php
  - Fixed some operator bugs in compose.php, move_messages.php, and spamcop.php

Version 1.4.0 RC 2a
-------------------
  - Fix broken themes box in display options.
  - Massive overhaul of administrator plugin.
  - Added new function sqgetGlobalVar to global.php to provide direct access
    to variables in $_GET, $_POST, $_SESSION, $_COOKIE and $_SERVER.
  - Patch from O'Shaughnessy Evans <shaug-sqm@wumpus.org> to allow disabled $org_logo
  - Lots of language/internationalization updates
  - conf.pl fixes for certain uses of SM_PATH, esp. $signout_page.
  - SMTP & IMAP auth method "plain" was a misnomer - now corrected to
    the more accurate name "login" (Plain to be implemented soon).
  - Fix for compose after search bug.  (Closes #662346)
  - Improved error reporting when sending mail with SMTP.
  - Changed SquirrelMail identification to use User-Agent instead of X-Mailer.
  - Prevent endless loop when timezone config is not found. Thanks Joshua Colson.
  - Fix IMAP error when returning to message from viewing image attachment.
  - Do more trimming to indented subjects in threadview so they don't wrap.
  - Trash folder now displays purge link in all cases. (Closes #655943)
  - Fix typo in delete_move_next plugin which caused php file-handle errors.
  - Make vCard more liberal in what it accepts (thanks Kurt Pires).
  - Fix problem with subject encoding when using Japanse.
  - Move login_form hook to be actually in the login form.
  - Fix message_details plugin ability to save a raw message.
  - Try better to get the filename of an attachment.
  - Deliver_SMTP class now uses HTTP_HOST in SMTP HELO.  Should fix DNS
    issues some people have reported. (Closes #560524)
  - Obsolete sqm_topdir(), which caused login trouble with installs that
    have open_basedir restrictions. Thanks Jimmy Connor.
  - Fix broken abook_take plugin.
  - Fix HTML errors that caused display problems in NS4.
  - Correctly fold encoded header lines.
  - Fix prefs caching not working correctly in PHP 4.3 caused by a stupid
    version checking mechanism.
  - Security: Fix XSS hole that allowed JavaScript execution by sending someone
    an email with specially crafted headers. Thanks Jason Munro, and
    Masato Higashiyama.


Version 1.4.0 RC 1
------------------
  - Change the way highlighting rules are stored to make them more reliable and
    easier to manage.
  - Reorganization of conf.pl, menu #2
  - Added CRAM-MD5 and DIGEST-MD5 authentication support for IMAP and SMTP
  - Experimental TLS support for IMAP and SMTP (requires PHP 4.3.x)
  - Override settings with config_local.php
  - Compose form no longer shows attachment options if php file_uploads
    disabled
  - Improved bodystructure parsing.
  - Support for windows-1257 charset.
  - Optimizations to the number of IMAP calls.
  - Fix problem with IE6 + iso-8859-13.
  - Allow Mail Fetch to use a different POP3 server port number.
  - Force magic_quotes_runtime to be off to avoid problems with this setting.
  - Introduce check_sm_version function for plugins wanting to know
    which version of SquirrelMail this is.
  - Configurable session name to avoid conflicts with other PHP applications.
  - Miscellaneous fixes for systems with error_reporting set to E_ALL.
  - Many many other bugfixes and tweaks!


*************************************
*** SquirrelMail Devel Series 1.3 ***
*************************************


Version 1.3.2
-------------
  - Rewrite of message delivery related functions.
  - User interface modifications.
  - Added Japanese support thanks to Masato HIGASHIYAMA <masato@yamaai-tech.com>
  - Remove NOOP checks in the POP3 client of mail_fetch to make things more
    compatible and not break things which don't need to be broken.
  - Fix src directory being moved on Windows systems, bugs #586518 #605256 #610676.
  - This release is compatible with installations that have register_globals set to off.
  - Do not lose user prefs/sigs/abooks when trying to save to a full disk.
  - Make the SquirrelMail link on the right top configurable so a provider can point
    to their own FAQ for example.
  - Enable TZ in safe_mode if safe_mode_allowed_env_vars permits this bug #612148.
  - Fix some bugs in folder management (create, delete,...) and add enhancements.

Version 1.3.1
-------------
  - lots of fixes by Marc, including #596781 and #596930

Version 1.3.0
-------------
  - allow_call_time_by_reference=off fixes.
  - Added forward as attachment in read_body.
  - Better clean-up of left attachments at login.
  - Restore compose sessions in case of a expired session.
  - Added "Display Message" / "Up" links in read_body to navigate in messages with
    attached messages (message/rfc822).
  - Don't activate the Send Receipt link when the folder is the Sent folder.
  - Moved view_header code out of read_body.php and put it in view_header.php.
  - Open message/rfc822 attachments in read_body what makes it possible to
    reply to attached messages.
  - Rewrite of the newMail function in compose.php. This simplifies the
    interface between read_body.php and compose.php.
  - Moved compose related code from read_body to compose.
  - Rewrite of mailbox-display to make it more modular (we use it in search.php).
  - Added support for displaying multiple entities.
  - Changed finding display entities.
  - Extract disposition and xmailer header information in the headerparser
    instead of request them individualy by an imap-call.
  - Store message objects in the current session. This saves a lot of imap-calls.
  - Added UID support.
  - Store addresses in an object instead of a string.
  - Rewrite of the bodystructureparser function. Now the message object contains
    all described parameters in RFC2060.
  - Introduction of the mime class where all mime related functions are situated
  - Fixed removing MDN attachments.
  - Fixed MDN problems with js confirmbox.
  - Speedimprovements in case we download mime-entities.
  - Added possibility to extract message/rfc822 attachments and store them as
    the original message in a folder.
  - Right to left languages implementation initiated
  - Enable people with file_uploads = off to still send mail. Patch from Seth
    E. Randall.
  - Moved the generic_header hook back to page_header.php. bug #554278
  - Make default theme work. Bug #557313, thanks Tyler Bannister.


Version 1.2.7 -- June 21 2002
-----------------------------
  - fix for 'compose as new' link. bug #554886
  - fix charset format in the admin plugin. bug #550725
  - fix for errant '.' in default_folder_prefix. bug #551310
  - fix for folder names with '?' and '*'. bug # 559257, #552180
  - added the ability to search without the charset argument. #552288
  - Made /noselect node display optional. bug #554988, patch #452178
  - Improved support for macosx IMAP server thanks Brian Haun
  - Added macosx friendly search, thanks Brian Haun bug #553038
  - Fixed word wrap problems when sending mail. bug #552961, #556143
  - Added possibility to use multiple compose windows without loss
    of attachements.
  - Fixed forward message/rfc822 attachments from a search
  - Fix SpamCop plugin.
  - Fixed send MDN link.
  - Fixed dealing with \r\n and \n in smtp.php.
  - Fixed to, cc, bcc arrays in message->header
  - Speed optimizements in generating message-lists.
  - Fixed loss of attachment with html addressbook.
  - Fixed saving drafts with attachments

Version 1.2.6 -- April 29 2002
------------------------------
  - Security: A complete MagicHTML rewrite since the existing codebase was
    causing too many XSS problems. Hopefully now Nick Cleaton will
    leave us alone. :) Testing credits go to Nick.
  - Security: Fix for cross-site scripting vulnerability (bug #545933)
    Reported by Nick Cleaton.
  - Changing "emtpy" to "purge" for more clarity.
  - Security: Fix for cross-site scripting vulnerability (bug #544658)
    Reported by Nick Cleaton.
  - Fix for incorrect word wrap in Opera (bug #495073)
  - Workaround for older prefs: some of them contain "None" for
    left_refresh (bug #540108)
  - Fix for entities in cc and bcc fields on message display (bug #522493)
  - Fixes for quoted values in the addressbook by David Rees (bug #538389)
  - Fixed src/src problem (bug #538803)
  - Fixed so non-ascii searches no longer fail both when searching
    and when applying filters (bug #520918)
  - Added POP3 Before SMTP option (feature request: #498428)
  - Added a server-side thread sorting option per folder
  - Added a server-side sorting global option
  - Compose in new window size can be set in Display prefs.
  - Logout error system unified.
  - Security: Fix for a "theme passed as cookie" exploit. [CVE-2002-0516]
  - PostgreSQL is now supported for database backed use
  - Added user option to sort messages by internal date
  - Changed attachment handling now attachments are adressed to
    unique compose session.
  - Added forward messages as message/rfc822 attachment
  - Fixed handling message/rfc822 attachments
  - Fixed folder list display when special folders have subfolders
  - Added option to auto-append sig before reply/forward text (523853)
  - Fixed subfolders being "orphaned" when renaming parents (498167)
  - Filters can be applied to only new mail.
  - Filters are updated when renaming/deleting folders (512056)
  - Filtering now happens on login (filters plugin)
  - Added option for WIDTH and HEIGHT tags to Org. Logo. (patch #412754)
  - Fixed resume draft bug #513521, #514639
  - Newmail plugin: admin can disable the use of audio (patch #517698)
  - Fixed quoting problem in safe html (patch #516542)
  - SPAM folder no longer special folder (filters plugin)
  - Filtering now happens on folder list refresh (filters plugin)
  - Added checking of input of the folders page
  - Made erronous deleting of folders harder (patch #514208)
  - Made SquirrelMail display \Noselect nodes in Cyrus also made it
    impossible to try to delete \Noselect nodes. (patch #452178)
  - SquirrelSpell version 0.3.8 -- pretty configuration error reporting
    added by popular demand.
  - Improved the handling of IMAP [PARSE] messages to reduce retrieval error.
  - Fixed small bug in handeling timezone (bug #536149).
  - MDN message now RFC compatible (bug #537662).
  - Fixed html tables in printer_friendly_bottom.php (patch #542367), and
    make it so that printer friendly uses black-on-white colors in stead
    of the theme colors.
  - Fixed return address of MDN receipts when having multiple identities
    (patch #530139).

Version 1.2.5 -- 22 February 2002
---------------------------------
  - Multiple mailbox list calls cached.
  - Added 'View unsafe images' link to the bottom of pages which contain
    unsafe images.
  - Fixed 'too many close table tags' and various other issues
    which meant SM output didn't always validate as clean HTML.
  - Added the ability to add special folders through plugins.
  - Added an Always compose in a pop-up window option.
  - Search page update with ability to save searches and search
    all folders at once.
  - Made searching on multiple criteria possible, with thanks to Jason Munro
  - Fixed 'list all' in addressbook (#506624, thanks to Kurt Yoder)
  - Fixed small bugs in db_prefs
  - Allowed SquirrelMail to work from within a frame, eg. not using _top
    this is configureable. (thanks to Simon Dick)
  - Added options to conf.pl to enable automated plugin installation:
    ./conf.pl --install-plugin <pluginname>. This allows plugins to be
    distributed in packages. Conf.pl now also reports when saving fails.
  - Attachment hooks now also allow specification of generic rules like
    text/* which will be used when no specific rule is available.
  - conf.pl can now configure database backed address books and
    preferences.
  - Version 0.3.7 of SquirrelSpell. Fixes a potential privacy
    vulnerability (symlink attack), plus introduces formatting fixes
    and javadoc-style comments.
  - Bugfix in mailfetch reported by Mateusz Mazur
  - Administrator plugin. A web based conf.pl replacement.
  - Removed GLOBALS from conf.pl
  - HTML messages optimization.
  - Added support for requesting read receipts (MDN) and delivery receipts.
  - Added the ability to stop users changing their names and email addresses.
  - Added signature into multiple identities (Stefan Meier <Stefan.Meier@cimsource.com>)
  - Updated user help files to reflect UI chanegs and added functionality.

Version 1.2.4 -- 25 January 2002
--------------------------------
  - Security: Fixes a nasty remote arbitrary command execution vulnerability
    in the spellchecker plugin.

Version 1.2.3 -- 21 January 2002
--------------------------------
  - Fixed focus system on pages that contain forms.
  - Fixed IMAP code to send different command identifiers as per
    section 2.2.1 of RFC 2060.
  - Fixed 'sticky priority' so that replies are set to the same
    priority as the original message.
  - Fixed Printer Friendly to print HTML messages.
  - Fixed multiple receivers in Sent mailbox (#500910).
  - Disabled prefs caching under PHP 4.1
  - Added "Search Memory". Enabling to store up to
    9 predefined searchs.
  - Increased security in html message.
  - Added the possibility to specify system-defined css in order to
    allow users to change the font family and size of SM. Making possible to
    make it bigger or smaller depending on their screen size. Sysops may add
    or remove these system-defined css located in themes/css/
  - Fixed a bug appearing on some apache virtual hosts
  - Fixed javascript error (#505255)
  - Fixed the db_prefs so they work again (#499609, thanks to Simon Dick)

Version 1.2.2 -- 1 January 2002
-------------------------------

  - Fixed an infinite loop in printer friendly when wrapping option
    is not in the prefs.
    Bug reported by Boris Manojlovic <steki@verat.net>
  - Html cleanup, with patch from Dave Huang (#496712)
  - Fixed a problem saving prefs when using PHP 4.1
  - Russian, Thai, Swedish, Dutch and French update.
  - Changed configure invocation from bash to sh. (Bug #496752)
  - Changed conf.pl invocation from '#!/usr/bin/perl' to
    '#!/usr/bin/env perl' to help people who have perl somewhere
    else. (Bug #496753)
  - Fixed sorting of folder list, bug #497181
  - Fixed wrong behavior of non-javascript select all, bug #496681
  - Added "Show Pages" link to message list showing all messages
    (the resultant page of clicking "Show All")
  - i18n Fix. Because of different configurations in the gettext system,
    some installations could not manage correctly SM languages other than
    English. This has been corrected.
  - Miscellaneous rewrites and improvements.
  - Moved locale files into the ISO-conformant directories.
  - Moved help files into the ISO-conformant directories.
  - Moved compilepo and mergepo files from locale/ into po/
  - Slight i18n fixes and rewrites to accommodate for moved files.
  - Fixes for entities in the subject when replying.
  - Fixes for entities in the To: header. (Bug #489365)
  - Fix for incorrect javascript prefs handling (Bug #497688)
  - Added color 15 for themes to separate background and foreground colors.
  - Added several new themes.

Version 1.2.1 -- 25 December 2001
---------------------------------

  - Fixed the bug that kept the create, delete, and rename sections
    from appearing in the folders page (#496604)
  - Fixed the motd bug not allowing ' (#496616)
  - Sorting of addressbook_search fixed, thanks to the patch of
    Cor Bosman (xs4all)

Version 1.2.0 -- 25 December 2001
---------------------------------

  - Collapsible Folders
  - The Paginator!!!
  - Hundreds of UI Tweaks
  - Message Drafts
  - Rewrite of much of the options pages
  - Multiple identities
  - Reply Citations
  - Better Attachment Handling
  - Integration of Several Plugins into Core Code (including xmailer,
    attachment_common, paginator, priority, printer_friendly, sqclock)
  - Ability to mark messages as Read/Unread
  - New themes (including a Christmas theme, and several changing themes)
  - Rewrite of much of the options pages code
  - Improved support for newer versions of PHP
  - Message lists can be shown with alternating colors for easier reading
  - Can include/exclude yourself when using the "Reply All"
  - Message highlighting comes with dozens more easily accessable colors.
  - Option to set the "Priority" of the message(Normal/High/Low)
  - Now able to show all messages of an inbox at the same time.
  - Cleanup of the paginator code, improving display style
  - Cleanup of configuration file code, a bit
  - Introduction of sent_subfolders plugin as Official Plugin
  - Bugfixes..and more Bugfixes!


***************************************************************
*** Squirrelmail Development Series 1.1 and 1.1 Pre-Releases ***
****************************************************************

Version 1.2.0-rc3 -- 2 December 2001
------------------------------------
  - Speed improvements and optimizations on much of the code
  - Comments added, formatting cleaned up for much of the code
  - Several plugins integrated into the Squirrelmail core
    (focus change, attachment common, printer friendly, etc)
  - Several plugins added as "Official Plugins" to the main
    Squirrelmail distribution
  - First half of a rewrite of the option pages code
  - The Paginator!!!
  - Other stuff that I don't recall (developers, please fill this in!)

Version 1.1.3 -- (never really released)
----------------------------------------
  - Added major speed improvements to IMAP functions by our
    friends at XS4ALL
  - Fixed MOTD
  - Fixed multipart/alternative messages
  - Updated Dutch translation
  - Added Indonesian translation
  - Added Portuguese (Portugal) translation
  - Added language aliasing
  - Added Turkish translation

Version 1.1.2 -- May 21, 2001
-----------------------------
  - Many bugs squashed
  - Several UI tweaks and improvements
  - Added option (3 -> 14 in conf.pl) to auto create sent and trash folders.
  - Updated Czech translation
  - Support for multiple identities
  - Support for Russian Apache removed. It is now deemed easier to just
    turn off Charset Recoding in the Russian Apache config. See the file
    doc/README.russian_apache

Version 1.1.1 -- April 30, 2001
-------------------------------
  - Added built-in support for gettext if compiled support isn't available
  - Made validate.php include a few more standard things
  - Corrected a bug when sending an email properly

Version 1.1.0 -- April 21, 2000
-------------------------------
  - Added option to have signout page redirect to another page (patch from
    Scott Bronson) This can be configured in conf.pl (Org Prefs)
  - Much improved SMTP error handling (patch from Jeff Evans)
  - Preferences are now cached instead of read in every page load.
  - Improved URL parser
  - Added ability to read HTML messages by default instead of plain text
    (Display Options)
  - Added authenticated SMTP server support (configure in conf.pl)
  - Rewrote attachment handling code in compose.php
  - If aliases are typed in To, Cc, or Bcc, they are automatically looked up
    in the addressbook and converted to the associated addresses.
  - Added collapseable folder listing (an option that can be turned on in
    Folder Options)
  - Added alternating row colors to improve interface (Display Options)


**************************************
*** Squirrelmail Stable Series 1.0 ***
**************************************

Version 1.0.6 -- April 19, 2001
-------------------------------
  - Reworked validation for each page.  It's now standardized in validate.php
  - Fixed login bug that resulted from 1.0.5 security updates
  - Fixed plugin incompatibilities that were introduced in 1.0.5
  - Added more security checking to preference saving/loading
  - Updated German translation (thanks to Ronald Bauerschmidt <rb@debian.org>)
  - Updated Finnish help files

Version 1.0.5 -- April 17, 2001
-------------------------------
  - MAJOR security issues addressed.  Please upgrade as soon as possible.
    [CAN-2001-1159]
  - Downloading attachments should work better due to a tip by Ray Black III.
  - Fixed bug with drop-down folder list not containing INBOX
  - Added Swedish help files Teemu Junnila <teejun@vallcom.com>
  - Added Italian help files Antonetti Roberto <antonr@piceniaweb.com>

Version 1.0.4 -- April 9, 2001
------------------------------
  - Fixed some bugs with folder creation
  - Security fix for UW IMAP server to disallow folder paths outside of
    $folder_prefix
  - Some problems with header encoding/decoding fixed
  - Made subject column take up whatever width is available
  - Added bcc to html addressbook search

Version 1.0.3 -- March 9, 2001
------------------------------
  - Many i18n enhancements/fixes
  - Fixed bug with default theme path being set incorrectly
  - Fixed problem when sending/forwarding multiple attachments
  - Made folder drop-down list consistant in look to the other drop-downs
  - Fixed problem where some attachment filenames would not be displayed
  - Added Finnish help files by Teemu Junnila <teejun@vallcom.com>
  - Updated Norwegian translation
  - Updated Brazillian Portuguise translation

Version 1.0.2 -- February 8, 2001
---------------------------------
  - Added a workaround for RedHat's 4.0.4pl1-3 binary package  (It's also
    the same workaround for Konqueror and other PHP installations?)
  - Select All works through the search
  - Better escaped string handling from POST variables
  - Many more code cleanups and optimizations
  - Added Hungarian translation by Teemu Junnila <teejun@vallcom.com>
  - Added Icelandic translation by Karl Heiðar <karlh@macho.is>
  - Updated Taiwan translation
  - Updated Swedish translation
  - Updated Finnish translation

Version 1.0.1 -- February 1, 2001
---------------------------------
  - Improved the way sqimap_read_data() is handled
  - Sped up "no sorting" even more
  - Fixed problems with sending messages
  - Fixed some pass-by-reference calls that caused problems with newer
    PHP versions
  - Fixed bug that didn't display last folder subscribed to
  - Removed requirement of PHP 4.0.1 for array_unique() function
  - Removed unnecessary echo statements by breaking out of PHP
  - Changed evaluation method from using " to ' for speed improvements
  - If no plugin array set in config.php, now handled correctly
  - If subject is > 55 chars, trims it and puts "..." in message list
  - Hundreds of minor changes to remove all verbose PHP warning messages

Version 1.0 -- January 30, 2001
-------------------------------
  - Updated config_default.php to include attachment_common plugin
    (now in distribution)
  - A few minor speed improvements
  - Fixed problems in sqimap_read_body(), made it more reliable
  - Added French translation of help files by  gore K <gore_k@ymca-cepiere.org>
  - Added Finnish translation by Teemu Junnila <teejun@vallcom.com>
  - Updated Swedish translation
  - Updated Russian translation


********************************************************
*** Squirrelmail Development Series 1.0 Pre-Releases ***
********************************************************

Version 1.0pre3 -- January 22, 2001
-----------------------------------
  - Fixed some "Select All" bugs
  - Finally fixed the IE/SSL download problem!!
  - Added Danish translation by Claus Rasmussen <claus@webclaus.com>
  - Updated Spanish translation
  - Updated Polish translation
  - Updated Taiwan translation
  - Updated Czech translation
  - Updated Korean translation

Version 1.0pre2 -- January 15, 2001
-----------------------------------
  - A number of security fixes
  - Replaced error messages with better, formatted, and meaningful messages.
  - Fixed "reply all" so that it works intelligently now
  - Made deleted (but not expunged) messages easier to detect (only if
    $auto_expunge = false)
  - Fixed bug that didn't display size correctly in search results
  - Major memory management and speed improvements with downloading of
    attachments
  - Made $auto_expunge variable actually do something
  - Fixed bug that didn't display login failure message
  - Fixed minor bug in sqimap_mailbox_list
  - Added sqimap_capability function to check capabilities of server.
  - Rewrote sqimap_get_delim to use NAMESPACE capability (if available) to
    get delimiter.
  - Added Catalan translation of Help documents by Josep Sanz <jsanz@fa.upc.es>
  - Added Taiwan translation by "ching" <ching@kiwa.com.tw>

Version 1.0pre1 -- December 14, 2000
------------------------------------
  - Fixed bug in sending messages with a blank line with a "."
  - Folder displays have been changed to be more readable in drop-down lists
  - For security, login verification happens, then we're redirected to
    webmail.php
  - Folder sorting now case insensative
  - added config option to set IMAP folder delimiter rather than always
    detecting it
  - Made session cookie parameter use PHP's settings rather than making
    assumptions
  - Select/Deselect all implemented using only HTML (not Javascript)
  - Fixed default charset that is sent with outbound messages (now user's
    preferred charset)
  - Sort method saving now transparent to user, and saves between sessions
  - Now replacing all \n with \r\n before sending the message.
  - Added sorting option for NO sorting.. 10000 times faster!
  - Using <pre> tags for viewing message body instead of <tt> and &nbsp;
  - Added redirection from subdirectories to login page
  - Attachments are shown in message index (shown as a "+")
  - Updated attachment plugin support and passing values to hooks (see
    plugins.txt)
  - Added file and message size in many locations
  - Made message index order customizable (from, subject, date) can be (date,
    from, subject)
  - Fixed some security problems with uploading attachments
  - When reading, attachments look better and have a better plugin interface
  - Some functions now pass values by reference to save on memory
  - Added Catalan translation from Josep Sanz <jsanz@fa.upc.es>
  - Added Serbian translation from Boris Manojlovic <steki@verat.net>
  - Added Polish translation of Help from Krystian Kanabrodzki
    <krys@voruta.eu.org>


*****************************************
*** Squirrelmail 0.5 and Pre-Releases ***
*****************************************

Version 0.5 -- September 25, 2000
---------------------------------
  - Fixed some problems with downloading attachments in IE
  - If no date is set in header, we take internal date of the imap server
  - Fixed some lingering bugs in mime parsing
  - Searching specifies CHARSET option
  - Security fixes
  - Fixed hyperlink rendering problems

Version 0.5pre2 -- September 6, 2000
------------------------------------
  - Added quite a few new themes
  - Fixed double folder problem on some servers
  - Using encryption for passwords
  - Added a patch from Bill Thousand to allow easier virtual domains
  - Security updates with attachments
  - Added more hooks for plugins, updated plugin.txt
  - Improved HTML address book
  - Fixed bugs in parsing email addresses in smtp.php
  - Applied fixes for Courier IMAP server (by Andreas Dahl)
  - Fixed some buggy IMAP handling
  - Improved word wrapping
  - Fixed bugs with adding and not adding backslashes
  - Made message highlighting case insensative
  - Added Korean translation from Jong-II Kim <aporie@netian.com>
  - Added Italian translation from Aldo Moresco <moresco@idcm.it>
  - Added French translation from Ali Nedjimi <lrdfrx@club-internet.fr>

Version 0.5pre1 -- August 9, 2000
---------------------------------
  - Searching folders functionality added
  - Date display now is similar to Netscape Messenger
  - Many bugs have been reported to the list, and been squashed
  - Help system developed
  - Folder list now shows configurable details about messages
  - It is now possible to select multiple subscribes/unsubscribes
  - Removed a bunch of annoying "success" screens, improved navigation
  - Better IMAP session handling
  - Redid the options section and split it into different parts
  - Added "view all headers" option when reading a message
  - In-Reply-To and References headers are inserted when replying to a message.
  - Changed how attachments are displayed and handled
  - Rewrote MIME support from scratch, optomizing it an unbelievable amount
  - Added support for message highlighting
  - Moved Address and Send buttons on Compose form for easier access
  - Added Polish translation from Lukasz Klimek <casa@LO.Pila.PL>
  - Added Swedish translation from Tobias Ekbom
  - Added Brazilian Portuguse translation from Henrique Moura
  - Added Dutch translation from Arjen Halma


*****************************************
*** Squirrelmail 0.4 and Pre-Releases ***
*****************************************

Version 0.4 -- May 15, 2000
---------------------------
  - If subject is blank, displays "(no subject)"
  - Fixed a few minor bugs and typos reported to list
  - Changed <? to <?php in a few places

Version 0.4pre2 -- May 5, 2000
------------------------------
  - Replying sets the "Answered" flag on the original message
  - When message is sent, it sends you to the folder you were looking at.
  - HTML based address book search
  - Made folder listing look first at subscribed folders, making it
    faster, even if you don't have $folder_prefix set.
  - Fixed some bugs with default sent and trash folders
  - Fixed some bugs with folder manipulating

Version 0.4pre1 -- April 29, 2000
---------------------------------
  - For speed's sake, unseen messages are only noted on INBOX in left
    folder list.  This will change with 0.5.
  - Optomizations, fewer IMAP calls, more efficient sorting algorithms.
  - Fixed all bugs listed in BUG
  - When inside the Sent folder, it displays "To" instead of "From"
  - Added ability to go to Next and Previous message while reading a message
  - Caching of the message headers in mailbox (much faster)
  - Added a preference that allows users to customize how many messages
    they see when they index a mailbox
  - Added flag status showing on message list (Answered, Flagged, and Seen)
  - Now using PHP session management
  - Parsing the body for URLs and Email addrs
  - Added option to configure default folder directory. ie: ~/mail
  - Configuration script added: config/conf.pl
  - Addressbook with LDAP support
  - Big speed improvements with folder listing
  - Added Subscribe/Unsubscribe to folders
  - Fixed bug in UW that didn't mark unseen messages
  - Saving sent messages into $sent_folder
  - It doesn't bail out if PHP wasn't compiled with --with-gettext.
    It only uses english in this case.
  - Added support for Cyrillic (thanks to Artem Botchkov for help)
  - Included information on Russian Apache from Konstantin Riabitsev
  - Honoring charset parameter for the body.
  - Changed the way emptying of trash was done to work better
    across different IMAP servers


*****************************************
*** Squirrelmail 0.3 and Pre-Releases ***
*****************************************

Version 0.3.1 -- March 13, 2000
-------------------------------
  - Fixed a bug that didn't allow downloading of attachments

Version 0.3 (final) -- March 10, 2000
-------------------------------------
  - Fixed bug in smtp.php and made sending RFC complient
  - Fixed a bug that wouldn't let you rename folders with UW server.
  - Other minor bugfixes

Version 0.3pre2 -- March 5, 2000
--------------------------------
  - Rewrote folder deletion.  It works much more flexably now.
  - Fixed message deletion that didn't always delete the right messages.
  - Removed font tags
  - Better character translation, especially for i18n
  - Added the choice of language as a user preference
  - Bug fixes, bug fixes, bug fixes
  - Fixed bugs in message moving and deleting
  - Rewrote all IMAP functions from scratch

Version 0.3pre1 -- February 17, 2000
------------------------------------
  - Added user-specific preferences including:
      Full Name (for outbound messages)
      Reply-to address
      Theme
      Move messages to trash option (true/false)
      Wrap incoming text at XX characters
      Editor window size (in characters)
      Time between reloads of the left folder list
      Signature
  - Rewrote SMTP functions.  It now works and handles error correction.
  - Only folders that you're subscribed to will be listed
  - Fixed a bug in outbound messages that translated " into \"
  - Added themes in distribution (7 total)
  - Added option to send email via sendmail rather than SMTP
  - Increased speed of viewing folder by date about 25%, and viewing the
    folder by Subject or Sender by up to 100%.
  - Added internationalization
  - Added sending of attachments
  - Left folder refreshing at intervals (with META tags)


*****************************************
*** Squirrelmail 0.2 and Pre-Releases ***
*****************************************

Version 0.2.1 -- January 05, 2000
---------------------------------
  - Rewrote how MULTIPART messages were handled and made it recursive
  - We now take into account the encoding type rather than guessing
  - Redesigned how attachments are displayed
  - Fixed the bug that wouldn't let you send messages (I hope)
  - Added a "download message" option
  - Added a plain text viewer for text messages

Version 0.2 -- January 02, 2000
-------------------------------
  - Attachment support (much better MIME support in general)
  - Themeable support replaced Custom Colors.  Themes are pluggable.


*****************************************
*** Squirrelmail 0.1 and Pre-Releases ***
*****************************************

Version 0.1.2  -- December 20, 1999
-----------------------------------
  - Date translation to local time
  - Rewrote folder fetching code universally
  - Added attachment detection (no downloads yet)
  - Fixed many minor bugs that were reported

Version 0.1.1  -- December 16, 1999
-----------------------------------
  - Reworked all the IMAP functions to make them RFC 2060 compliant
    (should work with all IMAP servers)
  - Added color customization
  - Sorted folder list (on left bar)
  - Added MUCH better error correction and notification

Version 0.1 -- December 14, 1999
--------------------------------
  - Message composing (with to, cc, bcc)
  - Message viewing, including HTML messages
  - Basic MIME support, no attachments...yet
  - Message sorting by Date, Name, or subject
  - Folder manipulation (deleting, creating, moving, and renaming)
  - IMAP email (currently only Cyrus IMAP server has been tested)
  - Many other features that are basic email functionality