diff options
author | schmonz <schmonz> | 2005-01-09 03:21:07 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2005-01-09 03:21:07 +0000 |
commit | 71d0298e23dc639ab2884946804bbe139fcc27a0 (patch) | |
tree | 6e2edb640a86127968c88d62faa34063cebbf826 /mail/dbmail/Makefile | |
parent | 1c5df986c2ea6f7086ca63985d05c0242b1f9f98 (diff) | |
download | pkgsrc-71d0298e23dc639ab2884946804bbe139fcc27a0.tar.gz |
Initial import of dbmail-2.0.1.
Dbmail is the name of a group of programs that enable the possiblilty
of storing and retrieving mail messages from a database. Currently
MySQL and PostgreSQL can be used as database backends.
DBMail is made up of several components. A normal MTA (Postfix,
SendMail, QMail, Exim) is used for accepting messages. The MTA
hands the messages over to dbmail-smtp, using a pipe interface, or
dbmail-lmtpd, using LMTP (Local Mail Transport Protocol). These
programs take care of delivering the message into the database.
Messages can be retreived from the database using dbmail-pop3d,
using the POP3 protocol, and dbmail-imapd, using the IMAP4Rev1
protocol.
The whole email is stored in the database. That includes attachments.
The DBMail programs do not have to touch the filesystem to retreive
or insert emails. User information is also stored in the database,
so users do not need an account on the machines DBMail is running
on.
Diffstat (limited to 'mail/dbmail/Makefile')
-rw-r--r-- | mail/dbmail/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mail/dbmail/Makefile b/mail/dbmail/Makefile new file mode 100644 index 00000000000..4b958e70fc8 --- /dev/null +++ b/mail/dbmail/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/01/09 03:21:07 schmonz Exp $ +# + +DISTNAME= dbmail-2.0.1 +CATEGORIES= mail +MASTER_SITES= http://www.dbmail.org/download/ +EXTRACT_SUFX= .tgz + +MAINTAINER= schmonz@NetBSD.org +HOMEPAGE= http://www.dbmail.org/ +COMMENT= Store and retrieve mail messages from a database + +USE_BUILDLINK3= yes +USE_PKGLOCALEDIR= yes +GNU_CONFIGURE= yes +USE_GNU_TOOLS+= make +USE_LIBTOOL= yes + +PLIST_SUBST+= SQLDB=${SQLDB} + +SUBST_CLASSES+= sysconf +SUBST_STAGE.sysconf= do-configure +SUBST_FILES.sysconf= man/dbmail-imapd.8 man/dbmail-lmtpd.8 man/dbmail-pop3d.8 +SUBST_FILES.sysconf+= man/dbmail-smtp.1 man/dbmail-users.8 man/dbmail-util.8 +SUBST_FILES.sysconf+= dbmail.h +SUBST_SED.sysconf= -e 's|/etc/dbmail\.conf|${PKG_SYSCONFDIR}/dbmail.conf|g' +SUBST_MESSAGE.sysconf= "Fixing sysconf paths." + +.include "options.mk" + +.include "../../mk/bsd.pkg.mk" |