mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Add msmtpqueue, a set of scripts to help queueing and sending mails
on non-permanent connections like dial-up using msmtp. PR: ports/68055 Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
This commit is contained in:
parent
cc9734cd5a
commit
1d57d8f799
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111959
4 changed files with 40 additions and 0 deletions
|
@ -200,6 +200,7 @@
|
||||||
SUBDIR += msgconvert
|
SUBDIR += msgconvert
|
||||||
SUBDIR += msmtp
|
SUBDIR += msmtp
|
||||||
SUBDIR += msmtp-devel
|
SUBDIR += msmtp-devel
|
||||||
|
SUBDIR += msmtpqueue
|
||||||
SUBDIR += mulberry
|
SUBDIR += mulberry
|
||||||
SUBDIR += mutt
|
SUBDIR += mutt
|
||||||
SUBDIR += mutt-devel
|
SUBDIR += mutt-devel
|
||||||
|
|
32
mail/msmtpqueue/Makefile
Normal file
32
mail/msmtpqueue/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# New ports collection makefile for: msmtpqueue
|
||||||
|
# Date created: 2004-06-17
|
||||||
|
# Whom: Roman Bogorodskiy <bogorodskiy@inbox.ru>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= msmtpqueue
|
||||||
|
PORTVERSION= 0.3
|
||||||
|
CATEGORIES= mail
|
||||||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
|
MASTER_SITE_SUBDIR= msmtp
|
||||||
|
|
||||||
|
MAINTAINER= bogorodskiy@inbox.ru
|
||||||
|
COMMENT= Scripts to queue mails with msmtp
|
||||||
|
|
||||||
|
RUN_DEPENDS= msmtp:${PORTSDIR}/mail/msmtp
|
||||||
|
|
||||||
|
NO_BUILD= yes
|
||||||
|
|
||||||
|
PLIST_FILES= bin/msmtp-enqueue.sh bin/msmtp-runqueue.sh
|
||||||
|
PORTDOCS= README
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_SCRIPT} ${WRKSRC}/msmtp-enqueue.sh ${PREFIX}/bin
|
||||||
|
${INSTALL_SCRIPT} ${WRKSRC}/msmtp-runqueue.sh ${PREFIX}/bin
|
||||||
|
.if !defined(NOPORTDOCS)
|
||||||
|
${MKDIR} ${DOCSDIR}
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
mail/msmtpqueue/distinfo
Normal file
2
mail/msmtpqueue/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MD5 (msmtpqueue-0.3.tar.gz) = 96b704079eed75fd51bb779d20234049
|
||||||
|
SIZE (msmtpqueue-0.3.tar.gz) = 1821
|
5
mail/msmtpqueue/pkg-descr
Normal file
5
mail/msmtpqueue/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
These scripts may be useful for dialup connections: You can "send" all your
|
||||||
|
mails offline (they will be queued by msmtp-enqueue.sh) and really send them
|
||||||
|
all later when you are online (by running msmtp-runqueue.sh).
|
||||||
|
|
||||||
|
WWW: http://msmtp.sf.net/
|
Loading…
Add table
Reference in a new issue