Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Aug 2021 13:06:44 GMT
From:      Dima Panov <fluffy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: f3d1646dc102 - 2021Q3 - mail/postfixadmin: Update to 3.3.10 release (+)
Message-ID:  <202108231306.17ND6ihn065572@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2021Q3 has been updated by fluffy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f3d1646dc10206e9b5c4c2f2a7af0bd6d61ae2bb

commit f3d1646dc10206e9b5c4c2f2a7af0bd6d61ae2bb
Author:     Dima Panov <fluffy@FreeBSD.org>
AuthorDate: 2021-08-23 12:59:05 +0000
Commit:     Dima Panov <fluffy@FreeBSD.org>
CommitDate: 2021-08-23 13:06:12 +0000

    mail/postfixadmin: Update to 3.3.10 release (+)
    
    Upgrade from 3.2.x to 3.3+ requires generating a new setup hash.
    The post-ugprade visit to setup.php will walk you through this.
    
    Other changes:
    -XMLRPC support is moribund, so drop it from USE_PHP
    -Virtual vacation scripts are now optional, making building without
     perl5 possible
    -Optionally add imap to USE_PHP module for completeness
    -Default options changed for maximal out-of-the-box support
    
    PR:     257845
    (cherry picked from commit 65e5396ecad56fcb6a5d726493e44d5041688d8e)
---
 UPDATING                                     |  11 +++
 mail/postfixadmin/Makefile                   |  67 +++++++++-------
 mail/postfixadmin/distinfo                   |   6 +-
 mail/postfixadmin/files/patch-config.inc.php |  18 +++++
 mail/postfixadmin/pkg-plist                  | 116 ++++++++++++++++-----------
 5 files changed, 136 insertions(+), 82 deletions(-)

diff --git a/UPDATING b/UPDATING
index e9ae57bd4361..18348bc37cea 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,17 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20210823:
+  AFFECTS: users of mail/postfixadmin
+  AUTHOR: ports.maintainer@evilphi.com
+
+  The 3.2->3.3 upgrade requires generating a new setup password hash.
+  The normal post-upgrade visit to setup.php will walk you through the
+  steps.
+
+  For more information, see the "Version 3.3" section of the change log:
+  https://github.com/postfixadmin/postfixadmin/blob/postfixadmin-3.3.9/CHANGELOG.TXT
+
 20210628:
   AFFECTS: users of misc/openhab
   AUTHOR: netchild@FreeBSD.org
diff --git a/mail/postfixadmin/Makefile b/mail/postfixadmin/Makefile
index a1ab399a848a..a1480d121938 100644
--- a/mail/postfixadmin/Makefile
+++ b/mail/postfixadmin/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	postfixadmin
 DISTVERSIONPREFIX=	postfixadmin-
-DISTVERSION=	3.2.4
+DISTVERSION=	3.3.10
 CATEGORIES=	mail www
 
 MAINTAINER=	ports.maintainer@evilphi.com
@@ -11,55 +11,62 @@ COMMENT=	PHP web-based management tool for Postfix virtual domains and users
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/GPL-LICENSE.TXT
 
-RUN_DEPENDS+=	p5-DBI>=1.634:databases/p5-DBI \
-		p5-Email-Sender>=1.300031:mail/p5-Email-Sender \
-		p5-Email-Valid>=0.12:mail/p5-Email-Valid \
-		p5-Log-Dispatch>=1.79:devel/p5-Log-Dispatch \
-		p5-Log-Log4perl>=0.26:devel/p5-Log-Log4perl \
-		p5-MIME-EncWords>=0.040:mail/p5-MIME-EncWords
-
-USES=		cpe perl5 shebangfix php
-USE_GITHUB=	yes
+USES=		cpe shebangfix php
 CPE_VENDOR=	postfix_admin_project
 CPE_PRODUCT=	postfix_admin
+USE_GITHUB=	yes
+USE_PHP=	mbstring openssl pcre session spl
 
 NO_ARCH=	yes
 NO_BUILD=	yes
 
 SUB_FILES+=	pkg-message
-PLIST_SUB=	WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
+PLIST_SUB=	WWWGRP=${WWWGRP} \
+		WWWOWN=${WWWOWN}
 
-OPTIONS_DEFINE=	DOCS
-OPTIONS_MULTI=	DB
-OPTIONS_MULTI_DB=	MYSQL PGSQL SQLITE
-OPTIONS_DEFAULT=	PGSQL
+OPTIONS_DEFINE=		DOCS IMAP VACATION
+OPTIONS_DEFAULT=	IMAP MYSQL PGSQL SQLITE VACATION
+OPTIONS_MULTI=		DATABASE
+OPTIONS_MULTI_DATABASE=	MYSQL PGSQL SQLITE
+OPTIONS_SUB=		yes
 
-USE_PERL5=	run
+IMAP_DESC=	Support automated sub-folder creation for new mailboxes
+VACATION_DESC=	Install virtual vacation postfix script
 
-USE_PHP=	mbstring openssl pcre phar session spl xmlrpc
-
-MYSQL_USE=	php=mysqli
-PGSQL_USE=	php=pgsql
-SQLITE_USE=	php=sqlite3
+IMAP_USE=	php=imap
+MYSQL_USE=	php=pdo_mysql
+PGSQL_USE=	php=pdo_pgsql
+SQLITE_USE=	php=pdo_sqlite
+VACATION_RUN_DEPENDS=	p5-DBI>=1.634:databases/p5-DBI \
+			p5-Email-Sender>=1.300031:mail/p5-Email-Sender \
+			p5-Email-Simple>=1.998:mail/p5-Email-Simple \
+			p5-Email-Valid>=0.12:mail/p5-Email-Valid \
+			p5-Log-Log4perl>=0.26:devel/p5-Log-Log4perl \
+			p5-MIME-EncWords>=0.040:mail/p5-MIME-EncWords \
+			p5-Net-DNS>=1.32:dns/p5-Net-DNS \
+			p5-Try-Tiny>=0.30:lang/p5-Try-Tiny
+VACATION_USES=	perl5
 
 do-install:
-	@${MKDIR} ${STAGEDIR}${WWWDIR}
-	@${MKDIR} ${STAGEDIR}${WWWDIR}/templates_c
+	${MKDIR} ${STAGEDIR}${WWWDIR}
+	${MKDIR} ${STAGEDIR}${WWWDIR}/templates_c
 	${INSTALL_DATA} ${WRKSRC}/*.php ${STAGEDIR}${WWWDIR}
 .for i in configs languages lib model public scripts templates tests
-	@cd ${WRKSRC}/${i} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/${i}
+	(cd ${WRKSRC}/${i} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/${i})
 .endfor
-	@${MKDIR} ${STAGEDIR}${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/GPL-LICENSE.TXT ${STAGEDIR}${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/LICENSE.TXT ${STAGEDIR}${DATADIR}
-.for i in ADDITIONS VIRTUAL_VACATION
-	@cd ${WRKSRC}/${i} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/${i}
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	(cd ${WRKSRC}/ADDITIONS && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ADDITIONS)
+.for i in GPL-LICENSE.TXT LICENSE.TXT check_mailpass_expiration.sh password_expiration.sql postfixadmin.my.cnf
+	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}
 .endfor
 
 do-install-DOCS-on:
-	@cd ${WRKSRC}/DOCUMENTS && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+	(cd ${WRKSRC}/DOCUMENTS && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
 .for i in CHANGELOG.TXT INSTALL.TXT README.md
 	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
 .endfor
 
+do-install-VACATION-on:
+	(cd ${WRKSRC}/VIRTUAL_VACATION && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/VIRTUAL_VACATION)
+
 .include <bsd.port.mk>
diff --git a/mail/postfixadmin/distinfo b/mail/postfixadmin/distinfo
index 53637ab0cd96..78c220f35f08 100644
--- a/mail/postfixadmin/distinfo
+++ b/mail/postfixadmin/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1589363332
-SHA256 (postfixadmin-postfixadmin-postfixadmin-3.2.4_GH0.tar.gz) = f61a64b32052c46f40cba466e5e384de0efab8c343c91569bcc5ebfd3694811e
-SIZE (postfixadmin-postfixadmin-postfixadmin-3.2.4_GH0.tar.gz) = 1331185
+TIMESTAMP = 1629722986
+SHA256 (postfixadmin-postfixadmin-postfixadmin-3.3.10_GH0.tar.gz) = b162cef0968225b33c251d5e7e872ca93ec790f275b874659f34b2ec69b9812c
+SIZE (postfixadmin-postfixadmin-postfixadmin-3.3.10_GH0.tar.gz) = 1868298
diff --git a/mail/postfixadmin/files/patch-config.inc.php b/mail/postfixadmin/files/patch-config.inc.php
new file mode 100644
index 000000000000..610dff6bf1ba
--- /dev/null
+++ b/mail/postfixadmin/files/patch-config.inc.php
@@ -0,0 +1,18 @@
+--- config.inc.php.orig	2021-08-09 08:41:35 UTC
++++ config.inc.php
+@@ -210,10 +210,11 @@ $CONF['authlib_default_flavor'] = 'md5raw';
+ // for dovecot 1.x
+ // $CONF['dovecotpw'] = "/usr/sbin/dovecotpw";
+ // for dovecot 2.x (dovecot 2.0.0 - 2.0.7 is not supported!)
+-$CONF['dovecotpw'] = "/usr/sbin/doveadm pw";
+-if(@file_exists('/usr/bin/doveadm')) { // @ to silence openbase_dir stuff; see https://github.com/postfixadmin/postfixadmin/issues/171
+-    $CONF['dovecotpw'] = "/usr/bin/doveadm pw"; # debian
+-}
++#$CONF['dovecotpw'] = "/usr/sbin/doveadm pw";
++#if(@file_exists('/usr/bin/doveadm')) { // @ to silence openbase_dir stuff; see https://github.com/postfixadmin/postfixadmin/issues/171
++#    $CONF['dovecotpw'] = "/usr/bin/doveadm pw"; # debian
++#}
++$CONF['dovecotpw'] = "/usr/local/sbin/dovecotpw"; # FreeBSD
+ 
+ // Password validation
+ // New/changed passwords will be validated using all regular expressions in the array.
diff --git a/mail/postfixadmin/pkg-plist b/mail/postfixadmin/pkg-plist
index 67bb9b08b3f6..d801ffd1c05a 100644
--- a/mail/postfixadmin/pkg-plist
+++ b/mail/postfixadmin/pkg-plist
@@ -2,13 +2,16 @@
 %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.TXT
 %%PORTDOCS%%%%DOCSDIR%%/DOVECOT.txt
 %%PORTDOCS%%%%DOCSDIR%%/FAQ.txt
+%%PORTDOCS%%%%DOCSDIR%%/HASHING.md
 %%PORTDOCS%%%%DOCSDIR%%/HORDE.txt
 %%PORTDOCS%%%%DOCSDIR%%/INSTALL.TXT
 %%PORTDOCS%%%%DOCSDIR%%/LANGUAGE.txt
 %%PORTDOCS%%%%DOCSDIR%%/POSTFIXADMIN.txt
 %%PORTDOCS%%%%DOCSDIR%%/POSTFIX_CONF.txt
+%%PORTDOCS%%%%DOCSDIR%%/Password_Expiration.md
 %%PORTDOCS%%%%DOCSDIR%%/Postfix-Dovecot-Postgresql-Example.md
 %%PORTDOCS%%%%DOCSDIR%%/README.md
+%%PORTDOCS%%%%DOCSDIR%%/README.password_expiration
 %%PORTDOCS%%%%DOCSDIR%%/SECURITY.txt
 %%PORTDOCS%%%%DOCSDIR%%/SUPERADMIN.txt
 %%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt
@@ -23,7 +26,7 @@
 %%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-change-forward.jpg
 %%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-overview.jpg
 %%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-vacation.jpg
-%%DATADIR%%/ADDITIONS/README.TXT
+%%DATADIR%%/ADDITIONS/README.md
 %%DATADIR%%/ADDITIONS/change_password.tgz
 %%DATADIR%%/ADDITIONS/cleanupdirs.pl
 %%DATADIR%%/ADDITIONS/convert-passwd-to-postfixadmin.pl
@@ -86,18 +89,21 @@
 %%DATADIR%%/ADDITIONS/virtualmaildel.php
 %%DATADIR%%/GPL-LICENSE.TXT
 %%DATADIR%%/LICENSE.TXT
-%%DATADIR%%/VIRTUAL_VACATION/Contributions.txt
-%%DATADIR%%/VIRTUAL_VACATION/FILTER_README
-%%DATADIR%%/VIRTUAL_VACATION/INSTALL.md
-%%DATADIR%%/VIRTUAL_VACATION/tests/asterisk-email.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/facebook.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/mail-myself.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/mailing-list.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/spam.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/teodor-smtp-envelope-headers.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/test-email.txt
-%%DATADIR%%/VIRTUAL_VACATION/tests/test.sh
-%%DATADIR%%/VIRTUAL_VACATION/vacation.pl
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/Contributions.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/FILTER_README
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/INSTALL.md
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/asterisk-email.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/facebook.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/mail-myself.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/mailing-list.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/spam.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/teodor-smtp-envelope-headers.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/test-email.txt
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/tests/test.sh
+%%VACATION%%%%DATADIR%%/VIRTUAL_VACATION/vacation.pl
+%%DATADIR%%/check_mailpass_expiration.sh
+%%DATADIR%%/password_expiration.sql
+%%DATADIR%%/postfixadmin.my.cnf
 %%WWWDIR%%/common.php
 %%WWWDIR%%/config.inc.php
 %%WWWDIR%%/configs/menu.conf
@@ -116,6 +122,7 @@
 %%WWWDIR%%/languages/fi.lang
 %%WWWDIR%%/languages/fo.lang
 %%WWWDIR%%/languages/fr.lang
+%%WWWDIR%%/languages/gl.lang
 %%WWWDIR%%/languages/hr.lang
 %%WWWDIR%%/languages/hu.lang
 %%WWWDIR%%/languages/index.php
@@ -131,6 +138,7 @@
 %%WWWDIR%%/languages/nn.lang
 %%WWWDIR%%/languages/pl.lang
 %%WWWDIR%%/languages/pt-br.lang
+%%WWWDIR%%/languages/pt-pt.lang
 %%WWWDIR%%/languages/ro.lang
 %%WWWDIR%%/languages/ru.lang
 %%WWWDIR%%/languages/sk.lang
@@ -138,10 +146,7 @@
 %%WWWDIR%%/languages/sv.lang
 %%WWWDIR%%/languages/tr.lang
 %%WWWDIR%%/languages/tw.lang
-%%WWWDIR%%/lib/random_compat.phar
-%%WWWDIR%%/lib/random_compat.phar.pubkey
-%%WWWDIR%%/lib/random_compat.txt
-%%WWWDIR%%/lib/smarty.inc.php
+%%WWWDIR%%/languages/ua.lang
 %%WWWDIR%%/lib/smarty/COPYING.lib
 %%WWWDIR%%/lib/smarty/libs/Autoloader.php
 %%WWWDIR%%/lib/smarty/libs/Smarty.class.php
@@ -361,34 +366,42 @@
 %%WWWDIR%%/model/Config.php
 %%WWWDIR%%/model/DomainHandler.php
 %%WWWDIR%%/model/FetchmailHandler.php
+%%WWWDIR%%/model/Login.php
 %%WWWDIR%%/model/MailboxHandler.php
 %%WWWDIR%%/model/PFAHandler.php
+%%WWWDIR%%/model/PFASmarty.php
 %%WWWDIR%%/model/Shell.php
 %%WWWDIR%%/model/VacationHandler.php
 %%WWWDIR%%/public/backup.php
 %%WWWDIR%%/public/broadcast-message.php
-%%WWWDIR%%/public/calendar.js
 %%WWWDIR%%/public/common.php
-%%WWWDIR%%/public/css/calendar.css
-%%WWWDIR%%/public/css/default.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap-datetimepicker.min.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap-theme.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap.css.map
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap.min.css
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/css/bootstrap.min.css.map
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.eot
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.svg
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.ttf
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff2
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/bootstrap-datetimepicker.min.js
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/bootstrap.js
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/bootstrap.min.js
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/moment-with-locales.min.js
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/moment.js
+%%WWWDIR%%/public/css/bootstrap-3.4.1-dist/js/npm.js
+%%WWWDIR%%/public/css/bootstrap.css
 %%WWWDIR%%/public/delete.php
 %%WWWDIR%%/public/edit.php
 %%WWWDIR%%/public/editactive.php
 %%WWWDIR%%/public/images/arrow-l.png
 %%WWWDIR%%/public/images/arrow-r.png
 %%WWWDIR%%/public/images/arrow-u.png
-%%WWWDIR%%/public/images/calendar/cal.gif
-%%WWWDIR%%/public/images/calendar/next_mon.gif
-%%WWWDIR%%/public/images/calendar/next_year.gif
-%%WWWDIR%%/public/images/calendar/no_cal.gif
-%%WWWDIR%%/public/images/calendar/pixel.gif
-%%WWWDIR%%/public/images/calendar/prev_mon.gif
-%%WWWDIR%%/public/images/calendar/prev_year.gif
-%%WWWDIR%%/public/images/calendar/shade_bl.png
-%%WWWDIR%%/public/images/calendar/shade_bm.png
-%%WWWDIR%%/public/images/calendar/shade_br.png
-%%WWWDIR%%/public/images/calendar/shade_mr.png
-%%WWWDIR%%/public/images/calendar/shade_tr.png
 %%WWWDIR%%/public/images/favicon.ico
 %%WWWDIR%%/public/images/index.php
 %%WWWDIR%%/public/images/logo-default.png
@@ -399,6 +412,7 @@
 %%WWWDIR%%/public/images/postfixadmin2.xcf
 %%WWWDIR%%/public/images/quota-colors.png
 %%WWWDIR%%/public/index.php
+%%WWWDIR%%/public/jquery-1.12.4.min.js
 %%WWWDIR%%/public/list-virtual.php
 %%WWWDIR%%/public/list.php
 %%WWWDIR%%/public/login.php
@@ -408,22 +422,7 @@
 %%WWWDIR%%/public/sendmail.php
 %%WWWDIR%%/public/setup.php
 %%WWWDIR%%/public/upgrade.php
-%%WWWDIR%%/public/users/calendar.js
-%%WWWDIR%%/public/users/css/calendar.css
-%%WWWDIR%%/public/users/css/default.css
 %%WWWDIR%%/public/users/edit-alias.php
-%%WWWDIR%%/public/users/images/calendar/cal.gif
-%%WWWDIR%%/public/users/images/calendar/next_mon.gif
-%%WWWDIR%%/public/users/images/calendar/next_year.gif
-%%WWWDIR%%/public/users/images/calendar/no_cal.gif
-%%WWWDIR%%/public/users/images/calendar/pixel.gif
-%%WWWDIR%%/public/users/images/calendar/prev_mon.gif
-%%WWWDIR%%/public/users/images/calendar/prev_year.gif
-%%WWWDIR%%/public/users/images/calendar/shade_bl.png
-%%WWWDIR%%/public/users/images/calendar/shade_bm.png
-%%WWWDIR%%/public/users/images/calendar/shade_br.png
-%%WWWDIR%%/public/users/images/calendar/shade_mr.png
-%%WWWDIR%%/public/users/images/calendar/shade_tr.png
 %%WWWDIR%%/public/users/index.php
 %%WWWDIR%%/public/users/login.php
 %%WWWDIR%%/public/users/main.php
@@ -455,7 +454,6 @@
 %%WWWDIR%%/templates/login.tpl
 %%WWWDIR%%/templates/main.tpl
 %%WWWDIR%%/templates/menu.tpl
-%%WWWDIR%%/templates/message.tpl
 %%WWWDIR%%/templates/password-change.tpl
 %%WWWDIR%%/templates/password-recover.tpl
 %%WWWDIR%%/templates/password.tpl
@@ -465,12 +463,32 @@
 %%WWWDIR%%/templates/users_menu.tpl
 %%WWWDIR%%/templates/vacation.tpl
 %%WWWDIR%%/templates/viewlog.tpl
+%%WWWDIR%%/tests/AdminHandlerTest.php
+%%WWWDIR%%/tests/AdminpasswordHandlerTest.php
+%%WWWDIR%%/tests/AliasHandlerTest.php
+%%WWWDIR%%/tests/AliasdomainHandlerTest.php
+%%WWWDIR%%/tests/CheckDomainTest.php
+%%WWWDIR%%/tests/CheckEmailTest.php
+%%WWWDIR%%/tests/CheckLanguageTest.php
+%%WWWDIR%%/tests/CheckOwnerTest.php
+%%WWWDIR%%/tests/ConfigTest.php
+%%WWWDIR%%/tests/CreatePageBrowserTest.php
+%%WWWDIR%%/tests/DbBasicTest.php
+%%WWWDIR%%/tests/DomainHandlerTest.php
+%%WWWDIR%%/tests/FetchmailHandlerTest.php
 %%WWWDIR%%/tests/GeneratePasswordTest.php
+%%WWWDIR%%/tests/ListAdminsTest.php
+%%WWWDIR%%/tests/ListDomainsForAdminTest.php
+%%WWWDIR%%/tests/ListDomainsTest.php
+%%WWWDIR%%/tests/LoginTest.php
+%%WWWDIR%%/tests/MailboxHandlerTest.php
 %%WWWDIR%%/tests/PacryptTest.php
+%%WWWDIR%%/tests/PasswordValidationCallableTest.php
 %%WWWDIR%%/tests/RemoteAliasTest.php
 %%WWWDIR%%/tests/RemoteTest.php
 %%WWWDIR%%/tests/RemoteUserTest.php
 %%WWWDIR%%/tests/RemoteVacationTest.php
+%%WWWDIR%%/tests/RemoveFromArrayTest.php
 %%WWWDIR%%/tests/ValidatePasswordTest.php
-%%WWWDIR%%/tests/common.php
+%%WWWDIR%%/tests/bootstrap.php
 @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/templates_c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108231306.17ND6ihn065572>