File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / mini_sendmail / README
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 16:52:55 2012 UTC (12 years, 2 months ago) by misho
Branches: mini_sendmail, MAIN
CVS tags: v1_3_6p0, v1_3_6, HEAD
mini_sendmail

     mini_sendmail - accept email on behalf of real sendmail
                   version 1.3.6 of 29jun2005

mini_sendmail reads its standard input up to an end-of-file and
sends a copy of the message found there to all of the addresses
listed.  The message is sent by connecting to a local SMTP server.
This means mini_sendmail can be used to send email from inside a
chroot(2) area.

See the manual entry for more details.

Files in this distribution:

    README		this
    Makefile		guess
    mini_sendmail.c	source file
    mini_sendmail.8	manual entry

To build: If you're on a SysV-like machine (which includes old Linux systems
but not new Linux systems), edit the Makefile and uncomment the SYSV_LIBS
line.  Otherwise, just do a make.

After it's built, you must test it to make sure your local sendmail
daemon is (a) running and (b) accepting local mail for delivery
elsewhere.  Here's what a successful test run might look like:

    % echo 'Subject: test' | ./mini_sendmail -v jef@mail.acme.com
    <<<< 220 gate.acme.com ESMTP Sendmail; Thu, 16 Dec 1999 17:17:37 -0800 (PST)
    >>>> HELO localhost
    <<<< 250 gate.acme.com Hello localhost [127.0.0.1], pleased to meet you
    >>>> MAIL FROM:<jef@gate.acme.com>
    <<<< 250 <jef@gate.acme.com>... Sender ok
    >>>> RCPT TO:<jef@mail.acme.com>
    <<<< 250 <jef@mail.acme.com>... Recipient ok
    >>>> DATA
    <<<< 354 Enter mail, end with "." on a line by itself
    <<<< 250 RAA58877 Message accepted for delivery
    >>>> QUIT
    <<<< 221 gate.acme.com closing connection
    % 

And here's an unsuccessful run where there's no local sendmail
daemon running:

    % echo 'Subject: test' | ./mini_sendmail -v jef@mail.acme.com
    ./mini_sendmail: connect: Connection refused
    % 


Feedback is welcome - send bug reports, enhancements, checks, money
orders, etc. to the addresses below.

    Jef Poskanzer  jef@mail.acme.com  http://www.acme.com/jef/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>