diff options
author | demon <demon@FreeBSD.org> | 2003-07-11 18:03:02 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2003-07-11 18:03:02 +0800 |
commit | ddf7918b0d619681c516295d0ddf669094773c23 (patch) | |
tree | e159ce3d8502dce589f1f9f07cf16511d7a8d682 /mail | |
parent | e61d7ecbcb572a36b21a88537f3835ba93961503 (diff) | |
download | freebsd-ports-gnome-ddf7918b0d619681c516295d0ddf669094773c23.tar.gz freebsd-ports-gnome-ddf7918b0d619681c516295d0ddf669094773c23.tar.zst freebsd-ports-gnome-ddf7918b0d619681c516295d0ddf669094773c23.zip |
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.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/mini_sendmail/Makefile | 26 | ||||
-rw-r--r-- | mail/mini_sendmail/distinfo | 1 | ||||
-rw-r--r-- | mail/mini_sendmail/pkg-descr | 6 | ||||
-rw-r--r-- | mail/mini_sendmail/pkg-plist | 1 |
5 files changed, 35 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index e23e78e10899..cdfb517d1e6a 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -149,6 +149,7 @@ SUBDIR += mew2-xemacs21 SUBDIR += mew2-xemacs21-mule SUBDIR += mimedefang + SUBDIR += mini_sendmail SUBDIR += minimalist SUBDIR += ml SUBDIR += mmc diff --git a/mail/mini_sendmail/Makefile b/mail/mini_sendmail/Makefile new file mode 100644 index 000000000000..4034944a5f33 --- /dev/null +++ b/mail/mini_sendmail/Makefile @@ -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> diff --git a/mail/mini_sendmail/distinfo b/mail/mini_sendmail/distinfo new file mode 100644 index 000000000000..846a9261f76a --- /dev/null +++ b/mail/mini_sendmail/distinfo @@ -0,0 +1 @@ +MD5 (mini_sendmail-1.3.2.tar.gz) = f705a89b0b9aeaf28dbffbedee4cb1d3 diff --git a/mail/mini_sendmail/pkg-descr b/mail/mini_sendmail/pkg-descr new file mode 100644 index 000000000000..7980635160b3 --- /dev/null +++ b/mail/mini_sendmail/pkg-descr @@ -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/ diff --git a/mail/mini_sendmail/pkg-plist b/mail/mini_sendmail/pkg-plist new file mode 100644 index 000000000000..43487b0808d5 --- /dev/null +++ b/mail/mini_sendmail/pkg-plist @@ -0,0 +1 @@ +bin/mini_sendmail |