Skip to content

Fix ISO-2022-JP support - fixes #36 #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 36 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5a28c27
DM: adding I18N enhancements
Oct 25, 2005
5459997
DM: adding I18N enhancements
Oct 25, 2005
55f7c86
DM: adding I18N enhancements
Oct 25, 2005
ff5ad30
to parse address extensions correctly
Nov 1, 2005
47b86c5
fixed some markup problems
Nov 1, 2005
9c5a88d
markup fixes: to escape mail displaynames, added I18N code for haof f…
Nov 2, 2005
58f87b2
oops, forgot to free them!
Nov 2, 2005
832053f
replaced makemailcommand() and translateurl() to output valid URI str…
Nov 2, 2005
58b5024
fixed markup, escaping, and I18N
Nov 4, 2005
8506332
fixed markup, added id parameters to each anchors
Nov 4, 2005
c5418f4
markup fix
Nov 8, 2005
1489632
markup fix
Nov 8, 2005
3dc4b5d
Fixed a core dump with linkquotes = 1
Mar 15, 2006
d619fbf
Add rel="nofollow" to text message URLs
Mar 28, 2006
66bf454
changed description of mailing list to indicate need to subscribe to …
Sep 2, 2006
caed801
changes from Rick van der Zwet about spamify, dates, alignment
Feb 16, 2007
cd1d595
change int to size_t
Feb 16, 2007
3acd752
64bit fixes, possible buffer overrun fixes; disabled a ConvURLsString…
Oct 1, 2007
f7894c6
64bit fixes, possible buffer overrun fixes
Oct 1, 2007
85a08bc
xhtml patch
Nov 14, 2007
3969dba
fix bug that sometimes caused a charset problem when Content-Type is …
May 13, 2008
686c2d0
This is a writing access test
May 15, 2008
b3f5ac7
Back to 1.12
May 15, 2008
525da68
JK: lot of enhancements, markup changes, and minor bug fixes done
Oct 26, 2009
378fefa
JK: doc update, spelling fixes
Oct 26, 2009
8203e5c
JK: fixed date
Oct 26, 2009
863fe43
JK: accesskey 'd' and 't' in messages
Oct 27, 2009
885c18a
JK: hypermail version 2.3.0
Dec 22, 2009
99f4ad4
Correct includes for new glibc
ikuraj Apr 3, 2015
9a09cbc
Merge pull request #5 from kaptoxic/master
jkbzh Dec 8, 2015
fbc9cc5
Update for Ivan's change
jkbzh Dec 8, 2015
1a37cc5
Updating version
jkbzh Dec 8, 2015
632dad6
Updating doc and move from sf to github
jkbzh Dec 9, 2015
161f8a8
More precise info about maintenance
jkbzh Dec 9, 2015
dc5f963
Clarifying contribution status
jkbzh Dec 9, 2015
8cb7520
Fix ISO-2022-JP support - fixes #36
bshannon Jul 10, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,75 @@
Version Changes for Hypermail
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
============================
HYPERMAIL VERSION 2.3.0:
============================

Ivan Kuraj (Apr 3, 2015)
- Correct includes for new glibc

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.
Expand Down
44 changes: 29 additions & 15 deletions README
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

Hypermail

Version: 2.1.x
Version: 2.3.x

This is a release of the 2.1.x version of hypermail.
This is a release of the 2.3.x version of hypermail.

Hypermail is a program that takes a file of mail messages in UNIX mailbox
format and generates a set of cross-referenced HTML documents.
Expand Down Expand Up @@ -79,7 +79,11 @@ good things with it. April 17, 1998 Kevin passed hypermail development
to Kent Landfield (http://www.hypermail.org/). Kent had been
supporting an enhanced version of hypermail he had been using for the
last few years. It has gradually become a group effort, with Peter McCluskey
<[email protected]> often acting as the leader.
<[email protected]> often acting as the leader during its heydays.
Since a couple of years, it is stable and mostly unmaintained. W3C continues
to contribute to this repository, although infrequently, sharing with the
community enhancements and bug fixes originating from its use of
hypermail.

General:
========
Expand Down Expand Up @@ -115,27 +119,37 @@ Warning:
Take the time to read the KNOWN_BUGS file so that you are aware of
things that might affect your use of hypermail.

GIT Repository:
===============

Hypermail's code base has migrated from CVS to git and after a
residence at sourceforge, now resides at github:

https://github.com/hypermail-project/hypermail/

CVS Server:
===========

Thanks to Ashley M. Kirchner <[email protected]>, we have a CVS
server with the most recent sources at all times. Study the file
README.CVS for details in how to use it.
The hypermail CVS repository has been retired. Hypermail's code base
now resides at github (see above).

Thanks to Ashley M. Kirchner <[email protected]> for having
hosted and keep alive the CVS repository during the years.

Getting Help:
=============

Please send all bug reports, feature requests, patches, and other
program-related things to
There is no active dedicated mailing list for hypermail support or
development.

Please use hypermail's github repository issue tracker for all bug
reports, feature requests, patches, and other program-related
things. This project is under low-maintenance priority.

[email protected].
You can browse the old hypermail development mailing list archives
from the historical hypermail project homepage:

The Hypermail Development mailing list ([email protected])
is a good place to ask questions about usage, potential bugs, or to talk
about features you'd like to see. The list is a Smartlist-based list. To
subscribe send a message with the word "subscribe" in the Subject: field
to [email protected].
The list's submission address is [email protected].
http://hypermail-project.org/

Additionally:
=============
Expand Down
2 changes: 2 additions & 0 deletions README.CVS
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[ DEPRECATED We're now using github : https://github.com/hypermail-project/hypermail ]

Hypermail CVS Server Access

----
Expand Down
3 changes: 3 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@

#undef HAVE_GDBM_H

#undef HAVE_ICONV
#undef HAVE_ICONV_H

/* Define if you're using the FNV hash library */
#undef HAVE_LIBFNV

Expand Down
Loading