1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

New port: mini_sendmail.

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.
This commit is contained in:
Dmitry Sivachenko 2003-07-11 10:03:02 +00:00
parent d32ebd3141
commit 2c0a632ba8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=84660
5 changed files with 35 additions and 0 deletions

View File

@ -149,6 +149,7 @@
SUBDIR += mew2-xemacs21
SUBDIR += mew2-xemacs21-mule
SUBDIR += mimedefang
SUBDIR += mini_sendmail
SUBDIR += minimalist
SUBDIR += ml
SUBDIR += mmc

View File

@ -0,0 +1,26 @@
# Ports collection makefile for: mini_sendmail
# Date created: 11 July 2003
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mini_sendmail
PORTVERSION= 1.3.2
CATEGORIES+= mail ipv6
MASTER_SITES= http://www.acme.com/software/mini_sendmail/
MAINTAINER= demon@FreeBSD.org
COMMENT= Tiny MTA with only smart relay capability
MAN8= mini_sendmail.8
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} -static -o ${PORTNAME} ${PORTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MAN8PREFIX}/man/man8/
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (mini_sendmail-1.3.2.tar.gz) = f705a89b0b9aeaf28dbffbedee4cb1d3

View File

@ -0,0 +1,6 @@
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.
WWW: http://www.acme.com/software/mini_sendmail/

View File

@ -0,0 +1 @@
bin/mini_sendmail