7950eca690
This is a simple autoresponder for qmail. Mail is sent to help@my-company.com. An automatically generated response is sent back to the user with an address of "help@my-company.com". You can set the envelope sender to an empty string. However, some programs will parse the message for the "From:" field and send an autoresponse back to it. It is received at your autoresponder, and you now have a mail loop. This autoresponder also catches some other simple situations such as mail from a mailer-daemon, empty envelope sender, bulk precedence headers, etc.
21 lines
623 B
Makefile
21 lines
623 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2002/01/28 22:29:49 zuntum Exp $
|
|
#
|
|
|
|
DISTNAME= autorespond-2.0.2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.inter7.com/devel/
|
|
|
|
MAINTAINER= zuntum@netbsd.org
|
|
HOMEPAGE= http://www.inter7.com/devel/
|
|
COMMENT= simple autoresponder add-on package for qmail
|
|
|
|
post-patch:
|
|
${SED} "s,\/var\/qmail,${QMAILDIR}," ${WRKSRC}/autorespond.c \
|
|
> ${WRKSRC}/autorespond.c.done
|
|
${MV} ${WRKSRC}/autorespond.c.done ${WRKSRC}/autorespond.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/autorespond ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/autorespond.README
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|