diff options
author | pav <pav@FreeBSD.org> | 2004-11-05 13:43:04 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-11-05 13:43:04 +0000 |
commit | 02e19dd1647a397c49dd84176b15875546caa55c (patch) | |
tree | 26462e46f7a9e73185284b1250051c921e82f5af /mail/pear-Mail_Queue | |
parent | 5074b2568957fb2435e8d9a1f2a2b702e242ae6f (diff) | |
download | FreeBSD-ports-02e19dd1647a397c49dd84176b15875546caa55c.zip FreeBSD-ports-02e19dd1647a397c49dd84176b15875546caa55c.tar.gz |
Add pear-Mail_Queue, class to handle mail queue managment.
Wrapper for PEAR::Mail and PEAR::DB (or PEAR::MDB/MDB2).
It can load, save and send saved mails in background
and also backup some mails.
PR: ports/73560
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net>
Diffstat (limited to 'mail/pear-Mail_Queue')
-rw-r--r-- | mail/pear-Mail_Queue/Makefile | 27 | ||||
-rw-r--r-- | mail/pear-Mail_Queue/distinfo | 2 | ||||
-rw-r--r-- | mail/pear-Mail_Queue/pkg-descr | 11 |
3 files changed, 40 insertions, 0 deletions
diff --git a/mail/pear-Mail_Queue/Makefile b/mail/pear-Mail_Queue/Makefile new file mode 100644 index 0000000..5b44971 --- /dev/null +++ b/mail/pear-Mail_Queue/Makefile @@ -0,0 +1,27 @@ +# Ports collection makefile for: pear-Mail_Queue +# Date created: 05 November 2004 +# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) +# +# $FreeBSD$ +# + +PORTNAME= Mail_Queue +PORTVERSION= 1.1.3 +CATEGORIES= mail www pear + +MAINTAINER= antonio@php.net +COMMENT= PEAR class for put mails in queue and send them later in background + +BUILD_DEPENDS= ${PEARDIR}/Mail.php:${PORTSDIR}/mail/pear-Mail +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Mail +FILES= Queue.php Queue/Body.php Queue/Container.php \ + Queue/Container/db.php Queue/Container/mdb.php \ + Queue/Container/mdb2.php +DOCS= add_example.php base.php mdb_mail_queue_schema.xml \ + mysql.sql pgsql.sql send_example.php TODO README + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/mail/pear-Mail_Queue/distinfo b/mail/pear-Mail_Queue/distinfo new file mode 100644 index 0000000..46ff215 --- /dev/null +++ b/mail/pear-Mail_Queue/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Mail_Queue-1.1.3.tgz) = e1eae2fd188f1926a83b97cdcf0c239e +SIZE (PEAR/Mail_Queue-1.1.3.tgz) = 14721 diff --git a/mail/pear-Mail_Queue/pkg-descr b/mail/pear-Mail_Queue/pkg-descr new file mode 100644 index 0000000..8eb8346 --- /dev/null +++ b/mail/pear-Mail_Queue/pkg-descr @@ -0,0 +1,11 @@ +Class to handle mail queue managment. +Wrapper for PEAR::Mail and PEAR::DB (or PEAR::MDB/MDB2). +It can load, save and send saved mails in background +and also backup some mails. + +The Mail_Queue class puts mails in a temporary container, +waiting to be fed to the MTA (Mail Transport Agent), +and sends them later (e.g. a certain amount of mails +every few minutes) by crontab or in other way. + +WWW: http://pear.php.net/package/Mail_Queue/ |