mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
223be40eaa
- VMailMgr (short for Virtual MAIL ManaGeR) is a package of programs designed to manage multiple domains of mail addresses and mailboxes on a single host. It co-operates with qmail for mail delivery and program control. - It features: - A password checking interface between qmail-popup and qmail-pop3d which replaces the usual checkpassword, as well as an authentication module for Courier IMAP, that provide access to the virtual mailboxes by one of three methods: IP-based virtual server access (invisible to the POP3 user) username-based access (username-virtualuser) hostname-based access (virtualuser@virtual.host or virtualuser:virtual.host) - CDB-based password tables to speed up access for domains of any size. - Tools to setup a virtual domain, add and delete individual virtual users and aliases, and to change passwords. CGI programs to accomplish the above tasks from a set of web pages. - A native PHP library to compliment or replace the CGIs. - A daemon process that securely directs the operation of the CGIs and PHP code. - A separate delivery agent that automatically deals with any address inside a virtual domain from a single .qmail-default file. WWW: http://www.vmailmgr.org PR: ports/117509 Submitted by: Mij <mij@bitchx.it> (maintainer) Approved by: linimon (mentor)
38 lines
841 B
Makefile
38 lines
841 B
Makefile
# New ports collection makefile for: vmailmgr
|
|
# Date created: 24 October 2007
|
|
# Whom: Mij <mij@bitchx.it>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vmailmgr
|
|
PORTVERSION= 0.97
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.vmailmgr.org/current/ \
|
|
http://mirrors.dataloss.nl/vmailmgr.org/current/
|
|
|
|
MAINTAINER= mij@bitchx.it
|
|
COMMENT= Virtual domain manager for qmail
|
|
|
|
MAN1= checkvpw.1 vauthenticate.1 dumpvuser.1 \
|
|
listvdomain.1 vadduser.1 vchattr.1 vchforwards.1 \
|
|
vdeliver.1 vdeluser.1 vpasswd.1 vpasswds.1 vrehash.1 \
|
|
vsetup.1 vupgrade.1
|
|
|
|
MAN7= vmailmgr.7
|
|
MAN8= vmailmgrd.8
|
|
|
|
USE_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD= yes
|
|
AUTOMAKE_ARGS+= --add-missing -Wno-portability
|
|
USE_AUTOTOOLS= aclocal:110 autoconf:261 automake:110
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(PREFIX)
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|