forked from hypermail-project/hypermail
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangelog
3116 lines (2317 loc) · 119 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.4.1:
============================
2021-06-04 Baptiste Daroussin
* src/uudecode.c src/parse.c
Fixes for memory issues detected by libasan
2020-06-19 Jose Kahan
* src/domains.c
valid_root_domains() was validating a domain name against the
historical DNS domains such as .org, .com. DNS has evolved and allows a
bigger variety of domains than those this function verified. That part
of the function has been invalidated and will be either eventually
removed or evolve to a user-configurable option.
2020-06-12 Jose Kahan
* configure.ac
configure didn't signal an error if yacc was not installed
* src/string.c
parseurl(): URLs were not detected and converted when they were
preceeded by a : that was not attached to a valid URL like
foo: https://example.com or : https://example.com
2020-02-23 @cacsar
* Makefile.in
make install wasn't working
============================
HYPERMAIL VERSION 2.4.0:
============================
2019-12-20 Jose Kahan
* src/getdate.y
A message's sent or received date with a specified TZ but without any
seconds value was using the local date seconds value instead of 00.
2019-12-19 Jose Kahan
* src/parse.c
parsemail(): a Content-Transfer-Encoding header with a missing value
would result in an unitialized variable being used to output an unknown
encoding warning message. Hypermail now skips this header if it's empty.
2019-11-22 Jose Kahan
* src/print.c
printsubject() / printdates(): the "by suject" and "by dates" views
were not escaping markup present in mail's Suject and From headers.
2019-11-19 Jose Kahan
* src/pcre
Upgraded to upstream version 8.43. This fixes some autoconf issues we
had on newer debian releases. This is only relevant for people that
are not linking against a system libpcre.
* tests/diff_hypermail_archives.pl
Rewrote diff_hypermail.pl to make it more flexible and powerful for
finding the differences in two hypermail archives.
2018-12-07 Jose Kahan
* If the antispamdomain config option was used, hypermail was replacing
everything following a "@" character by the antispam domain. This fix
makes antispamdomain only apply for the domain part of valid email
addresses.
2018-11-29 Bill Shannon
* string.c
spamify_replacedomain(): fix another greedy "@" replacement in the
middle of a string of iso-2022-jp encoded Japanese characters.
2018-11-04 Bill Shannon
* string.c
i18n_convstring(): When converting a utf-8 string to iso-2022-jp,
hypermail always adds the "return to ASCII" escape sequence, even if
the string ends with ASCII.
parseemail(): hypermail attempts to transform anything that looks like
an email address by replacing the at sign (and optionally the domain
name) with a string (default "at") to confuse screen-scraping
programs. But if there's an "@" character in the middle of a string of
iso-2022-jp encoded Japanese characters, hypermail still converts it,
breaking the Japanese character.
2018-10-12 Jose Kahan
* setup.c PreConfig(): removed a 64-bit warning
* hypermail.c
main(): if the en_US locale is not available, try en_US.UTF-8
2018-10-11 Jose Kahan
* string.c
parseemail(): for some reason if a ',' char was concatenaned to an
email address, it was being parsed as part of the email username.
2018-10-10 Jose Kahan
* string.c
parseurl(): remove deprecated URLs. Improve support for URLs that don't
have slashes following the 'protocol:' schema. Improve support for tel:
URLs.
2018-10-09 Bill Shannon
* string.c
parseurl(): non-URL text can be misinterpreted as a URL, causing segfault
Fixes issue #39
2018-10-08 Jose Kahan
* print.c, string.c, proto.h
The inreplyto_command could generate invalid links if the parser interpolated the
in-reply-to from the subject. If a message's in-reply-to is interpolated,
hypermail won't honor it anymore for that message.
2018-10-07 Jose Kahan
* print.c printauthors(), printthreads(), printsubjects, printdates()
Even if set_i18n was enabled, Indexes were written with mixed charsets
instead of using utf-8 throughout.
* configure.ac, Makefile.in, src/Makefile.in
If the system has a recent libpcre, compile against it instead of using
the bundled one. This check is done by default when launching configure.
New configure options to allow to link against an external pcre library
(--with-external-pcre) or to force the build and link against the
bundled one (--enable-bundled-pcre).
New configure option to allow to compile against a system libtrio
(--enable-system-libtrio). Contrary to libpcre, it's not possible to find the
version of libtrio so we cannot compile automatically against it.
2018-10-04 Jose Kahan
* src/pcre
Upgraded to upstream version 8.42
* src/trio
Upgraded to upstream version 1.16
* parse.c
Only use the headers charset for text/plain if its absent. If no charset
is available in the other parts, do not add it.
2018-10-04 Jose Kahan
* Updated Changelog format for entries newer than version 2.3.0
* hypermail.h, parse.c, struct.c, struct.h
Charset handling for multipart messages was being handled wrong, giving
priority to the headers charset (if found) over that of the displayed body.
Sometimes the last found charset was the one being used throughout in the
generated body.
The metafile for attachments was sometimes inheriting the charset of the whole
body, even when not necessary or wrong. Now the meta doesn't include a charset
if the attachment doesn't explicitly give one.
* parse.c
References header was processed multiple times as it was not being marked as parsed
after being processed.
The epilogue of MIME parts was not being ignored.
2018-06-19 Jose Kahan
* Changed mispelled configuration option warn_surpressions to the
correct spelling warn_suppressions.
2018-06-14 Jose Kahan
* Hypermail would segfault or have an incorrect thread view if it was
handling an archive with a message (msg1) that was a reply to a message
not in the archive, if msg1 had a reply to it in the archive (msg2),
msg2 was archived before msg1 and both msg1 and msg2 shared the same
subject (regardless of Re: prefixes).
2018-06-07 Bill Shannon
* Add charset alias for Thai and Chinese
* The markup for access key "j" to jump to the start of a message was
only being added when the showhtml configuration option was disabled
* Setting the describe_folder configuration option has no effect on the
display of the folder index page
* In some cases hypermail failed to null terminate the charset name
when copying it, resulting in bogus charset names
* Hypermail would segfault if given the bogus From line "From:
<a@b.com"
* In some cases, when no new message was added to the archive, would
segfault because of a null pointer
2015-04-03 Ivan Kuraj
* Correct includes for new glibc
2013-06-10 Jose Kahan
* Even if a message was annotated as spam/deleted, its Attachments were
still being created
2013-04-18 Jose Kahan
* Removed commented out code in printfile.c.
* Added missing ';' in generated css rules in the same file
2013-04-11 Jose Kahan
* Extended the configure options so that a user can decide if hypermail
should be compiled and statically linked against the bundled pcre lib
or if it should be dynamically linked with an external (or system) pcre
library (if available).
* The new configure option is --with-external-pcre[=dir].
* The default value for dir is /usr and the include and libraries
directories will be searched from that starting path. This option is
disabled by default.
* The make clean in libfnv wasn't removing the libfnv.a file
2013-03-29 Jose Kahan
* Updated configure to latest autoconf syntax conventions.
* Renamed configure.in to configure.ac and cleaned it up partially.
2013-03-20 Jose Kahan
* Updated pcre to pcre-8.32 from pcre-4.3. This may have broken the
Windows lcc compilation but I don't have the means to verify it.
2013-03-15 Jose Kahan
* Updated trio code to trio version 1.14. Moved all the trio code to
src/trio. Now compiling trio as a static library and linking against
it, which makes binary a bit smaller. See src/trio/README.hypermail for
details.
2013-03-12 Jose Kahan
* New experimental support for RFC 3676 format=flowed. There are two
new related configuration options: format_flowed to enable it and
format_flowed_disable_quotes to disable it in specific cases. See the
documentation and the RFC for further info.
2013-03-08 Jose Kahan
* Error: string.c:parseurl() assumes that all URL motifs it can match
end with a :// string. However, the URL match table it uses included
some URL motifs that didn't have that string. These have been commented
as they may cause parseulr to SIGSEVs in some cases.
2013-02-26 Jose Kahan
* New configuration option, noindex_onindexes, for associating a
"noindex" robot metadata value with hypermail generated indexes.
2013-02-26 Jose Kahan
* New configuration option, userobotmeta, for Associatating robot
annotations with attachments, using the experimental X-Robots-Tag HTTP
header
* If a message is marked as "deleted" and we're not keeping the
content, substitute the value of the From: and Subject: headers with
"deleted".
* Make sure the delete stubs are added only when the delete_level
option says we're not to preserve the original message body.
2013-01-30 Jose Kahan
* Migrated source code repository from cvs.hypermail.org to
http://sourceforge.net/projects/hypermail/
* Added a mirror of the repository to github:
http://github.com/hypermail-project/hypermail
* Cleared up the markup errors in docs/hmrc.html by using tidy.
* New configuration directive "annotated" which allows a mailing list
archive editor to annotate a given message before converting it into
HTML. Associated additional new directives are
"htmlmessage_deleted_spam", "htmlmessage_deleted_other",
"htmlmessage_edited". Consult docs/hmrc.html for more info.
* "htmlmessage_deleted" is deprecated in favor of
"htmlmessage_deleted_spam"
* "deleted" is superseded by "annotated", although it will be supported
to take into account legacy archives.
* Regenerated the dependencies for the src/Makefile.in file.
============================
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 describe the new features.
Jose Kahan (Oct 23, 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 rick@foo.bar' 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 <arekm@sse.pl> 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 (jose@w3.org) (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 (jose@w3.org) (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 (kent@hypermail.org) (February 12, 2003)
- Converted msg2archive.c to use Thomas Biege's <thomas@suse.de>
s_popen() instead of popen().
Kent Landfield (kent@hypermail.org) (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 (kent@hypermail.org) (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 <thomas@suse.de>
- 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 (jose@w3.org) (February 06, 2003)
- Added a protection against the use of the nonsequential messaging option
when hypermail wasn't compiled with the libfnv.
Kent Landfield (kent@hypermail.org) (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 (jose@w3.org) (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 (kent@hypermail.org) (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 (kent@hypermail.org) (November 24, 2002)
- Added Russian language support.
Submitted by Igor Solovyoff" <siv@intear.com.ua>
Kent Landfield (kent@hypermail.org) (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 <phil@bolthole.com>
Jose Kahan (jose@w3.org) (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 (jose@w3.org) (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 (jose@w3.org) (October 2, 2002)
- The access righs of the msgindex file (for the hashed filenames)
were not being set at all.
Jose Kahan (jose@w3.org) (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 (jose@w3.org) (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 (jose@w3.org) (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 (jose@w3.org) (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 (jose@w3.org) (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