
	NT specific topics

------------------------------------------------------------
1	Mail Servers
1.1	Sendmail for NT
1.2	EMWAC

2	Utilities
2.1	diff

3	Examples
3.1	convert articles to SJIS+CRLF
------------------------------------------------------------


1	Mail Servers

1.1	Sendmail for NT

1.2	EMWAC

% unzip 
% mv ims.dll \winnt\system32
% smtprs -install
% smtpds -install
% pop3s  -install

[control panel] - [EMWAC IMS]

2	Utilities

2.1	diff

cygnus

	http://www.asia.microsoft.com/japan/developer/library/technical/ssafe/J/ProdInfo/ssdiff.htm

	http://www.vector.co.jp/vpack/browse/software/win95/util/sn072811.html

3	Examples

3.1	convert articles to SJIS+CRLF

fml-support: 08941

If you article by mailbox format in SJIS+CRLF, try this hook.

    $DISTRIBUTE_CLOSE_HOOK = q#
        my ($sec,$min,$hour,$mday,$mon,$year,$wday) = (localtime(time))[0..6];
        my $dir = "$DIR/mailbox";
        my $mailbox = 
           $dir .'/'.sprintf("%04d%02d%02d", 1900 + $year, $mon + 1, $mday);
    
        &Mkdir($dir);
    
        if ( open($mailbox, ">> $mailbox") ) {
            my $body = "\n". $Envelope{'Body'};
            $body =~ s/\nFrom /\n>From /g;
            $body = &JSTR($body, 'sjis');
    
            print $mailbox "From $From_address \n";
            print $mailbox $Envelope{'Hdr'};
            print $mailbox $body ;
            print $mailbox "\n";
            close($mailbox);
        }
        else {
            &Log("ERROR: cannot open $mailbox");
        }
    #;


		INDEX

