8d666004eb
This update includes XSS security problem. RELEASE 1.3.8 ------------- - Fix PHP warnings on dummy QUOTA responses in Courier-IMAP 4.17.1 (#6374) - Fix so fallback from BINARY to BODY FETCH is used also on [PARSE] errors in dovecot 2.3 (#6383) - Fix invalid regular expressions that throw warnings on PHP 7.3 (#6398) - Fix so Classic skin splitter does not escape out of window (#6397) - Fix XSS issue in handling invalid style tag content (#6410) - Fix compatibility with MySQL 8 - error on 'system' table use - Managesieve: Fix bug where show_real_foldernames setting wasn't respected (#6422) - New_user_identity: Fix %fu/%u vars substitution in user specific LDAP params (#6419) - Fix support for "allow-from <uri>" in "x_frame_options" config option (#6449) - Fix bug where valid content between HTML comments could have been skipped in some cases (#6464) - Fix multiple VCard field search (#6466) - Fix session issue on long running requests (#6470)
49 lines
1.2 KiB
Text
49 lines
1.2 KiB
Text
# $NetBSD: Makefile.common,v 1.12 2018/10/28 15:23:34 taca Exp $
|
|
#
|
|
# used by mail/roundcube/Makefile
|
|
# used by mail/roundcube/plugins.mk
|
|
|
|
DISTNAME= roundcubemail-${RC_VERS}
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=roundcube/}
|
|
GITHUB_PROJECT= roundcubemail
|
|
HOMEPAGE= http://roundcube.net/
|
|
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX}
|
|
DIST_SUBDIR= roundcube
|
|
|
|
RC_VERS= 1.3.8
|
|
|
|
USE_LANGUAGES= # none
|
|
USE_TOOLS+= pax
|
|
EXTRACT_USING= gtar
|
|
NO_BUILD= yes
|
|
|
|
PKG_SYSCONFSUBDIR?= roundcube
|
|
|
|
PKG_GROUPS_VARS+= WWW_GROUP
|
|
PKG_USERS_VARS= WWW_USER
|
|
BUILD_DEFS+= VARBASE WWW_USER WWW_GROUP APACHE_USER APACHE_GROUP
|
|
|
|
RCDIR= share/roundcube
|
|
EGDIR= share/examples/roundcube
|
|
DOCDIR= share/doc/roundcube
|
|
|
|
MESSAGE_SUBST+= DOCDIR="${PREFIX}/${DOCDIR}" \
|
|
PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
|
|
MESSAGE_SUBST+= VARBASE=${VARBASE} RCDIR="${PREFIX}/${RCDIR}"
|
|
FILES_SUBST+= RCDIR="${PREFIX}/${RCDIR}"
|
|
|
|
.for d in ${CONF_PLUGINS}
|
|
INSTALLATION_DIRS+= ${EGDIR}/plugins/${d}
|
|
.endfor
|
|
|
|
.include "../../mail/roundcube/options.mk"
|
|
.include "../../lang/php/phpversion.mk"
|
|
|
|
post-install:
|
|
.for f in ${CONF_PLUGINS}
|
|
cd ${DESTDIR}${PREFIX} && \
|
|
${TEST} -f ${EGDIR}/plugins/${f}/config.inc.php || \
|
|
${MV} ${RCDIR}/plugins/${f}/config.inc.php.dist \
|
|
${EGDIR}/plugins/${f}/config.inc.php
|
|
.endfor
|