forked from hypermail-project/hypermail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
2815 lines (2105 loc) · 109 KB
/
Changelog
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
Version Changes for Hypermail
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
============================
HYPERMAIL VERSION 2.3.0:
============================
Jose Kahan (Oct 27, 2009)
- Added two new accesskeys in messages: 't' -> next message
in thread, 'd' -> next message
Jose Kahan (Oct 26, 2009)
- Updated hmrc.4 and hmrc.html to descrbie the new features.
Jose Kahan (Oct 26, 2009)
Various fixes / enhancements developed at W3C by Fumihiro Kato,
Daigo Matsubara and myself:
- Markup changes for deleted messages that are kept.
- New directive: htmlmessage_deleted for setting a custom HTML
message for the body of deleted messages.
- New directive: delete_incremental to disable deleting of existing
messages in the archive when doing an incremental add of a new
message. In some setups, if this feature is enabled, replies to
deleted messages will cause uncontrolled markup escape and
expansion. Feature is enabled by default.
- Updated list of known protocol uris that hypermail will convert
into links.
- Bug fix: setup.c:MakeConfig() CFG_SWITCH was using long instead of
int.
- New directive: fragment_prefix for customizing the prefix that is
put before each URI fragment in a message. Default value is "msg",
the previous hard-coded value.
- New directive: email_address_obfuscation foro enablingemail
address obfuscation using numeric character reference.
- New directive: inline_addlink to add in-line links to content that
is stored in the attachments subdirectory. 'inline_types" must
also be enabled.
- New directive: inreplyto_command, gives a URI template to a script
that hypermail will link to if it's unable to find a corresponding
Message-Id in the archive's messages.
Peter McCluskey (May 13, 2008)
Change from Fumihiro Kato to fix bug that sometimes caused a charset
problem when Content-Type is us-ascii but message headers
include other encoded text like utf-8.
Peter McCluskey (Nov 14, 2007)
Applied xhtml patch from Zvi Har'El.
Peter McCluskey (Oct 1, 2007)
Changes from Fumihiro Kato to fix bugs on 64 bit systems and some
possible buffer overflow problems.
Change in rules about whether to escape urls; it now seems to escape them
when found in the middle of the line the same way it has been doing when
they are at the start of a line.
Peter McCluskey (Feb 16, 2007)
Changes from Rick van der Zwet:
cosmetic = tweaking the interface a small bit (right align, the message
numbers, years in the date listing
spamify-domain = obfuscate the body of the message as well (will also
obfuscate 'ssh [email protected]' this of course), moved the domain obfuscate
yes/no to the general to make the function more portable
Changes from Mike Fabian changing int to size_t.
Peter McCluskey (Mar 27, 2006)
Add rel="nofollow" to text message URLs (option txtsuffix = 1).
Peter McCluskey (Mar 14, 2006)
Fixed a core dump with linkquotes = 1 caused by Daigo's changes.
Peter McCluskey (Sep 30, 2005)
Fixed missing links at top when show_index_links is 1 or 3.
Peter McCluskey (Aug 4, 2005)
Fixed double counting of messages deleted with the delete_msgnum option,
which sometimes caused top level index page to show wrong number of
messages and not link to a folder.
Peter McCluskey (Jul 29, 2005)
Changed to sort on sender date rather than from date when displaying
sender date as a result of use_sender_date = 1.
Peter McCluskey (Jun 23, 2005)
Some small changes from Vincent McIntyre to make date-range in index of
folders link to default index page, to use CSS instead of <th> to
distinguish that column, and some whitespace changes.
Added explanation of how to handle strcasestr prototype error to INSTALL.
Peter McCluskey (Mar 19, 2005)
Fixes to files_by_thread option submitted by Oliver Meili.
Peter McCluskey (Dec 2, 2004)
Patch from Ulf Härnhammar to fix two format string bugs in Hypermail.
They could have caused crashes if using incremental mode on edited
pre-existing archives with data like "%n%n%n%n%n%n%n%n" in certain lines.
Peter McCluskey (Nov 28, 2004)
Add filename_base option.
Peter McCluskey (Sep 29, 2004)
Add support for JAVT timezone.
Add mailbox_date_trimmer to contrib, faq.
Peter McCluskey (Jun 2, 2004)
Add language code substitution cookie patch from Shane Wegner.
============================
HYPERMAIL VERSION 2.2.0:
============================
Peter McCluskey (May 25, 2004)
Changed some of the addresses to hypermail-project.org.
Made the "We delete ... " message print only if progress != 0.
Peter McCluskey (Mar 23, 2004)
Changes to speed up incremental update when there are deleted files if
using usegdbm (it's still slow if usegdbm = 0).
============================
HYPERMAIL VERSION 2.1.9:
============================
Peter McCluskey (Feb 23, 2004)
Released version 2.1.9 tar file.
Peter McCluskey (Feb 17, 2004)
Add use_sender_date option.
Fix instructions for doing "make install" so that the documentation will
be installed.
Peter McCluskey (Feb 5, 2004)
Update much of the documentation.
Peter McCluskey (Feb 4, 2004)
Change default in setup.c for spamprotect and spamprotect_id to On.
Peter McCluskey (Feb 2, 2004)
Add set_report_new_file and set_report_new_folder options.
Peter McCluskey (Jan 23, 2004)
Add in missing <a name="end"> for index files.
Removed a misleading, nonportable timezone string from link titles in
toplevel index pages.
Peter McCluskey (Jan 9, 2004)
Change to make mbox_shortened option work a little better with
discard_dup_msgids = 0.
Change folder_by_date option to use "From " date rather than "Date: "
to decide which subdirectory to use. This makes it consistent with
top level index page.
Peter McCluskey (Dec 26, 2003)
Add increment = -1 mode to enable automatic determination of whether
to update or append in most cases.
Peter McCluskey (Dec 3, 2003)
Added a mbox_shortened option to handle mboxes that have had messages
deleted from the start of the mbox.
Peter McCluskey (Dec 1, 2003)
Fix mismatch in <ul>, </ul> in date.html with indextable = 0.
Peter McCluskey (Nov 17, 2003)
Add a check for the problem with the starting message number that was
partly fixed on Oct 1. Now old archives with a startmsgnum = 0 .hmrc but
a first message of 0001.html in this case will be treated as if startmsgnum
was 0.
Peter McCluskey (Nov 15, 2003)
Add Portugese support from Hugo Cisneiros.
Peter McCluskey (Oct 1, 2003)
Fix some problems with starting message number that caused bugs when
increment = 1, linkquotes = 1 and using folder_by_date.
Peter McCluskey (Sep 11, 2003)
Fixes to make pcre work.
Peter McCluskey (Sep 3, 2003)
Applied patches from Mike McDonald to use nowrap option in the author and
date columns in the index tables and get rid of all of the 'width=100%'
options to the tables.
Peter McCluskey (Sep 3, 2003)
French language improvements from Olivier Kaloudoff.
Peter McCluskey (Sep 1, 2003)
Applied patches from Mike McDonald to make spamify_replacedomain use
set_antispam_at, change printdates to include the dates in the table
version of the bydate index, and make the table use the whole screen
width instead of 80%.
Jose Kahan (Aug 18, 2003)
- Changed to lowercase the suffixes added to the message indexes. That is,
from "archive name By Date" to "archive name by date" because the
upper case seemed out of style as we don't have any control on what
is the string used for the archive's name. Did this change only for
the English messages as I don't know if this convention works well for
other languages.
Jose Kahan (Aug 18, 2003)
- Made the links to the different indexes show the index of the current entry.
This change originated from the feedback we got on the WAI enhanced archievs.
People find that this small changes increases the usability of the archive.
Jose Kahan (Aug 18, 2003)
- The links to the first message (aka #first) were not working in the
by attachment, by author, and by subject indexes.
Peter McCluskey (Aug 16, 2003)
- applied fix from Jean-Charles Meyrignac to handle 0x1A in mbox.
Jose Kahan (Aug 14, 2003)
- After receiving more feedback, reverted the changes done for converting the
displayed value of the Date: header. The reason is that users like to know
when they send a message. This information was getting lost because we
were converting the date to the local time.
- Made the Received on date be shown in converted local time.
- Added a new configuration option, indexdateformat, so that people can
specify a different format for indexes than the one used elsewhere. If this
variable is not defined., it'll use the dateformat by default.
- Made the index by date compare dates independently of the value of dateformat.
Jose Kahan (Aug 13, 2003)
- Made the Received on footnote line use the same date format as that used for the
Date: header on top of the messages.
Jose Kahan (Aug 18, 2003)
- Small WAI change to the list of indexes to show the entry corresponding to
the current index, but outside of a link. This comes from feedback, where
people said it was less distracting to see the same index to links all
the time.
Jose Kahan (Aug 18, 2003)
- Add the <title> WAI enhancement that I had forgotten to do for messages.
The new format is: [subject] from [author] on [date] ([mailing list label]).
I also removed the 64 characters maximum limit check we had on the title.
The reason is that this is not part of the HTML specification, but rather
a writing style. Dominique says we shouldn't be so strict in this case. In
addition, just adding a \0 after 64 characters could break entity names and
generate invalid HTML.
Jose Kahan (Aug 13, 2003)
- The mailcommand option didn't work when applied to a paragraph that had
a previously converted href string that includes the '@' char. I added
a quick hack to ConvURlsString to avoid doing the mailto: convertion if an href
already exists in that line. The best solution would be to do something
similar to ConvURLsWithHrefs.
Also fixed a memory leak.
Peter McCluskey (Aug 8, 2003)
- Applied haof fixes from Bernhard Reiter.
Jose Kahan (Aug 4, 2003)
- As a side effect of PNK's use of an SGML entity for the @ char, the
mailcommand option stopped working on all the headers except for
the To: one.
Jose Kahan (Aug 1, 2003)
- In order to guarantee the validity of XHTML documents, changed the
behavior of hypermail when including customized footers. Previously,
when using this option, the custom markup had to include the </body>
and </html> end tags. As we also need to include a </div> in some
cases for XHTML and it's much harder to guess when to add it, I
made hypermail always add those three end tags as needed, regardless
of whether the custom footer option is being used.
Jose Kahan (Jul 30, 2003)
- After talking with Dom Hazel-Massieux, I added some extra WAI enhancements
to the list of indexes generated by hypermai. Specifically, the date
is shown in a verbose name in the title attribute of each entry and in
an abbreviated version in the markup that's being displayed.
Jose Kahan (Jul 30, 2003)
- When rebuilding an archive, the attachment files were not being overwritten
correctly. . Fixed this by adding an O_TRUNC flag.
Jose Kahan (Jul 29, 2003)
- Removed a memory leak in file.c as reported by insure.
- The ietf-mbox option didn't work on "quoted printable" encoded attachments.
Peter McCluskey (July 22, 2003)
Fix show_msg_links = 3 option (Jose's changes assumed it didn't exist).
Updates to German from Tobias Weber.
Kent Landfield (Jul 14, 2003)
- When show_headers was used in print.c, the newline was not recognized
early enough in printheaders. A check was added to assure the newline
was recognized properly.
Kent Landfield (Jul 10, 2003)
- Small typo in print.c corrected.
fprintf(fp, "%s ^lt;<em>%s</em>>"...
========================
HYPERMAIL VERSION 2.1.8:
========================
Kent Landfield (Jun 28, 2003)
- Updated pcre library with pcre-4.3 sources. We were distributing a
much older version. We were distributing version was 3.3 from
August 1, 2000.
- Updated FILES with the lcc files and the pcre changes.
- Removed the deprecated "show_hr" from the tests/test.rc file.
Jose Kahan (Jul 2, 2003)
- parseurl didn't work well when an URL was quoted and enclosed inside
tags. Such as:
<dd>some url</dd> </dd was put as part of the url.
Jose Kahan (Jul 1, 2003)
- Added WAI enhancements to the list of indexes generated by hypermail.
To make things perfect, we would need a new configuration option to give
the format of the date in the list of indexes format. I hard coded it
for the moment as I ran out of time to do it right now. As it has to
use an abbreviated date format to avoid having a too big list of indexes,
we can' t reuse the standard set_dateformat value.
- Removed warnings detected thru gcc Wall.
Peter McCluskey (June 30, 2003)
- Increased max_tokens used to allocate space for linkquotes data struct.
Jose Kahan (Jun 28, 2003)
- Code cleaning. Removed the deprecated code for set_showhr and
set_usetable options.
Kent Landfield (Jun 28, 2003)
- Arkadiusz Miskiewicz <[email protected]> reported progerr() was being
called with NULL instead of the previously constructed error message.
His supplied patches were applied.
Peter McCluskey (June 27, 2003)
- Made dates in subdirectory index files reflect subdirectory date range,
rather than the date range for the whole archive.
Peter McCluskey (June 24, 2003)
- Fix print_index_header_links to print MSG_ENDING date correctly (had
been using 2 getdatestr() calls in one argument list).
Peter McCluskey (June 20, 2003)
- Fix a core dump with empty Date:.
Jose Kahan (Jun 10, 2003)
- Some extra WAI enhancements requested during the period of public comments:
Order the date index by dates, like in subjects, add <dfn> to the start and
end period in the indexes, change the title of "jump to first message" to
"jump to list of messages".
- The top respond link didn't take into account the msgid or subject. It was
just a plain mailto. Made it work as the bottom one.
Jose Kahan (Jun 10, 2003)
- Adding new messages using the -u option to an existing file sometimes
resulted in warnings saying "Message-ID is missing, ignoring message
with subject..." Patch idea submitted by Peter.
Jose Kahan (Jun 10, 2003)
- The incremental option (-u) always started new archives with 0001, rather
than 0000. It will now start with 0000 as before
For those people who had this problem and don't want to break any links to
their archives when rebuilding them, there's a new configuration option
allowing you to tell from which number you want to start your archive:
startmsgnum. You should only set it up once and not modify it for an
existing archive or your links may break.
A warning message appeared systematically because the showhr, which is
now deprecated, was turned on by default.
Peter McCluskey (May 22, 2003)
- add Italian support from Gabriele Bartolini and Marco Nenciarini.
Peter McCluskey (May 16, 2003)
- Fixed initialization of prior_subdir when dirs created out of
order. That fixes a case where a subdir wasn't in index files with
reverse_folders = 1.
Jose Kahan (May 13, 2003)
- Add the WAI enhancements proposed in
http://www.w3.org/2002/03/archives-improvements/.
As a consequence of this change, the sethr and usetable configuration
options are deprecated. The new markup takes into account the changes
that those options proposed and offers them in a WAI friendly way.
Some code cleaning needs yet to be done to remove all the cases
where those rules were used. Previous code version is tagged as
"before-wai".
Fixed some invalid XHTML markup too.
Peter McCluskey (May 12, 2003)
- fix txtsuffix to not crash on null pointer.
- fix discard_dup_msgids to work when showprogress = 0.
Peter McCluskey (April 24, 2003)
- spam encoding from Peter Karlsson. Currently enabled via the
spamprotect option.
Jose Kahan (Apr 23, 2003)
- As a consequence of the XHTML convertion, unconvchars() wasn't
storing information into the buffer when there were no entities.
Jose Kahan (Apr 10, 2003)
- Converted hypermail to XHTML. The only remaining issue concerns
charsets. Some mail clients don't specify a correct charset or
specify a charset and include characters belonging to other
charset spaces. The solution to detect and convert the
foreign charset into a Unicode entity or, for the adventurous
hacker, convert hypermail's output to UTF-8. For the moment, only
the former is implemented partially; there is only one a winlatin1
(Windows CP 1252) to Unicode convertion/detection being done.
See string.c:convchars, unconvwinlatin1, and uconvert.h for more
details.
The best solution will be to move to UTF-8, but this has to be planned.
If you have a charset issue, your XHTML document will be invalid.
As XHTML is backwards compatible with HTML, you can avoid this problem
by continuing to use the text/html MIME type.
Peter McCluskey (April 3, 2003)
- Fixed so attachment.html doesn't list .meta directory.
Kent Landfield (Mar 20, 2003)
- Added Splint (www.splint.org) support to src/Makefile.in
- Corrected Initializer block for ltable[12]. Had 2 fields, but struct
language_entry has 3 fields.
- Removed unused gp variable in update_deletions().
- modified print_main_header() to assure title meets HTML recommendations
of no longer than 64 characters.
- Updated docs/hypermail.rc
Peter McCluskey (Mar 18, 2003)
- Fixed overwrite = 0 to avoid rewrite of many files involved in replies
with folder_by_date option.
Peter McCluskey (Mar 14, 2003)
- Fixed two bugs with deleting messages with the incremental mode. One bug
meant that the message body was only rewritten or removed with the
delete_msgnum option, not delete_older / delete_newer. The other bug
involved only updating the is_deleted flag in the gdbm file if the
message body was redone to update a MSG_IN_REPLY_TO line.
Kent Landfield (Mar 9, 2003)
- updated domains.h to accurately reflect the current set of root domains.
Peter McCluskey (Mar 7, 2003)
- Fixed problem with reverse_folders option that caused the index file
to leave out folders when there were some unusual mismatches between the
2 dates in one message.
Kent Landfield (Feb 28, 2003)
- changed wait.h sys/wait.h for portability in msg2archive
- removed unused variable in finelink.c
Kent Landfield (Feb 20, 2003)
- corrected docs/Makefile.in to create the images dir if it does not exist.
Kent Landfield (Feb 20, 2003)
- added wait.h to msg2archive that was needed for s_popen()
- removed unused variable in finelink.c
========================
HYPERMAIL VERSION 2.1.7:
========================
Peter McCluskey (Feb 20, 2003)
- Made version 2.1.7 tar file.
Jose Kahan ([email protected]) (Feb 20, 2003)
- makemailcommand wasn't escaping non-ascii characters in the URLS
that it generated.
Peter McCluskey (Feb 19, 2003)
- Fix to append option to handle some lines getting discarded in mdecodeQP.
Kent Landfield (Feb 19, 2003)
- Updated TODO with configure issues and other corrections we want
to make to the code in the near future.
Jose Kahan ([email protected]) (Feb 19, 2003)
- Upgraded extract_rfc2047_content() as the previous extracting
algorithm was broken.
Kent Landfield (Feb 18, 2003)
- Added missing contrib utilities, contrib/msg2hypermailarchive.py
and contrib/runtest to FILES
- Added checking in struct.c to limit the length of Subject: line to
avoid theoretical Denial-of-Service
- Removed code that was ifdef'ed NOTUSED
Peter McCluskey (Feb 17, 2003)
- Fix to attachment Content-Type parsing to strip all whitespace off
end of type rather than just newline.
Kent Landfield (Feb 17, 2003)
- Added safe_tmpfile() usage instead of internal usage.
Peter McCluskey (Feb 14, 2003)
- Disabled conversion of file:// into href - it seemed to allow anyone
who could access the web server via local host could read any file
that the web server had permission to read rather than just files
in the archive directory.
Peter McCluskey (Feb 13, 2003)
- Add -DTRIO_MINIMAL. Solves a trio compile problem in SunOS and makes
binary a little smaller.
- Strip mail.c down to minimal warning message so we don't have to worry
about analyzing it's security problems.
- Changes to get strerror, memmove from pcre when missing (e.g. on SunOS).
How was this working on SunOS before?
- Fix faulty sizeof in snprintf for MSG_ENCODING_IS_NOT_SUPPORTED.
Kent Landfield ([email protected]) (February 12, 2003)
- Converted msg2archive.c to use Thomas Biege's <[email protected]>
s_popen() instead of popen().
Kent Landfield ([email protected]) (February 11, 2003)
- Modified configure.in to test for snprintf. This is needed
since Solaris 2.5.1 does not have snprintf. This only affects
the msg2archive and mbox2hypermail in the archive directory.
Kent Landfield ([email protected]) (February 10, 2003)
- Modified configure to assure on Solaris that the ctype functions
were used instead of the macroes. New NO_MACRO define in config.h.
- Added most of the patches submitted by Thomas Biege <[email protected]>
- Cleaned up compilation commenting out unused variables with NOT_USED.
Need to remove them and other unnecessary code soon.
- Various other minor compilation issues.
- Corrected prototype issue in print.c
- Added parameter checking to archive/*.c source
Peter McCluskey (Feb 10, 2003)
- Fixed the append option to handle lines between end of headers through
mime boundary correctly.
Jose Kahan ([email protected]) (February 06, 2003)
- Added a protection against the use of the nonsequential messaging option
when hypermail wasn't compiled with the libfnv.
Kent Landfield ([email protected]) (February 06, 2003)
- Hypermail 2.1.6 runs on a DEC Alpha running TRU64 when compiled
with GCC 2.95. It does however require the -mieee flag be set for the
trionan.c sources.
- Modified configure.in script to support setting the the -mieee flag
for an Alpha TRU64 build.
- Modified various Makefile.in files to assure clean/clobber/distclean
worked universally.
Peter McCluskey (Feb 1, 2003)
- Changes to make stack overflow less common.
Peter McCluskey (January 29, 2003)
- Fixed faulty freeing of memory that caused core dump with files_by_thread
option.
- Fixed missing function call argument with files_by_thread option. I suspect
this was causing some random behavior, but I only found it due to valgrind.
- Fix for placement of link to next msg with incremental update, usetable = 0.
Peter McCluskey (January 28, 2003)
- Fix from Zvi Har'El to leading zeroes in anchors in index pages with
indextable=0.
- Changes to Swedish from Peter Karlsson.
Peter McCluskey (January 26, 2003)
- Fix for placement of link to next msg with incremental update.
========================
HYPERMAIL VERSION 2.1.6:
========================
Peter McCluskey (January 24, 2003)
- Released version 2.1.6 tar file.
- Fix buffer overflow when progress = 2 (triggered by long attachment
names). Was a security risk.
- Fix buffer overflow in mail (cgi) program that probably created security
risk if gethostbyaddr returned h_name of about 80 chars for an ip address.
- Disabled the functionality of the mail program and replaced it by default
with warning about abuse by spammers. Added warnings about use of program.
- Change size of boundbuffer (in parse.c) to 256, limit sscanf that fills it
to 255 bytes. This prevents a buffer overflow with long mime boundaries. The
buffer overflow didn't seemed to produce only minor problems, but it's hard
to rule out security risks.
- Add check for inline attachment name overflowing attachname buffer (like
the check that Jose added today for non-inlined attachments).
- Add check for append_filename and alts_text exceeding buffer size.
- Delete attachment directory of messages that are discarded due to a missing
or duplicate message-id.
Jose Kahan ([email protected]) (January 24, 2003)
- Fixed a buffer overflow reported by Ulf Harnhammar from VSU security.
Peter McCluskey (January 22, 2003)
- If mime message has an end boundary but no start boundary (as a buggy
version of Microsoft Outlook seems to create), the body is now treated
as a plain text message rather than discarded.
- Update trio code to trio version 1.9.
Peter McCluskey (January 20, 2003)
- Several fixes to avoid uninitialized memory reads reported by valgrind.
Peter McCluskey (January 18, 2003)
- Fix random behavior in parseurl which sometimes caused core dumps on lines
ending in http://, ftp://, etc.
Peter McCluskey (December 19, 2002)
- Apply patch from Wolfgang Spraul fixing link from subdir attachment.html to
index.html when defaultindex = date
Peter McCluskey (November 26, 2002)
- Changed attachment naming back to what it was before Jose added
set_nonsequential.
- Changed attachment naming so that files are stored using the names
provided without any %d- prepended whenever that doesn't cause conflicts.
Kent Landfield ([email protected]) (November 24, 2002)
- Made some updates to the docs. Still need to update the
docs to include writehaof, nonsequential, msgsperfolder and
assure other config file directives are listed and current.
Kent Landfield ([email protected]) (November 24, 2002)
- Added Russian language support.
Submitted by Igor Solovyoff" <[email protected]>
Kent Landfield ([email protected]) (November 24, 2002)
- Made the "_at_" antispam bit configurable by config file, using
antispam_at = __somestring__ (does not have to have __ in it)
Anything hardcoded by default, can be figured out and used by
spammers. Particularly something like "_at_".
Submitted by Philip Brown <[email protected]>
Jose Kahan ([email protected]) (October 17, 2002)
- URL generation was broken when a URL had a '@' char and hypermail
was using the mailcommand option. parseemail() didn't take this
case into account yet (there's just an empty statement). I added a
quick patch to convert the '@' into an HTML entity when doing the
convertion inside a URL. The change is in translateurl().
Jose Kahan ([email protected]) (October 2, 2002)
- In order to avoid hashed filename collisions, the filename
is now built with a hash of the msgid concatenated to the
Epoch seconds of the From date. This gives a total of
16 characters (all data is represented in hex). Only messages
that have the same msgid and that arrive in the same second
will have a collision.
I also compiled with the Warning flags and removed some
warnings.
Jose Kahan ([email protected]) (October 2, 2002)
- The access righs of the msgindex file (for the hashed filenames)
were not being set at all.
Jose Kahan ([email protected]) (October 1, 2002)
- The non-sequential msgid mode didn't work when updating the
archives by one message. Fixed a confusion in the generation of
the msgindex file.
Jose Kahan ([email protected]) (September 26, 2002)
- Cleaned the autoconf files for passing the libnvf compile parameters
(what a difference does reading the manual make).
Peter McCluskey (September 25, 2002)
- Fix threading bug with incremental update and spamprotect_id = 1,
usegdbm = 0.
Jose Kahan ([email protected]) (September 25, 2002)
- Commited the ~/hypermail/ltmain.sh file and also put it in the
FILES section. Somehow, without this file, it was impossible to
compile the file generated thru a make tgz. The same kind of
file already existed in the pcre and fnv directories.
Added a rule to pass the FNV optional CFLAGS from the
~/hypermail/Makefile file, so that you can do a make from the top-level
(previously, you had to do it in the src directory... oops!).
Jose Kahan ([email protected]) (September 25, 2002)
- Updated the FILES tgz file (added libfnv, removed two non-existent
tests).
- Fixed the make tgz rule (how long was it since it was last used?)
Jose Kahan ([email protected]) (September 25, 2002)
- Added a new option to compute the archived filenames using an fnv hash
of the msgid + received From date. The resulting filename is 8 bytes long
(a space of 2^32 bits) + the extension. You can eventually change it to
16 bytes if this is too short. Just look at the code.
The advantage of this is that you can add and remove items from the
archive and not worry anymore about broken links if the sequence
changes (e.g., if you are rebuilding an archive). To activate this
option, you need to do a ./ configure --enable-libfnv, then
recompile hypermail. The name of the new option is nonsequential
(lack of imagination!).
Peter McCluskey (September 17, 2002)
- Added reverse_folders option.
Peter McCluskey (August 30, 2002)
- Fix segfaults in mdecodeRFC2047 (with headers encoded as quoted printable),
and in ConvURLsString.
- Add files_by_thread option.
Peter McCluskey (August 20, 2002)
- Change preferedcontent to fall back on type "text/" or on encoding if
it can't find any prefered types.
- Fix mdecodeRFC2047 to decode headers of any length (removing 128 byte limit).
- Add classes to default stylesheet to set colors of headers, standard links,
and of quoted text according to quote nesting depth.
Peter McCluskey (August 16, 2002)
- Fix bug internal error in crossindexthread2 resulting from message with
unterminated mime.
Peter McCluskey (August 11, 2002)
- Add Norwegian language support from Bosse Klykken.
Peter McCluskey (August 7, 2002)
- Add contrib/msg2hypermailarchive.py from Bernhard Reiter.
- Add antispamdomain option from Vincent McIntyre.
- Add delete_newer option.
Peter McCluskey (August 3, 2002)
- Fix expires option to work in incremental mode.
- Add delete_older option.
========================
HYPERMAIL VERSION 2.1.5:
========================
Peter McCluskey (July 31, 2002)
- Release version 2.1.5 tar file.
Peter McCluskey (July 22, 2002)
- Apply gdbm patch from Bernhard Reiter, mainly altering messages.
- Apply German language patch from Bernhard Reiter.
- Apply haof patch from Bernhard Reiter.
Peter McCluskey (July 15, 2002)
- Fix some missing links to multipart attachments with save_alts option.
Peter McCluskey (July 11, 2002)
- Add base_url option, and warning about it being needed when the
latest_folder option is used and the folder_by_date option contains a '/'.
Peter McCluskey (July 8, 2002)
- Fix endless loop that save_alts option often produced.
Peter McCluskey (June 18, 2002)
- Applied changes from Carlos Martín Ugalde to Spanish text.
Peter McCluskey (June 13, 2002)
- Fix call to compute_quoted_percent so that it doesn't crash on deleted msg
with incremental update.
Peter McCluskey (May 14, 2002)
- Add spamprotect_id option.
Peter McCluskey (Apr 26, 2002)
- Changed to convert ampersands in urls to &.
Peter McCluskey (Apr 22, 2002)
- Add Greek language support from Akis Karnouskos.
- Surpress <p> within <pre>.
Peter McCluskey (Mar 22, 2002)
- Fixed to rewrite old messages that have new replies (some links to
replies/next in thread had been missing for overwrite=0, increment=0,
and also for linkquotes = 1).
- Updated configure to reflect Daniel's changes to fix --without-gdbm
in configure.in.
Peter McCluskey (Mar 19, 2002)
- Increase MAXSTACK from 20 to 200.
Peter McCluskey (Feb 4, 2002)
- Fix to avoid converting strings like ftp://[email protected] to mailto's.
Peter McCluskey (Feb 4, 2002)
- Patch from William R. Knox to add meta date tag.
Jose Kahan ([email protected]) (Jan 25, 2002)
- When a message had a charset of type US-ASCII or ISO-8959-1, it wasn't
being stored in the HTML version of the message. This could result in
a correct decoding of the message, as browsers assume a user-given
default charset in those cases.
Peter McCluskey (Jan 11 2002)
- Patch from William R. Knox to fix possible race condition in creating dirs.
Peter McCluskey (Jan 10 2002)
- Add %t substitution cookies to provide path to top folder.
Peter McCluskey (Jan 5 2002)
- Fix segfault in incremental mode with linkquotes.
========================
HYPERMAIL VERSION 2.1.4:
========================
Peter McCluskey (Dec 19 2001)
- Create version 2.1.4 tarball.
Peter McCluskey (Dec 14 2001)
- Applied patch from William King adding </li>'s.
Peter McCluskey (Dec 10 2001)
- Fix bug in chronological ordering of folders.
Peter McCluskey (Dec 6 2001)
- Applied patch from William King to fix footer links on attachment index.
Peter McCluskey (Dec 4 2001)
- Change to detect start of new message when mime boundary missing,
treat unbounded text as plain text body.
Peter McCluskey (Dec 2 2001)
- Applied patches from William King:
- DTD changed to strict.
- </p> now emitted.
- Some tags were not contained properly. Now wrapped in <p></p>.
Peter McCluskey (Dec 1 2001)
- Applied patches from William King to string function defines and gdbm
configuration.
Peter McCluskey (Nov 30 2001)
- Add Polish language support from Piotr Waskiewicz. Change some hardcoded
From's to new macro MSG_FROM, change a Date to MSG_CDATE.
- update config.sub, config.guess from ftp.gnu.org/gnu/config/.
Peter McCluskey (Nov 26 2001)
- Applied patches from William King to update man pages for body, lang
options changes, and add new domain codes.
Peter McCluskey (Nov 24 2001)
- Applied patch from William King to add lang= to <html> tag, get rid of
duplicate <em>.
Peter McCluskey (Nov 23 2001)
- Added support for locales of form en_US. Changed language code "se" to
"sv", provide warning for old code.
Peter McCluskey (Nov 22 2001)
- Applied patch from William King to create meta tag with hypermail version
number.
- better French support from Emmanuel Blot.
Daniel Stenberg (Nov 21 2001)
- Updates to congfiure and trio.
Peter McCluskey (Nov 21 2001)
- Applied patches from William King to conform better to HTML 4.01:
* remove body option, replace default <body> bgcolor=, text= with inline
style sheet (unless user-defined style sheet present).
* change <div align=...> to <div class=...>, same for <h1 align=...>
- add $BINARY, $NONPLAIN types to ignore_types option.
- add warn_surpressions option
- add unsafe_chars option
- Remove tmpname from parse.c (to get rid of warning about mktemp).
Peter McCluskey (Nov 19 2001)
- Applied patches from William King to conform better to HTML 4.01:
* remove noshade from <hr>
* change the default DTD
* escape &'s, add image/png in test.rc, hmrc.example
- Changed the fix*header() routines so that they handle incremental updates
sensibly when given a mailbox with multiple messages. In the process, I
fixed 2 problems with single-message incremental updates, one which left
out the "Next message" link, and one which created a "Reply" link that should
have been a "Maybe reply".
- Add warning for mbox that starts with different msg than gdbm file if
not using -u (overwrite) option.
- Change default for overwrite option to off.
- Fixed segfault that happened when %m parsed in header but mailto was NULL.
Peter McCluskey (Nov 18 2001)
- Folder list now sorted chronologically.
Peter McCluskey (Nov 16 2001)
- Added save_alts and alts_text options.
Peter McCluskey (Nov 15 2001)
Updated some old documentation, added some security warnings.
Peter McCluskey (Nov 14 2001)
- Changes relevant to security:
1. attachment filenames ending in .shtml get changed to .html.
2. attachment descriptions are passed through convchars to prevent html tags
from being used there.
Peter McCluskey (Nov 13 2001)
- Fixed malloc bug that caused segfault with linkquotes=1.
Peter McCluskey (Nov 12 2001)
- Update to trio-1.4 (from 1.2) to fix Alpha compile problem.
Peter McCluskey (Nov 7 2001)
- Changes to hypetombox.pl:
1. add some support for handling attachments.
2. fixed some problems arising from some tags being changed to lowercase.
3. add -S option to specify htmlsuffix.
4. changed to convert <p> to blank line (instead of to nothing).
5. additions to improve handling of archives produced linkquotes=1 option.
Peter McCluskey (Nov 5 2001)
- change parse.c to treat lines containing only a carriage return as
blank lines for purpose of deciding whether they indicate the end of
headers or a continued header line.
========================
HYPERMAIL VERSION 2.1.3:
========================
Peter McCluskey (Aug 22 2001)
- fix Makefile to clean pcre directory.
Peter McCluskey (Aug 7 2001)
- removed In-Reply-To from mailcommand default.
Peter McCluskey (Jul 25 2001)
- fix to abort before unlinking gdbm file if need it and cannot open it.
- fix latest_folder option (didn't work in incremental mode).
Peter McCluskey (Jul 17 2001)
- patch from Brian Kirkby to fix links between folders with usetable.
Peter McCluskey (Jun 26 2001)
- fixed parsing of integer/octal/switch environment variable values.
- fixed bugs in latest_folder option (includes fix from David Bau
Peter McCluskey (Jun 23 2001)
- fixed FILES so that hypermail.html gets into tarballs.
Peter McCluskey (May 31 2001)
- patches from Moritz Willers to surpress empty "messages sorted by:" line,
add | after "Previous Folder, Thread view", etc.
Peter McCluskey (May 30 2001)
- changes to Swedish from peter karlsson.
========================
HYPERMAIL VERSION 2.1.2:
========================
Peter McCluskey (May 22 2001)
- change default value for avoid_top_indices to none.
- fixed make to handle pcre properly.
Peter McCluskey (May 16 2001)
- fix pathnames in inline attachments with msgsperfolder/folder_by_date
Peter McCluskey (May 11 2001)
- add filter options (using pcre regular expressions):
filter_out
filter_require
filter_out_full_body
filter_require_full_body
Peter McCluskey (May 9 2001)
- fix links to attachments in subdir index files.
Peter McCluskey (May 8 2001)
- fixed bug with incremental update that caused the index files to
ignore messages beyond set_searchbackmsgnum.
Daniel Stenberg (May 8 2001)
- Removed the last traces of mprintf.[ch] and made the trio stuff work
completely as a replacement.
Peter McCluskey (May 7 2001)
- fixes to trio configuration.
Peter McCluskey (May 4 2001)
- another fix to avoid_top_indices = folders.
- enhance show_msg_links to support links only at top or only at bottom.
- add show_index_links option to control links from message page to indices.
- add txtsuffix option
- On/Yes now converted to 1 for CFG_INTEGER options (for compatibility
with options that used to be CFG_SWITCH's)
- fix append option so that it handles uuencoded attachments and
mdecodeQP() calls correctly.
Kent Landfield (May 4 2001)
- corrected compilation issue for Sun CC in string.c
- corrected check for set_custom_archives in hypermail.c
Peter McCluskey (May 1 2001)
- convert mprintf calls to trio calls
Peter McCluskey (Apr 27 2001)
- allow incremental update with folder_by_date on empty archive, improve
error messages for missing gdbm file with folder_by_date, incremental update.
Peter McCluskey (Apr 26 2001)
- fixed so that avoid_top_indices = folders works.
Peter McCluskey (Apr 24 2001)
- fix urls at end of index page with folder_by_date.
Peter McCluskey (Apr 20 2001)
- patch from Hisashi Gotoh <[email protected]> to fix message/rfc822
handling with showhtml = 0.
========================
HYPERMAIL VERSION 2.1.1:
========================
Peter McCluskey (Apr 18 2001)
- changed configure script to check several directories for gdbm.h,
provide --with-gdbm=DIR option.