CHANGES -- trio The changes listed without a name attributed to them were most likely done by Bjorn Reese and/or Daniel Stenberg. Version 1.10 - 2003/03/06 ------------------------- * Rearranged some include files to accommodate large file support (reported by Albert Chin-A-Young) * Added support for SunOS 4.1.x lack of strerror, tolower, and toupper (reported by Peter McCluskey). * Fixed pedantic compilation with TRIO_MINIMAL. * Jose Kahan Moved to avoid redefinition problems. * Fixed hex-float exponents (reported by Matthias Clasen). * Fixed handling of negative width and precision via paramters (reported by Jacob Navia). * Nigel Hall Fixed TRIO_VA_START for VMS. * Rune Enggaard Lausen Fixed compilation for Borland C++ Builder. * Fixed precision of hex-float numbers (reported by James Antill). * Fixed plus sign only to be added for signed numbers. * Fixed printing of integers with value and precision of zero (reported by James Antill). * Fixed %#.o to only print one zero if the value is zero (reported by James Antill). * Rewrote check for IEEE compilation option to remove dependency on additional scripts. * Mehdi Lavasani Makefile install target fixed to work with older install programs. * Collapsed the DECC, MSVC, HP-UX, and AIX code for trio_fpclassify_and_sign() with further preprocessing. Version 1.9 - 2002/10/13 ------------------------ * Fixed trio_fpclassify_and_signbit on AIX 3.2 * Added configure check for -ieee/-mieee compilation option for Alpha machines. * Craig Berry Fixed compilation on VMS. * Albert Chin-A-Young Fixed incorrect conditional expression in trio_isinf. * Fixed the warnings about uninitialized va_list in the printfv and scanfv family without the use of compiler specific pragmas (suggested by Ian Pilcher). * Fixed space flag for floating-point numbers (reported by Ian Main). Version 1.8 - 2002/07/10 ------------------------ * Fixed infinite loop in multibyte handling (reported by Gisli Ottarsson). * Added the customizable cprintf/cscanf family which enables to user to specify input and output stream functions (suggested by Florian Schulze). * Fixed trio_isinf by removing the HP-UX workaround, and instead making sure that the C99 macro will adhere to the trio return values (reported by Luke Dunstan). * Alexander Lukyanov Fixed boundary case for scanning and EOF. * Jacob Navia Enabled the L modifier for formatting. * Added TRIO_MINIMAL to build trio without the string functions. * Added the R modifier to print rounded floating-point numbers. * Added trio_to_long_double and long double scanning (the L modifier). * Added trio_locale_decimal_point, trio_locale_thousand_separator, trio_locale_grouping to overwrite locale settings. * Rewrote TrioWriteDouble to avoid temporary buffers and thus the danger of buffer overflows (for instance %.5000f). * Improved floating-point formatting accuracy. * Fixed formatting of non-decimal exponents. * Fixed thousand separator checking. * Fixed %f scanning to get a float and %lf to get a double. * Fixed WIN32 compilation (reported by Emmanuel Mogenet) * Fixed regression test cases to exclude disabled features. Version 1.7 - 2002/05/07 ------------------------ * Fixed trio_to_double to handle hex-floats properly. * Fixed printing of %a-format to be like %e, not like %g. * Fixed floating-point printing of values beyond the machine accuracy. * Fixed %f for printing with large precision. * Fixed the usage of C99 nan(), which caused a crash on OSF/1 (reported by Georg Bolz) * Joe Orton Fixed %p on 64-bit platforms. * Made trio compile with K&R compilers. * Emmanuel Mogenet Fixed bug in trio_asprintf. * Emmanuel Mogenet Various WIN32 fixes. * Joe Orton Fixed trio_isinf() on HP-UX, and added test cases. * Joe Orton Fixed non-portable use of $^ in Makefile. * Joe Orton Added autoconf. * Alexander Lukyanov Fixed a number of bugs in the scanning of EOF and the count specifier. * Richard Jinks Added trio_nzero * Fixed incorrect handling of return code from TrioReadChar (reported by Henrik Löf) * Fixed parsing of character class expressions. * Fixed trio_to_double which did not work with long fractions. * Fixed %f for printing of large numbers. * Fixed %#s to handle whitespaces as non-printable characters. * Added trio_isfinite, trio_signbit, and trio_fpclassify. * Added new test cases. Version 1.6 - 2002/01/13 ------------------------ * Added dynamic string functions. * Rewrote and extended documentation in JavaDoc (using Doxygen). * Moved and renamed strio functions to triostr. * Robert Collins Added definition for Cygwin. * Markus Henke Added long double workaround for the HP C/iX compiler. * Marc Verwerft Improved error handling for dynamically allocated strings. * John Fotheringham Made trionan compile on OpenVMS. * Added 'd' and 'D' as exponent letters when using TRIO_MICROSOFT. * Fixed uninitial memory read for the parameter modifiers. Version 1.5 - 2001/09/08 ------------------------ * Merged with libxml changes. * Moved NaN and Inf handling to separate file to enable reuse in other projects. * Igor Zlatkovic Fixed TrioGenerateNan for MSVC. * Fixed lots of preprocessor macros and internal data structure names. Version 1.4 - 2001/06/03 ------------------------ * Added hex-float (%a and %A) for scanning. * Added wide character arguments (%ls, %ws, %S, %lc, %wc, and %C) for both printf and scanf. * Added mutex callbacks for user-specified specifiers to enable applications to add thread-safety. These are registered with trio_register, where the namespace is set to either ":enter" to lock a mutex, or ":leave" to unlock a mut
#!/usr/bin/perl -w
# correct-domino-mime-conversion - does it!
# $Id: domino,v 1.1 2004/06/08 03:59:00 rfunk Exp $

use strict;

# Any arguments are expected to be an mda invocation.
if (@ARGV) {
    my $mda = join(' ', @ARGV);
    open(MDA, "| $mda") or die "Can't exec $mda: $!\n";
    select(MDA);
}

# Look for a Boundary declaration in the message header
my $decltag;
while (<STDIN>) {
    print;
    if (/boundary=\"(.*)\"$/i) {
	$decltag = $1;
    } elsif (/^$/) {
	# An empty line marks the end of the headers.
	last;
    }
}

# If we didn't find a Boundary declaration just pipe the rest of the
# message unchanged.
if (!defined $decltag) {
    while (<STDIN>) {
	print;
    }
    exit 0;
}

# Substitute $decltag for every ocurrence of an outer-level boundary
# string found in the body of the message.
my $usedtag;
while (<STDIN>) {
    if (/^--(.*)$/) {
	$usedtag = $1 unless defined $usedtag;
	if ($1 eq $usedtag) {
	    $_ =  "--$decltag\n";
	} elsif ($1 eq "$usedtag--") {
	    $_ = "--$decltag--\n";
	}
    }
    print;
}

=pod

This script can be used to bypass a bug in the Domino-5.0.2b IMAP
service that manifests itself when you use fetchmail as the IMAP
client.  The problem is that fetchmail (differently from other IMAP
clients) fetches messages in two parts, first the headers and then the
body.  It seems that Domino converts the messages from its internal
format into MIME twice.  In doing so, it declared a boundary string in
the messages Content-type header and uses another one to separate the
parts in the body.

This script should be used as a mda option for fetchmail.  As
arguments to it, pass the former mda you used.  I, for example, use the following entry in my .fetchmailrc:

	poll server ... mda "/usr/bin/procmail -d %T";

To use this filter, I changed the above into the following:

	poll server ... mda "/home/gustavo/bin/correct-domino-mime-conversion /usr/bin/procmail -d %T";

If you do not use a mda normally, you can try the following to call sendmail directly:

	poll server ... mda "/home/gustavo/bin/correct-domino-mime-conversion //wherever/is/your/sendmail -oem -f %F %T";

Without argumets this script is a filter that reads from its stdin and
outputs the result into its stdout.