diff options
author | Mel Pilgrim <ports.maintainer@evilphi.com> | 2021-10-25 16:36:01 +0900 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2021-10-26 16:21:22 +0900 |
commit | 3d87bd0fc819729e9089ce28e097e30d7b92d950 (patch) | |
tree | 114c8f54e357f2e8e64f934f93b6858c2e32dfb3 /mail/postfixadmin33 | |
parent | c252fd8222e2fb45c941c99648e6a2ab5e0bdaf8 (diff) | |
download | freebsd-ports-3d87bd0fc819729e9089ce28e097e30d7b92d950.zip |
mail/postfixadmin33(-lite): Add new ports
* Add mail/postfixadmin33 as PostfixAdmin 3.3.x release
* Add mail/postfixadmin33-lite as slave port of mail/postfixadmin33
PR: 258651
Approved by: ygy (mentor)
Differential Revision: https://reviews.freebsd.org/D32637
Diffstat (limited to 'mail/postfixadmin33')
-rw-r--r-- | mail/postfixadmin33/Makefile | 83 | ||||
-rw-r--r-- | mail/postfixadmin33/distinfo | 3 | ||||
-rw-r--r-- | mail/postfixadmin33/files/patch-config.inc.php | 18 | ||||
-rw-r--r-- | mail/postfixadmin33/files/pkg-message.in | 23 | ||||
-rw-r--r-- | mail/postfixadmin33/pkg-descr | 16 | ||||
-rw-r--r-- | mail/postfixadmin33/pkg-plist | 493 |
6 files changed, 636 insertions, 0 deletions
diff --git a/mail/postfixadmin33/Makefile b/mail/postfixadmin33/Makefile new file mode 100644 index 000000000000..980a24009de7 --- /dev/null +++ b/mail/postfixadmin33/Makefile @@ -0,0 +1,83 @@ +PORTNAME= postfixadmin33 +DISTVERSIONPREFIX= postfixadmin- +DISTVERSION= 3.3.10 +CATEGORIES= mail www +.if defined(_PFA_LITE) +PKGNAMESUFFIX= -lite${PHP_PKGNAMESUFFIX} +.else +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} +.endif +DISTNAME= postfixadmin + +MAINTAINER= ports.maintainer@evilphi.com +COMMENT= PHP web-based management tool for Postfix virtual domains and users + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/GPL-LICENSE.TXT + +USES= cpe php:flavors shebangfix +CPE_VENDOR= postfix_admin_project +CPE_PRODUCT= postfix_admin +USE_GITHUB= yes +GH_ACCOUNT= ${DISTNAME} +GH_PROJECT= ${DISTNAME} +USE_PHP= mbstring openssl pcre session spl + +NO_ARCH= yes +NO_BUILD= yes + +SUB_FILES+= pkg-message +PLIST_SUB= WWWGRP=${WWWGRP} \ + WWWOWN=${WWWOWN} + +OPTIONS_DEFINE= ADDONS DOCS IMAP +.if defined(_PFA_LITE) +OPTIONS_DEFAULT= SQLITE +.else +OPTIONS_DEFAULT= ADDONS IMAP SQLITE +.endif +OPTIONS_MULTI= DATABASE +OPTIONS_MULTI_DATABASE= MYSQL PGSQL SQLITE +OPTIONS_SUB= yes + +ADDONS_DESC= Include add-ons and related Perl dependencies +IMAP_DESC= Support automated sub-folder creation for new mailboxes + +ADDONS_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-LockFile-Simple>=0.208:devel/p5-LockFile-Simple \ + 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 +ADDONS_USES= gettext perl5 +IMAP_USE= PHP=imap +MYSQL_USE= PHP=pdo_mysql +PGSQL_USE= PHP=pdo_pgsql +SQLITE_USE= PHP=pdo_sqlite + +do-install: + ${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}) +.endfor + ${MKDIR} ${STAGEDIR}${DATADIR} +.for i in GPL-LICENSE.TXT LICENSE.TXT password_expiration.sql postfixadmin.my.cnf + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR} +.endfor + +do-install-ADDONS-on: + (cd ${WRKSRC}/ADDITIONS && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ADDITIONS) + (cd ${WRKSRC}/VIRTUAL_VACATION && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/VIRTUAL_VACATION) + +do-install-DOCS-on: + (cd ${WRKSRC}/DOCUMENTS && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) +.for i in CHANGELOG.TXT INSTALL.TXT README.md + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} +.endfor + +.include <bsd.port.mk> diff --git a/mail/postfixadmin33/distinfo b/mail/postfixadmin33/distinfo new file mode 100644 index 000000000000..4aacb6e9ab21 --- /dev/null +++ b/mail/postfixadmin33/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1632105177 +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/postfixadmin33/files/patch-config.inc.php b/mail/postfixadmin33/files/patch-config.inc.php new file mode 100644 index 000000000000..9fade3e9ea4a --- /dev/null +++ b/mail/postfixadmin33/files/patch-config.inc.php @@ -0,0 +1,18 @@ +--- config.inc.php.orig 2021-08-09 14:34:09 UTC ++++ config.inc.php +@@ -212,10 +212,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/postfixadmin33/files/pkg-message.in b/mail/postfixadmin33/files/pkg-message.in new file mode 100644 index 000000000000..9b1f449d5b69 --- /dev/null +++ b/mail/postfixadmin33/files/pkg-message.in @@ -0,0 +1,23 @@ +[ +{ type: install + message: <<EOM +If you are upgrading, you may need to update your existing database. +You can do so by browsing to [URL]/setup.php where [URL] is the +postfixadmin root. + +To avoid checksum errors when uninstalling or upgrading postfixadmin, +do not edit config.inc.php. Instead, put your configuration settings +in config.local.php in the postfixadmin webroot. That file will be +included automatically by config.inc.php. + +For detailed information, please see the complete installation steps +in %%DOCSDIR%%/INSTALL.TXT. +EOM +} +{ type: upgrade + message: <<EOM +For upgrade-related details, including configuration changes, see +%%DOCSDIR%%/CHANGELOG.TXT. +EOM +} +] diff --git a/mail/postfixadmin33/pkg-descr b/mail/postfixadmin33/pkg-descr new file mode 100644 index 000000000000..bad8bd2a491c --- /dev/null +++ b/mail/postfixadmin33/pkg-descr @@ -0,0 +1,16 @@ +Postfix Admin is a web-based management tool written in PHP for +Postfix with Postfix-style Virtual Domains using MySQL or +PostgreSQL lookups. Postfix Admin is known to work on Apache +and Lighttpd, but is designed to work on any web server with +PHP 5.1.2+ support. + +Postfix Admin features: + +- Virtual Mailboxes, Virtual Aliases and Forwarders; +- Domain-to-Domain Forwarding (Catch-All Aliases); +- Vacation (auto-responder) for Virtual Mailboxes; +- Quota, Alias & Mailbox limits per domain; +- Backup MX; +- Packaged with over 25 languages. + +WWW: http://www.postfixadmin.org/ diff --git a/mail/postfixadmin33/pkg-plist b/mail/postfixadmin33/pkg-plist new file mode 100644 index 000000000000..dfea547a07b9 --- /dev/null +++ b/mail/postfixadmin33/pkg-plist @@ -0,0 +1,493 @@ +%%PORTDOCS%%%%DOCSDIR%%/BACKUP_MX.txt +%%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 +%%PORTDOCS%%%%DOCSDIR%%/screenshots/README.txt +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-admin-create-alias.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-admin-create-domain.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-admin-create-mailbox.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-admin-domain-list.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-admin-virtual-list.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-inital-welcome.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-mail-admin-login.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-change-forward.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-overview.jpg +%%PORTDOCS%%%%DOCSDIR%%/screenshots/postfixadmin-user-vacation.jpg +%%ADDONS%%%%DATADIR%%/ADDITIONS/README.md +%%ADDONS%%%%DATADIR%%/ADDITIONS/change_password.tgz +%%ADDONS%%%%DATADIR%%/ADDITIONS/cleanupdirs.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/convert-passwd-to-postfixadmin.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/Changelog +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/README-ES.txt +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/README.txt +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/cyrus-mailbox-postcreation.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/cyrus-mailbox-postdelete.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/cyrus-mailbox-postedit.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/cyrus/cyrus.conf +%%ADDONS%%%%DATADIR%%/ADDITIONS/delete-mailq-by-domain.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/fetchmail.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/import_users_from_csv.py +%%ADDONS%%%%DATADIR%%/ADDITIONS/mailbox_remover.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/mkeveryone.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/pfa_maildir_cleanup.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/postfixadmin-domain-postdeletion.sh +%%ADDONS%%%%DATADIR%%/ADDITIONS/postfixadmin-mailbox-postcreation.sh +%%ADDONS%%%%DATADIR%%/ADDITIONS/postfixadmin-mailbox-postdeletion.sh +%%ADDONS%%%%DATADIR%%/ADDITIONS/quota_usage.pl +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/INSTALL +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/LICENSE.txt +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/README.md +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/common.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/config.php.sample +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/README.Debian +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/changelog +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/conffiles +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/control +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/copyright +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/docs +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/files +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/postfixadmin-squirrelmail.dirs +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/postinst +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/debian/rules +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/functions.inc.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/index.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/build.sh +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/cs_CZ/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/cs_CZ/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/da_DK/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/da_DK/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/de_DE/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/de_DE/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/hu_HU/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/hu_HU/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/it_IT/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/nl_NL/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/nl_NL/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/pl_PL/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/pl_PL/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/pt_BR/LC_MESSAGES/postfixadmin.mo +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/locale/pt_BR/LC_MESSAGES/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/po/postfixadmin.po +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/postfixadmin_changepass.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/postfixadmin_forward.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/postfixadmin_vacation.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/setup.php +%%ADDONS%%%%DATADIR%%/ADDITIONS/squirrelmail-plugin/version +%%ADDONS%%%%DATADIR%%/ADDITIONS/virtualmaildel.php +%%DATADIR%%/GPL-LICENSE.TXT +%%DATADIR%%/LICENSE.TXT +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/Contributions.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/FILTER_README +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/INSTALL.md +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/asterisk-email.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/facebook.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/mail-myself.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/mailing-list.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/spam.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/teodor-smtp-envelope-headers.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/test-email.txt +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/tests/test.sh +%%ADDONS%%%%DATADIR%%/VIRTUAL_VACATION/vacation.pl +%%DATADIR%%/password_expiration.sql +%%DATADIR%%/postfixadmin.my.cnf +%%WWWDIR%%/common.php +%%WWWDIR%%/config.inc.php +%%WWWDIR%%/configs/menu.conf +%%WWWDIR%%/functions.inc.php +%%WWWDIR%%/index.php +%%WWWDIR%%/languages/bg.lang +%%WWWDIR%%/languages/ca.lang +%%WWWDIR%%/languages/cn.lang +%%WWWDIR%%/languages/cs.lang +%%WWWDIR%%/languages/da.lang +%%WWWDIR%%/languages/de.lang +%%WWWDIR%%/languages/en.lang +%%WWWDIR%%/languages/es.lang +%%WWWDIR%%/languages/et.lang +%%WWWDIR%%/languages/eu.lang +%%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 +%%WWWDIR%%/languages/is.lang +%%WWWDIR%%/languages/it.lang +%%WWWDIR%%/languages/ja.lang +%%WWWDIR%%/languages/language-update.sh +%%WWWDIR%%/languages/language.php +%%WWWDIR%%/languages/lt.lang +%%WWWDIR%%/languages/mk.lang +%%WWWDIR%%/languages/nb.lang +%%WWWDIR%%/languages/nl.lang +%%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 +%%WWWDIR%%/languages/sl.lang +%%WWWDIR%%/languages/sv.lang +%%WWWDIR%%/languages/tr.lang +%%WWWDIR%%/languages/tw.lang +%%WWWDIR%%/languages/ua.lang +%%WWWDIR%%/lib/smarty/COPYING.lib +%%WWWDIR%%/lib/smarty/libs/Autoloader.php +%%WWWDIR%%/lib/smarty/libs/Smarty.class.php +%%WWWDIR%%/lib/smarty/libs/SmartyBC.class.php +%%WWWDIR%%/lib/smarty/libs/bootstrap.php +%%WWWDIR%%/lib/smarty/libs/debug.tpl +%%WWWDIR%%/lib/smarty/libs/plugins/block.textformat.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.counter.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.cycle.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.fetch.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_checkboxes.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_image.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_options.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_radios.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_select_date.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_select_time.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.html_table.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.mailto.php +%%WWWDIR%%/lib/smarty/libs/plugins/function.math.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.capitalize.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.date_format.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.debug_print_var.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.escape.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.mb_wordwrap.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.regex_replace.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.replace.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.spacify.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifier.truncate.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.cat.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.count_characters.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.count_paragraphs.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.count_sentences.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.count_words.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.default.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.escape.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.from_charset.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.indent.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.lower.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.noprint.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.string_format.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.strip.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.strip_tags.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.to_charset.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.unescape.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.upper.php +%%WWWDIR%%/lib/smarty/libs/plugins/modifiercompiler.wordwrap.php +%%WWWDIR%%/lib/smarty/libs/plugins/outputfilter.trimwhitespace.php +%%WWWDIR%%/lib/smarty/libs/plugins/shared.escape_special_chars.php +%%WWWDIR%%/lib/smarty/libs/plugins/shared.literal_compiler_param.php +%%WWWDIR%%/lib/smarty/libs/plugins/shared.make_timestamp.php +%%WWWDIR%%/lib/smarty/libs/plugins/shared.mb_str_replace.php +%%WWWDIR%%/lib/smarty/libs/plugins/shared.mb_unicode.php +%%WWWDIR%%/lib/smarty/libs/plugins/variablefilter.htmlspecialchars.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_cacheresource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_cacheresource_custom.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_data.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_block.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_append.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_assign.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_block.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_block_child.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_block_parent.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_break.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_call.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_capture.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_child.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_config_load.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_continue.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_debug.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_eval.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_extends.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_for.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_foreach.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_function.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_if.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_include.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_include_php.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_insert.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_make_nocache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_nocache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_parent.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_block_plugin.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_function_plugin.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_modifier.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_object_block_function.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_object_function.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_php.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_print_expression.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_registered_block.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_registered_function.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_private_special_variable.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_section.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_shared_inheritance.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compile_while.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_compilebase.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_config_file_compiler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_configfilelexer.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_configfileparser.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_data.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_debug.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_errorhandler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_extension_handler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_addautoloadfilters.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_adddefaultmodifiers.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_append.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_assignglobal.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearallassign.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearallcache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearassign.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearcache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearcompiledtemplate.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_compileallconfig.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_compilealltemplates.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_configload.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_createdata.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getautoloadfilters.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getconfigvariable.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getconfigvars.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getdebugtemplate.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getdefaultmodifiers.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getglobal.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getregisteredobject.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_getstreamvariable.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_gettags.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_gettemplatevars.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_literals.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registercacheresource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerclass.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerdefaultconfighandler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerfilter.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerobject.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerplugin.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_registerresource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_setautoloadfilters.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_setdebugtemplate.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_setdefaultmodifiers.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unloadfilter.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unregistercacheresource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unregisterfilter.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unregisterobject.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unregisterplugin.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_method_unregisterresource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_nocache_insert.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_code.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_dqcontent.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_template.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_parsetree_text.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_eval.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_extends.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_file.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_php.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_registered.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_stream.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_resource_string.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_cachemodify.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_cacheresourcefile.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_capture.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_filterhandler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_getincludepath.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_make_nocache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_tplfunction.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_updatescope.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_template.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_templatebase.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_templatelexer.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_templateparser.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_testinstall.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_internal_undefined.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_resource.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_resource_custom.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_resource_recompiled.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_resource_uncompiled.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_security.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_template_cached.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_template_compiled.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_template_config.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_template_resource_base.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_template_source.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_undefined_variable.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smarty_variable.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smartycompilerexception.php +%%WWWDIR%%/lib/smarty/libs/sysplugins/smartyexception.php +%%WWWDIR%%/lib/smarty/smarty_version +%%WWWDIR%%/model/AdminHandler.php +%%WWWDIR%%/model/AdminpasswordHandler.php +%%WWWDIR%%/model/AliasHandler.php +%%WWWDIR%%/model/AliasdomainHandler.php +%%WWWDIR%%/model/CliDelete.php +%%WWWDIR%%/model/CliEdit.php +%%WWWDIR%%/model/CliHelp.php +%%WWWDIR%%/model/CliScheme.php +%%WWWDIR%%/model/CliView.php +%%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/common.php +%%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/favicon.ico +%%WWWDIR%%/public/images/index.php +%%WWWDIR%%/public/images/logo-default.png +%%WWWDIR%%/public/images/mail_bg.gif +%%WWWDIR%%/public/images/postbox.png +%%WWWDIR%%/public/images/postfixadmin.png +%%WWWDIR%%/public/images/postfixadmin2.png +%%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 +%%WWWDIR%%/public/main.php +%%WWWDIR%%/public/password-change.php +%%WWWDIR%%/public/password-recover.php +%%WWWDIR%%/public/sendmail.php +%%WWWDIR%%/public/setup.php +%%WWWDIR%%/public/upgrade.php +%%WWWDIR%%/public/users/edit-alias.php +%%WWWDIR%%/public/users/index.php +%%WWWDIR%%/public/users/login.php +%%WWWDIR%%/public/users/main.php +%%WWWDIR%%/public/users/password-change.php +%%WWWDIR%%/public/users/password-recover.php +%%WWWDIR%%/public/users/password.php +%%WWWDIR%%/public/users/vacation.php +%%WWWDIR%%/public/vacation.php +%%WWWDIR%%/public/viewlog.php +%%WWWDIR%%/public/xmlrpc.php +%%WWWDIR%%/scripts/postfixadmin-cli +%%WWWDIR%%/scripts/postfixadmin-cli.php +%%WWWDIR%%/scripts/snippets/crypt.php +%%WWWDIR%%/scripts/snippets/crypt_test.php +%%WWWDIR%%/scripts/snippets/dovecot_crypt.php +%%WWWDIR%%/templates/backupwarning.tpl +%%WWWDIR%%/templates/broadcast-message.tpl +%%WWWDIR%%/templates/editform.tpl +%%WWWDIR%%/templates/flash_error.tpl +%%WWWDIR%%/templates/footer.tpl +%%WWWDIR%%/templates/header.php +%%WWWDIR%%/templates/header.tpl +%%WWWDIR%%/templates/index.tpl +%%WWWDIR%%/templates/list-virtual.tpl +%%WWWDIR%%/templates/list-virtual_alias.tpl +%%WWWDIR%%/templates/list-virtual_alias_domain.tpl +%%WWWDIR%%/templates/list-virtual_mailbox.tpl +%%WWWDIR%%/templates/list.tpl +%%WWWDIR%%/templates/login.tpl +%%WWWDIR%%/templates/main.tpl +%%WWWDIR%%/templates/menu.tpl +%%WWWDIR%%/templates/password-change.tpl +%%WWWDIR%%/templates/password-recover.tpl +%%WWWDIR%%/templates/password.tpl +%%WWWDIR%%/templates/sendmail.tpl +%%WWWDIR%%/templates/users_edit-alias.tpl +%%WWWDIR%%/templates/users_main.tpl +%%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/bootstrap.php +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/templates_c |