Add port mail/fdm:

fdm is a simple, lightweight replacement for mail fetch, filter and
delivery programs such as fetchmail and procmail. It can currently
fetch using POP3, POP3S or from stdin, and deliver to a pipe, file,
maildir, mbox or SMTP server, based on regexps.

WWW: http://fdm.sourceforge.net/
Author: Nicholas Marriott <nicm@users.sourceforge.net>
This commit is contained in:
Andrew Pantyukhin 2006-08-25 12:54:09 +00:00
parent 2ace452a38
commit c876c8b227
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171381
5 changed files with 52 additions and 0 deletions

View File

@ -108,6 +108,7 @@
SUBDIR += ezmlm-idx
SUBDIR += ezmlm-web
SUBDIR += faces
SUBDIR += fdm
SUBDIR += fetchmail
SUBDIR += fetchyahoo
SUBDIR += filtermail

31
mail/fdm/Makefile Normal file
View File

@ -0,0 +1,31 @@
# New ports collection makefile for: fdm
# Date created: 25 August 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= fdm
PORTVERSION= 0.1
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Fetches and delivers mail
PLIST_FILES= bin/fdm etc/fdm.conf.sample
PORTDOCS= README
CFLAGS= -I/usr/include/openssl
MAN1= fdm.1
MAN5= fdm.conf.5
post-install:
@${INSTALL_DATA} ${WRKSRC}/fdm.conf ${PREFIX}/etc/fdm.conf.sample
.ifndef NOPORTDOCS
@${INSTALL} -d ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
.endif
.include <bsd.port.mk>

3
mail/fdm/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (fdm-0.1.tar.gz) = ee3b6a9ed07ff5d0723d313928dd9d89
SHA256 (fdm-0.1.tar.gz) = ac29c9edd9f13281701cad6e286d97c07e79a11fd0b900f036c390a868d879e2
SIZE (fdm-0.1.tar.gz) = 34931

View File

@ -0,0 +1,10 @@
--- ./parse.y.orig Fri Aug 25 16:42:22 2006
+++ ./parse.y Fri Aug 25 16:42:32 2006
@@ -21,6 +21,7 @@
%{
#include <sys/types.h>
#include <sys/socket.h>
+#include <sys/limits.h>
#include <ctype.h>
#include <grp.h>

7
mail/fdm/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
fdm is a simple, lightweight replacement for mail fetch, filter and
delivery programs such as fetchmail and procmail. It can currently
fetch using POP3, POP3S or from stdin, and deliver to a pipe, file,
maildir, mbox or SMTP server, based on regexps.
WWW: http://fdm.sourceforge.net/
Author: Nicholas Marriott <nicm@users.sourceforge.net>