1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Update checksum for imap-utils.tar.Z. Licenses updated, also some

minor changes applied.
- Remove security warning. There has been a long time since last
known vulnerability, and the author claims having taken preventive
measures. (OKed by SO).
This commit is contained in:
Anders Nordby 2002-04-06 15:26:04 +00:00
parent 8488effa1d
commit 0a8e4d6fa6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57370
3 changed files with 1 additions and 27 deletions

View File

@ -64,9 +64,6 @@ PLIST_SUB+= IMAPUTILS='@comment '
pre-extract:
@${SH} ${PKGREQ}.rev ${LOCALBASE}/include/c-client/portrevision.h ${PORTVERSION}
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
@${SH} ${PKGINSTALL} foo PRE-INSTALL || ${FALSE}
.endif
pre-build:
.if defined(WITH_SSL)

View File

@ -1,2 +1,2 @@
MD5 (imap-2001a.tar.Z) = 42c5c8d049c209b15513a4f6ebba34d2
MD5 (imap-utils.tar.Z) = 113cae14036d9fe70e7100b661cfdd73
MD5 (imap-utils.tar.Z) = a54772a4954ecc145a5f962d8e6012bf

View File

@ -1,23 +0,0 @@
#!/bin/sh
TTY=/dev/tty
if [ "X$PACKAGE_BUILDING" != "X" ]; then
exit 0
fi
case $2 in
POST-INSTALL)
;;
PRE-INSTALL)
if dialog --yesno "This port has been proven exploitable at several occasions (read up\non CERT advisories), leaving systems subject to remote root access.\nBefore installing this package, please consider:\n\na) Whether you really want to use this software. The integrity of\nyour system may be at risk.\n\nb) Using TCP Wrappers to protect your UW imap/pop daemons from being\npublicly available. Adding this to /etc/hosts.allow will make your\nimap and pop3 daemons accessible only from 192.168.0.0/24:\n\nimapd : 192.168.0.0/24 : allow\nimapd : ALL : deny\nipop3d : 192.168.0.0/24 : allow\nipop3d : ALL : deny\n\nFor more information about the hosts.allow file, read\nhosts_access(5). Please test that this setup works as expected.\n\nDo you wish to proceed with the build?" 24 72 < ${TTY} >${TTY} 2>&1; then
exit 0
else
exit 1
fi
;;
*)
echo "Unexpected argument $2!"
exit 1
;;
esac
exit 0