mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
5157e03074
PR: 51149 Submitted by: Tai-hwa Liang <avatar@mmlab.cse.yzu.edu.tw>
10 lines
797 B
Bash
10 lines
797 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "POST-INSTALL" -o -n "${PACKAGE_BUILDING}" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
/usr/bin/dialog --yesno "SECURITY NOTE: The pine software has had several remote vulnerabilities discovered in the past, which allowed remote attackers to execute arbitrary code as you on your local system, by the action of sending a specially-prepared email. All such KNOWN problems have been fixed, but the pine code is written in a very insecure style and the FreeBSD Security Officer believes there are likely to be other undiscovered vulnerabilities. Do you wish to proceed with the installation of pine anyway?" 12 70 || /usr/bin/false
|
|
|
|
/usr/bin/dialog --msgbox "Be sure to consult the Pine help for section about 'Information on mbox driver' before using Pine with /usr/bin/mail on a POP3 server." 7 70
|