summaryrefslogtreecommitdiff
path: root/mail/bulk_mailer/Makefile
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2000-12-05 12:48:36 +0000
committerabs <abs@pkgsrc.org>2000-12-05 12:48:36 +0000
commit13c33a17f6e4237d796984c96476917920e4e436 (patch)
tree9c25e66404a8a54b8464e01483800f5e9b6200a7 /mail/bulk_mailer/Makefile
parent59d28cc16d09c2c2d508ca948b0f78a7bc2b8788 (diff)
downloadpkgsrc-13c33a17f6e4237d796984c96476917920e4e436.tar.gz
Add bulk_mailer-1.13
bulk_mailer assists with "bulk" mailing, such as large majordomo lists under sendmail. For input, it takes a file of recipient addresses (one address per line) and a message (with headers already attached) to be sent to the recipients. It sorts the recipient list by reversed domain (so similar ones sort together), splits up the recipients into several groups containing no more than N domains each, creates an SMTP envelope for each group of recipients, and feeds that envelope to "/usr/lib/sendmail -bs". Splitting the envelopes up allows sendmail to perform delivery in parallel, so instead of having one large queue entry (for which sendmail might take awhile to get around to attempting delivery for some recipients), it has several smaller queue entries. Depending on your point-of-view, this can still be considered "cluttering up your mail queue", but it does seem to deliver messages more quickly to most recipients.
Diffstat (limited to 'mail/bulk_mailer/Makefile')
-rw-r--r--mail/bulk_mailer/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/mail/bulk_mailer/Makefile b/mail/bulk_mailer/Makefile
new file mode 100644
index 00000000000..ae0d3cbd3a5
--- /dev/null
+++ b/mail/bulk_mailer/Makefile
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/12/05 12:48:36 abs Exp $
+#
+
+DISTNAME= bulk_mailer-1.13
+CATEGORIES= mail
+MASTER_SITES= ftp://cs.utk.edu/pub/moore/bulk_mailer/
+
+MAINTAINER= abs@netbsd.org
+
+HAS_CONFIGURE= YES
+ALL_TARGET= bulk_mailer
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/bulk_mailer ${PREFIX}/bin/bulk_mailer
+ ${INSTALL_MAN} ${WRKSRC}/bulk_mailer.1 ${PREFIX}/man/man1/bulk_mailer.1
+
+.include "../../mk/bsd.pkg.mk"