Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Aug 2002 21:44:59 +0100
From:      Simon Dick <simond@irrelevant.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/41829: New port: mail/squirrelmail-devel
Message-ID:  <E17hFs3-0003VO-00@nelly.internal.irrelevant.org>

next in thread | raw e-mail | index | archive | help

>Number:         41829
>Category:       ports
>Synopsis:       New port: mail/squirrelmail-devel
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 20 13:50:02 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Simon Dick
>Release:        FreeBSD 4.6-RELEASE-p1 i386
>Organization:
>Environment:
System: FreeBSD nelly.internal.irrelevant.org 4.6-RELEASE-p1 FreeBSD 4.6-RELEASE-p1 #0: Sat Jun 29 15:30:22 BST 2002 root@nelly.internal.irrelevant.org:/usr/obj/usr/src/sys/ELEPHANT i386


	
>Description:

New port for development version of SquirrelMail (1.3.1 currently)

>How-To-Repeat:
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	squirrelmail-devel
#	squirrelmail-devel/Makefile
#	squirrelmail-devel/pkg-message
#	squirrelmail-devel/pkg-comment
#	squirrelmail-devel/pkg-descr
#	squirrelmail-devel/pkg-install
#	squirrelmail-devel/pkg-plist
#	squirrelmail-devel/distinfo
#
echo c - squirrelmail-devel
mkdir -p squirrelmail-devel > /dev/null 2>&1
echo x - squirrelmail-devel/Makefile
sed 's/^X//' >squirrelmail-devel/Makefile << 'END-of-squirrelmail-devel/Makefile'
X# New ports collection makefile for:	squirrelmail
X# Date created: 			27 December 2001
X# Whom: 				Simon Dick <simond@irrelevant.org>
X#
X# $FreeBSD: ports/mail/squirrelmail/Makefile,v 1.5 2002/06/23 18:49:32 anders Exp $
X#
X
XPORTNAME=	squirrelmail
XPORTVERSION=	1.3.1
XCATEGORIES=	mail www
XMASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR=	squirrelmail
X
XMAINTAINER=	simond@irrelevant.org
X
XRUN_DEPENDS+=	${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4
X
XUSE_BZIP2=	yes
XNO_BUILD=	yes
XNO_LATEST_LINK=	yes
X
Xpre-install:
X	@${ECHO} "Your umask should be lax while installing this. Like, 022 or something."
X	@${SH} pkg-install ${PKGNAME} PRE-INSTALL
X
Xdo-install:
X	${MKDIR} ${PREFIX}/squirrelmail
X	${CP} -R ${WRKSRC}/* ${PREFIX}/squirrelmail
X	${CHOWN} -R www:www ${PREFIX}/squirrelmail/data
X
Xpost-install:
X	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
X
X.include <bsd.port.mk>
END-of-squirrelmail-devel/Makefile
echo x - squirrelmail-devel/pkg-message
sed 's/^X//' >squirrelmail-devel/pkg-message << 'END-of-squirrelmail-devel/pkg-message'
X
XYou now need to add an alias to apache's httpd.conf pointing to
X%%PREFIX%%/squirrelmail/ in order to access SquirrelMail from your
Xweb browser, or create a VirtualHost with DocumentRoot set to that
Xdirectory.
X
XFor SquirrelMail to work properly you will need to make sure the
Xfollowing options are set in your php.ini file:
Xfile_uploads = On
X
XIf you have problems with SquirrelMail saying "you must login" after
Xyou just have, the following php.ini option may help:
Xsession.auto_start = 1
X
XIn order to do your administrative configuration you need to 
Xcd %%PREFIX%%/squirrelmail && ./configure
XSquirrelMail will not work until this has been done.
END-of-squirrelmail-devel/pkg-message
echo x - squirrelmail-devel/pkg-comment
sed 's/^X//' >squirrelmail-devel/pkg-comment << 'END-of-squirrelmail-devel/pkg-comment'
XA webmail system which accesses mail over IMAP
END-of-squirrelmail-devel/pkg-comment
echo x - squirrelmail-devel/pkg-descr
sed 's/^X//' >squirrelmail-devel/pkg-descr << 'END-of-squirrelmail-devel/pkg-descr'
XSquirrelMail is a standards-based webmail package written in PHP4. It
Xincludes built-in pure PHP support for the IMAP and SMTP protocols, and
Xall pages render in pure HTML 4.0 (with no Javascript) for maximum
Xcompatibility across browsers. It has very few requirements and is very
Xeasy to configure and install. SquirrelMail has a all the functionality
Xyou would want from an email client, including strong MIME support,
Xaddress books, and folder manipulation
X
XWWW: http://www.squirrelmail.org/
X
X- Simon Dick
Xsimond@irrelevant.org
END-of-squirrelmail-devel/pkg-descr
echo x - squirrelmail-devel/pkg-install
sed 's/^X//' >squirrelmail-devel/pkg-install << 'END-of-squirrelmail-devel/pkg-install'
X#!/bin/sh
X
Xcase $2 in
XPRE-INSTALL)
X	USER=www
X	GROUP=${USER}
X	UID=80
X	GID=${UID}
X
X	if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
X		if pw groupadd ${GROUP} -g ${GID}; then
X			echo "Added group \"${GROUP}\"."
X		else
X			echo "Adding group \"${GROUP}\" failed..."
X			exit 1
X		fi
X	fi
X
X	if ! pw usershow "${USER}" 2>/dev/null 1>&2; then
X		if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
X			-s "/sbin/nologin" -d "/nonexistent" \
X			-c "World Wide Web Owner"; \
X		then
X			echo "Added user \"${USER}\"."
X		else
X			echo "Adding user \"${USER}\" failed..."
X			exit 1
X		fi
X	fi
X
X	install -d -o www -g www -m 0755 /var/spool/squirrelmail
X
X	exit 0
X	;;
XPOST-INSTALL)
X	;;
Xesac
END-of-squirrelmail-devel/pkg-install
echo x - squirrelmail-devel/pkg-plist
sed 's/^X//' >squirrelmail-devel/pkg-plist << 'END-of-squirrelmail-devel/pkg-plist'
Xsquirrelmail/AUTHORS
Xsquirrelmail/COPYING
Xsquirrelmail/ChangeLog
Xsquirrelmail/INSTALL
Xsquirrelmail/MIRRORS
Xsquirrelmail/README
Xsquirrelmail/ReleaseNotes
Xsquirrelmail/UPGRADE
Xsquirrelmail/class/html.class.php
Xsquirrelmail/class/index.php
Xsquirrelmail/class/mime.class.php
Xsquirrelmail/config/conf.pl
Xsquirrelmail/config/config_default.php
Xsquirrelmail/config/index.php
Xsquirrelmail/config/ri_once.pl
Xsquirrelmail/configure
Xsquirrelmail/css/read_body.css
Xsquirrelmail/data/.htaccess
Xsquirrelmail/data/default_pref
Xsquirrelmail/data/index.php
Xsquirrelmail/doc/README.russian_apache
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.0.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.1.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.2.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.3.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.4.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.5
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.6.txt
Xsquirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.0.txt
Xsquirrelmail/doc/addressbook.txt
Xsquirrelmail/doc/compose.txt
Xsquirrelmail/doc/db-backend.txt
Xsquirrelmail/doc/ie_ssl.txt
Xsquirrelmail/doc/index.html
Xsquirrelmail/doc/mime.txt
Xsquirrelmail/doc/plugin.txt
Xsquirrelmail/doc/rfc_documents.txt
Xsquirrelmail/doc/themes.txt
Xsquirrelmail/doc/translating.txt
Xsquirrelmail/doc/translating_help.txt
Xsquirrelmail/doc/tree.txt
Xsquirrelmail/functions/abook_database.php
Xsquirrelmail/functions/abook_global_file.php
Xsquirrelmail/functions/abook_ldap_server.php
Xsquirrelmail/functions/abook_local_file.php
Xsquirrelmail/functions/addressbook.php
Xsquirrelmail/functions/array.php
Xsquirrelmail/functions/attachment_common.php
Xsquirrelmail/functions/auth.php
Xsquirrelmail/functions/constants.php
Xsquirrelmail/functions/date.php
Xsquirrelmail/functions/db_prefs.php
Xsquirrelmail/functions/display_messages.php
Xsquirrelmail/functions/file_prefs.php
Xsquirrelmail/functions/gettext.php
Xsquirrelmail/functions/global.php
Xsquirrelmail/functions/html.php
Xsquirrelmail/functions/i18n.php
Xsquirrelmail/functions/imap.php
Xsquirrelmail/functions/imap_general.php
Xsquirrelmail/functions/imap_mailbox.php
Xsquirrelmail/functions/imap_messages.php
Xsquirrelmail/functions/imap_parse.php
Xsquirrelmail/functions/imap_search.php
Xsquirrelmail/functions/imap_utf7_decode_local.php
Xsquirrelmail/functions/imap_utf7_encode_local.php
Xsquirrelmail/functions/index.php
Xsquirrelmail/functions/mailbox_display.php
Xsquirrelmail/functions/mime.php
Xsquirrelmail/functions/options.php
Xsquirrelmail/functions/page_header.php
Xsquirrelmail/functions/plugin.php
Xsquirrelmail/functions/prefs.php
Xsquirrelmail/functions/smtp.php
Xsquirrelmail/functions/strings.php
Xsquirrelmail/functions/tree.php
Xsquirrelmail/functions/url_parser.php
Xsquirrelmail/help/ca_ES/FAQ.hlp
Xsquirrelmail/help/ca_ES/addresses.hlp
Xsquirrelmail/help/ca_ES/basic.hlp
Xsquirrelmail/help/ca_ES/compose.hlp
Xsquirrelmail/help/ca_ES/folders.hlp
Xsquirrelmail/help/ca_ES/main_folder.hlp
Xsquirrelmail/help/ca_ES/options.hlp
Xsquirrelmail/help/ca_ES/read_mail.hlp
Xsquirrelmail/help/ca_ES/search.hlp
Xsquirrelmail/help/cs_CZ/FAQ.hlp
Xsquirrelmail/help/cs_CZ/addresses.hlp
Xsquirrelmail/help/cs_CZ/basic.hlp
Xsquirrelmail/help/cs_CZ/compose.hlp
Xsquirrelmail/help/cs_CZ/folders.hlp
Xsquirrelmail/help/cs_CZ/main_folder.hlp
Xsquirrelmail/help/cs_CZ/options.hlp
Xsquirrelmail/help/cs_CZ/read_mail.hlp
Xsquirrelmail/help/cs_CZ/search.hlp
Xsquirrelmail/help/de_DE/FAQ.hlp
Xsquirrelmail/help/de_DE/addresses.hlp
Xsquirrelmail/help/de_DE/basic.hlp
Xsquirrelmail/help/de_DE/compose.hlp
Xsquirrelmail/help/de_DE/folders.hlp
Xsquirrelmail/help/de_DE/main_folder.hlp
Xsquirrelmail/help/de_DE/options.hlp
Xsquirrelmail/help/de_DE/read_mail.hlp
Xsquirrelmail/help/de_DE/search.hlp
Xsquirrelmail/help/en_US/FAQ.hlp
Xsquirrelmail/help/en_US/addresses.hlp
Xsquirrelmail/help/en_US/basic.hlp
Xsquirrelmail/help/en_US/compose.hlp
Xsquirrelmail/help/en_US/folders.hlp
Xsquirrelmail/help/en_US/main_folder.hlp
Xsquirrelmail/help/en_US/options.hlp
Xsquirrelmail/help/en_US/read_mail.hlp
Xsquirrelmail/help/en_US/search.hlp
Xsquirrelmail/help/es_ES/FAQ.hlp
Xsquirrelmail/help/es_ES/addresses.hlp
Xsquirrelmail/help/es_ES/basic.hlp
Xsquirrelmail/help/es_ES/compose.hlp
Xsquirrelmail/help/es_ES/folders.hlp
Xsquirrelmail/help/es_ES/main_folder.hlp
Xsquirrelmail/help/es_ES/options.hlp
Xsquirrelmail/help/es_ES/read_mail.hlp
Xsquirrelmail/help/es_ES/search.hlp
Xsquirrelmail/help/fi_FI/FAQ.hlp
Xsquirrelmail/help/fi_FI/addresses.hlp
Xsquirrelmail/help/fi_FI/basic.hlp
Xsquirrelmail/help/fi_FI/compose.hlp
Xsquirrelmail/help/fi_FI/folders.hlp
Xsquirrelmail/help/fi_FI/main_folder.hlp
Xsquirrelmail/help/fi_FI/options.hlp
Xsquirrelmail/help/fi_FI/read_mail.hlp
Xsquirrelmail/help/fi_FI/search.hlp
Xsquirrelmail/help/fr_FR/FAQ.hlp
Xsquirrelmail/help/fr_FR/addresses.hlp
Xsquirrelmail/help/fr_FR/basic.hlp
Xsquirrelmail/help/fr_FR/compose.hlp
Xsquirrelmail/help/fr_FR/folders.hlp
Xsquirrelmail/help/fr_FR/main_folder.hlp
Xsquirrelmail/help/fr_FR/options.hlp
Xsquirrelmail/help/fr_FR/read_mail.hlp
Xsquirrelmail/help/fr_FR/search.hlp
Xsquirrelmail/help/id_ID/FAQ.hlp
Xsquirrelmail/help/id_ID/addresses.hlp
Xsquirrelmail/help/id_ID/basic.hlp
Xsquirrelmail/help/id_ID/compose.hlp
Xsquirrelmail/help/id_ID/folders.hlp
Xsquirrelmail/help/id_ID/main_folder.hlp
Xsquirrelmail/help/id_ID/options.hlp
Xsquirrelmail/help/id_ID/read_mail.hlp
Xsquirrelmail/help/id_ID/search.hlp
Xsquirrelmail/help/index.php
Xsquirrelmail/help/it_IT/FAQ.hlp
Xsquirrelmail/help/it_IT/addresses.hlp
Xsquirrelmail/help/it_IT/basic.hlp
Xsquirrelmail/help/it_IT/compose.hlp
Xsquirrelmail/help/it_IT/folders.hlp
Xsquirrelmail/help/it_IT/main_folder.hlp
Xsquirrelmail/help/it_IT/options.hlp
Xsquirrelmail/help/it_IT/read_mail.hlp
Xsquirrelmail/help/it_IT/search.hlp
Xsquirrelmail/help/ko_KR/FAQ.hlp
Xsquirrelmail/help/ko_KR/addresses.hlp
Xsquirrelmail/help/ko_KR/basic.hlp
Xsquirrelmail/help/ko_KR/compose.hlp
Xsquirrelmail/help/ko_KR/folders.hlp
Xsquirrelmail/help/ko_KR/main_folder.hlp
Xsquirrelmail/help/ko_KR/options.hlp
Xsquirrelmail/help/ko_KR/read_mail.hlp
Xsquirrelmail/help/ko_KR/search.hlp
Xsquirrelmail/help/lt_LT/FAQ.hlp
Xsquirrelmail/help/lt_LT/addresses.hlp
Xsquirrelmail/help/lt_LT/basic.hlp
Xsquirrelmail/help/lt_LT/compose.hlp
Xsquirrelmail/help/lt_LT/folders.hlp
Xsquirrelmail/help/lt_LT/main_folder.hlp
Xsquirrelmail/help/lt_LT/options.hlp
Xsquirrelmail/help/lt_LT/read_mail.hlp
Xsquirrelmail/help/lt_LT/search.hlp
Xsquirrelmail/help/nl_NL/FAQ.hlp
Xsquirrelmail/help/nl_NL/addresses.hlp
Xsquirrelmail/help/nl_NL/basic.hlp
Xsquirrelmail/help/nl_NL/compose.hlp
Xsquirrelmail/help/nl_NL/folders.hlp
Xsquirrelmail/help/nl_NL/main_folder.hlp
Xsquirrelmail/help/nl_NL/options.hlp
Xsquirrelmail/help/nl_NL/read_mail.hlp
Xsquirrelmail/help/nl_NL/search.hlp
Xsquirrelmail/help/pl_PL/FAQ.hlp
Xsquirrelmail/help/pl_PL/addresses.hlp
Xsquirrelmail/help/pl_PL/basic.hlp
Xsquirrelmail/help/pl_PL/compose.hlp
Xsquirrelmail/help/pl_PL/folders.hlp
Xsquirrelmail/help/pl_PL/main_folder.hlp
Xsquirrelmail/help/pl_PL/options.hlp
Xsquirrelmail/help/pl_PL/read_mail.hlp
Xsquirrelmail/help/pl_PL/search.hlp
Xsquirrelmail/help/pt_BR/FAQ.hlp
Xsquirrelmail/help/pt_BR/addresses.hlp
Xsquirrelmail/help/pt_BR/basic.hlp
Xsquirrelmail/help/pt_BR/compose.hlp
Xsquirrelmail/help/pt_BR/folders.hlp
Xsquirrelmail/help/pt_BR/main_folder.hlp
Xsquirrelmail/help/pt_BR/options.hlp
Xsquirrelmail/help/pt_BR/read_mail.hlp
Xsquirrelmail/help/pt_BR/search.hlp
Xsquirrelmail/help/pt_PT/FAQ.hlp
Xsquirrelmail/help/pt_PT/addresses.hlp
Xsquirrelmail/help/pt_PT/basic.hlp
Xsquirrelmail/help/pt_PT/compose.hlp
Xsquirrelmail/help/pt_PT/folders.hlp
Xsquirrelmail/help/pt_PT/main_folder.hlp
Xsquirrelmail/help/pt_PT/options.hlp
Xsquirrelmail/help/pt_PT/read_mail.hlp
Xsquirrelmail/help/pt_PT/search.hlp
Xsquirrelmail/help/ru_RU/FAQ.hlp
Xsquirrelmail/help/ru_RU/addresses.hlp
Xsquirrelmail/help/ru_RU/basic.hlp
Xsquirrelmail/help/ru_RU/compose.hlp
Xsquirrelmail/help/ru_RU/folders.hlp
Xsquirrelmail/help/ru_RU/main_folder.hlp
Xsquirrelmail/help/ru_RU/options.hlp
Xsquirrelmail/help/ru_RU/read_mail.hlp
Xsquirrelmail/help/ru_RU/search.hlp
Xsquirrelmail/help/sl_SI/FAQ.hlp
Xsquirrelmail/help/sl_SI/addresses.hlp
Xsquirrelmail/help/sl_SI/basic.hlp
Xsquirrelmail/help/sl_SI/compose.hlp
Xsquirrelmail/help/sl_SI/folders.hlp
Xsquirrelmail/help/sl_SI/main_folder.hlp
Xsquirrelmail/help/sl_SI/options.hlp
Xsquirrelmail/help/sl_SI/read_mail.hlp
Xsquirrelmail/help/sl_SI/search.hlp
Xsquirrelmail/help/sv_SE/FAQ.hlp
Xsquirrelmail/help/sv_SE/addresses.hlp
Xsquirrelmail/help/sv_SE/basic.hlp
Xsquirrelmail/help/sv_SE/compose.hlp
Xsquirrelmail/help/sv_SE/folders.hlp
Xsquirrelmail/help/sv_SE/main_folder.hlp
Xsquirrelmail/help/sv_SE/options.hlp
Xsquirrelmail/help/sv_SE/read_mail.hlp
Xsquirrelmail/help/sv_SE/search.hlp
Xsquirrelmail/help/th_TH/FAQ.hlp
Xsquirrelmail/help/th_TH/addresses.hlp
Xsquirrelmail/help/th_TH/basic.hlp
Xsquirrelmail/help/th_TH/compose.hlp
Xsquirrelmail/help/th_TH/folders.hlp
Xsquirrelmail/help/th_TH/main_folder.hlp
Xsquirrelmail/help/th_TH/options.hlp
Xsquirrelmail/help/th_TH/read_mail.hlp
Xsquirrelmail/help/th_TH/search.hlp
Xsquirrelmail/images/down_pointer.png
Xsquirrelmail/images/index.php
Xsquirrelmail/images/minus.gif
Xsquirrelmail/images/plus.gif
Xsquirrelmail/images/sec_remove_da_DK.png
Xsquirrelmail/images/sec_remove_eng.png
Xsquirrelmail/images/sec_remove_es_ES.png
Xsquirrelmail/images/sec_remove_id_ID.png
Xsquirrelmail/images/sec_remove_ko_KR.png
Xsquirrelmail/images/sec_remove_lt_LT.png
Xsquirrelmail/images/sec_remove_ru.png
Xsquirrelmail/images/sec_remove_sl_SI.png
Xsquirrelmail/images/sm_logo.jpg
Xsquirrelmail/images/sm_logo.png
Xsquirrelmail/images/sort_none.png
Xsquirrelmail/images/up_pointer.png
Xsquirrelmail/index.php
Xsquirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/he_HE/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/index.php
Xsquirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/timezones.cfg
Xsquirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.po
Xsquirrelmail/plugins/README.plugins
Xsquirrelmail/plugins/abook_take/INSTALL
Xsquirrelmail/plugins/abook_take/README
Xsquirrelmail/plugins/abook_take/setup.php
Xsquirrelmail/plugins/abook_take/take.php
Xsquirrelmail/plugins/administrator/INSTALL
Xsquirrelmail/plugins/administrator/auth.php
Xsquirrelmail/plugins/administrator/defines.php
Xsquirrelmail/plugins/administrator/index.php
Xsquirrelmail/plugins/administrator/options.php
Xsquirrelmail/plugins/administrator/setup.php
Xsquirrelmail/plugins/bug_report/INSTALL
Xsquirrelmail/plugins/bug_report/README
Xsquirrelmail/plugins/bug_report/bug_report.php
Xsquirrelmail/plugins/bug_report/index.php
Xsquirrelmail/plugins/bug_report/setup.php
Xsquirrelmail/plugins/calendar/README
Xsquirrelmail/plugins/calendar/calendar.php
Xsquirrelmail/plugins/calendar/calendar_data.php
Xsquirrelmail/plugins/calendar/day.php
Xsquirrelmail/plugins/calendar/event_create.php
Xsquirrelmail/plugins/calendar/event_delete.php
Xsquirrelmail/plugins/calendar/event_edit.php
Xsquirrelmail/plugins/calendar/functions.php
Xsquirrelmail/plugins/calendar/index.php
Xsquirrelmail/plugins/calendar/setup.php
Xsquirrelmail/plugins/delete_move_next/README
Xsquirrelmail/plugins/delete_move_next/index.php
Xsquirrelmail/plugins/delete_move_next/setup.php
Xsquirrelmail/plugins/filters/CHANGES
Xsquirrelmail/plugins/filters/README
Xsquirrelmail/plugins/filters/bulkquery/INSTALL
Xsquirrelmail/plugins/filters/bulkquery/Makefile
Xsquirrelmail/plugins/filters/bulkquery/README
Xsquirrelmail/plugins/filters/bulkquery/bq.in
Xsquirrelmail/plugins/filters/bulkquery/bq.out
Xsquirrelmail/plugins/filters/bulkquery/bulkquery.c
Xsquirrelmail/plugins/filters/filters.php
Xsquirrelmail/plugins/filters/index.php
Xsquirrelmail/plugins/filters/options.php
Xsquirrelmail/plugins/filters/setup.php
Xsquirrelmail/plugins/filters/spamoptions.php
Xsquirrelmail/plugins/index.php
Xsquirrelmail/plugins/info/README
Xsquirrelmail/plugins/info/functions.php
Xsquirrelmail/plugins/info/options.php
Xsquirrelmail/plugins/info/setup.php
Xsquirrelmail/plugins/listcommands/README
Xsquirrelmail/plugins/listcommands/index.php
Xsquirrelmail/plugins/listcommands/mailout.php
Xsquirrelmail/plugins/listcommands/setup.php
Xsquirrelmail/plugins/mail_fetch/README
Xsquirrelmail/plugins/mail_fetch/class.POP3.php
Xsquirrelmail/plugins/mail_fetch/fetch.php
Xsquirrelmail/plugins/mail_fetch/functions.php
Xsquirrelmail/plugins/mail_fetch/index.php
Xsquirrelmail/plugins/mail_fetch/options.php
Xsquirrelmail/plugins/mail_fetch/setup.php
Xsquirrelmail/plugins/make_archive.pl
Xsquirrelmail/plugins/newmail/HISTORY
Xsquirrelmail/plugins/newmail/README
Xsquirrelmail/plugins/newmail/index.php
Xsquirrelmail/plugins/newmail/newmail.php
Xsquirrelmail/plugins/newmail/newmail_opt.php
Xsquirrelmail/plugins/newmail/setup.php
Xsquirrelmail/plugins/newmail/sounds/FanFair.wav
Xsquirrelmail/plugins/newmail/sounds/Friends.wav
Xsquirrelmail/plugins/newmail/sounds/MontyPython.wav
Xsquirrelmail/plugins/newmail/sounds/Notify.wav
Xsquirrelmail/plugins/newmail/testsound.php
Xsquirrelmail/plugins/sent_subfolders/index.php
Xsquirrelmail/plugins/sent_subfolders/setup.php
Xsquirrelmail/plugins/spamcop/README
Xsquirrelmail/plugins/spamcop/index.php
Xsquirrelmail/plugins/spamcop/options.php
Xsquirrelmail/plugins/spamcop/setup.php
Xsquirrelmail/plugins/spamcop/spamcop.php
Xsquirrelmail/plugins/squirrelspell/INSTALL
Xsquirrelmail/plugins/squirrelspell/doc/CRYPTO
Xsquirrelmail/plugins/squirrelspell/doc/ChangeLog
Xsquirrelmail/plugins/squirrelspell/doc/PRIVACY
Xsquirrelmail/plugins/squirrelspell/doc/README
Xsquirrelmail/plugins/squirrelspell/doc/UPGRADING
Xsquirrelmail/plugins/squirrelspell/doc/index.php
Xsquirrelmail/plugins/squirrelspell/index.php
Xsquirrelmail/plugins/squirrelspell/js/WHATISTHIS
Xsquirrelmail/plugins/squirrelspell/js/check_me.js
Xsquirrelmail/plugins/squirrelspell/js/crypto_settings.js
Xsquirrelmail/plugins/squirrelspell/js/decrypt_error.js
Xsquirrelmail/plugins/squirrelspell/js/index.php
Xsquirrelmail/plugins/squirrelspell/js/init.js
Xsquirrelmail/plugins/squirrelspell/modules/.htaccess
Xsquirrelmail/plugins/squirrelspell/modules/WHATISTHIS
Xsquirrelmail/plugins/squirrelspell/modules/check_me.mod
Xsquirrelmail/plugins/squirrelspell/modules/crypto.mod
Xsquirrelmail/plugins/squirrelspell/modules/crypto_badkey.mod
Xsquirrelmail/plugins/squirrelspell/modules/edit_dic.mod
Xsquirrelmail/plugins/squirrelspell/modules/enc_setup.mod
Xsquirrelmail/plugins/squirrelspell/modules/forget_me.mod
Xsquirrelmail/plugins/squirrelspell/modules/forget_me_not.mod
Xsquirrelmail/plugins/squirrelspell/modules/index.php
Xsquirrelmail/plugins/squirrelspell/modules/init.mod
Xsquirrelmail/plugins/squirrelspell/modules/lang_change.mod
Xsquirrelmail/plugins/squirrelspell/modules/lang_setup.mod
Xsquirrelmail/plugins/squirrelspell/modules/options_main.mod
Xsquirrelmail/plugins/squirrelspell/setup.php
Xsquirrelmail/plugins/squirrelspell/sqspell_config.php
Xsquirrelmail/plugins/squirrelspell/sqspell_functions.php
Xsquirrelmail/plugins/squirrelspell/sqspell_interface.php
Xsquirrelmail/plugins/squirrelspell/sqspell_options.php
Xsquirrelmail/plugins/translate/INSTALL
Xsquirrelmail/plugins/translate/README
Xsquirrelmail/plugins/translate/index.php
Xsquirrelmail/plugins/translate/options.php
Xsquirrelmail/plugins/translate/setup.php
Xsquirrelmail/po/charsetconvert.pl
Xsquirrelmail/po/compilepo
Xsquirrelmail/po/independent_strings.txt
Xsquirrelmail/po/index.php
Xsquirrelmail/po/mergepo
Xsquirrelmail/po/squirrelmail.po
Xsquirrelmail/po/xgetpo
Xsquirrelmail/src/addrbook_popup.php
Xsquirrelmail/src/addrbook_search.php
Xsquirrelmail/src/addrbook_search_html.php
Xsquirrelmail/src/addressbook.php
Xsquirrelmail/src/compose.php
Xsquirrelmail/src/delete_message.php
Xsquirrelmail/src/download.php
Xsquirrelmail/src/draft_actions.php
Xsquirrelmail/src/empty_trash.php
Xsquirrelmail/src/folders.php
Xsquirrelmail/src/folders_create.php
Xsquirrelmail/src/folders_delete.php
Xsquirrelmail/src/folders_rename_do.php
Xsquirrelmail/src/folders_rename_getname.php
Xsquirrelmail/src/folders_subscribe.php
Xsquirrelmail/src/help.php
Xsquirrelmail/src/image.php
Xsquirrelmail/src/index.php
Xsquirrelmail/src/left_main.php
Xsquirrelmail/src/load_prefs.php
Xsquirrelmail/src/login.php
Xsquirrelmail/src/move_messages.php
Xsquirrelmail/src/options.php
Xsquirrelmail/src/options_display.php
Xsquirrelmail/src/options_folder.php
Xsquirrelmail/src/options_highlight.php
Xsquirrelmail/src/options_identities.php
Xsquirrelmail/src/options_order.php
Xsquirrelmail/src/options_personal.php
Xsquirrelmail/src/printer_friendly_bottom.php
Xsquirrelmail/src/printer_friendly_main.php
Xsquirrelmail/src/printer_friendly_top.php
Xsquirrelmail/src/read_body.php
Xsquirrelmail/src/redirect.php
Xsquirrelmail/src/retrievalerror.php
Xsquirrelmail/src/right_main.php
Xsquirrelmail/src/search.php
Xsquirrelmail/src/signout.php
Xsquirrelmail/src/validate.php
Xsquirrelmail/src/vcard.php
Xsquirrelmail/src/view_header.php
Xsquirrelmail/src/view_text.php
Xsquirrelmail/src/webmail.php
Xsquirrelmail/themes/README.themes
Xsquirrelmail/themes/alien_glow.php
Xsquirrelmail/themes/black_bean_burrito_theme.php
Xsquirrelmail/themes/blue_grey_theme.php
Xsquirrelmail/themes/bluesnews_theme.php
Xsquirrelmail/themes/bluesteel_theme.php
Xsquirrelmail/themes/christmas.php
Xsquirrelmail/themes/css/sans-08.css
Xsquirrelmail/themes/css/sans-10.css
Xsquirrelmail/themes/css/sans-12.css
Xsquirrelmail/themes/css/serif-10.css
Xsquirrelmail/themes/css/serif-12.css
Xsquirrelmail/themes/dark_green.php
Xsquirrelmail/themes/dark_grey_theme.php
Xsquirrelmail/themes/darkness.php
Xsquirrelmail/themes/deepocean2_theme.php
Xsquirrelmail/themes/deepocean_theme.php
Xsquirrelmail/themes/default_theme.php
Xsquirrelmail/themes/dompie_theme.php
Xsquirrelmail/themes/forest_theme.php
Xsquirrelmail/themes/greenhouse_effect.php
Xsquirrelmail/themes/high_contrast_theme.php
Xsquirrelmail/themes/ice_theme.php
Xsquirrelmail/themes/in_the_pink.php
Xsquirrelmail/themes/index.php
Xsquirrelmail/themes/kind_of_blue.php
Xsquirrelmail/themes/maize_theme.php
Xsquirrelmail/themes/methodical_theme.php
Xsquirrelmail/themes/midnight.php
Xsquirrelmail/themes/monostochastic.php
Xsquirrelmail/themes/penguin.php
Xsquirrelmail/themes/plain_blue_theme.php
Xsquirrelmail/themes/purple_theme.php
Xsquirrelmail/themes/random.php
Xsquirrelmail/themes/sandstorm_theme.php
Xsquirrelmail/themes/seaspray_theme.php
Xsquirrelmail/themes/servery_theme.php
Xsquirrelmail/themes/shades_of_grey.php
Xsquirrelmail/themes/slashdot_theme.php
Xsquirrelmail/themes/spice_of_life.php
Xsquirrelmail/themes/spice_of_life_dark.php
Xsquirrelmail/themes/spice_of_life_lite.php
X@dirrm squirrelmail/images
X@dirrm squirrelmail/src
X@dirrm squirrelmail/po
X@dirrm squirrelmail/plugins/calendar
X@dirrm squirrelmail/plugins/translate
X@dirrm squirrelmail/plugins/squirrelspell/js
X@dirrm squirrelmail/plugins/squirrelspell/doc
X@dirrm squirrelmail/plugins/squirrelspell/modules
X@dirrm squirrelmail/plugins/squirrelspell
X@dirrm squirrelmail/plugins/spamcop
X@dirrm squirrelmail/plugins/administrator
X@dirrm squirrelmail/plugins/bug_report
X@dirrm squirrelmail/plugins/sent_subfolders
X@dirrm squirrelmail/plugins/delete_move_next
X@dirrm squirrelmail/plugins/abook_take
X@dirrm squirrelmail/plugins/info
X@dirrm squirrelmail/plugins/listcommands
X@dirrm squirrelmail/plugins/mail_fetch
X@dirrm squirrelmail/plugins/newmail/sounds
X@dirrm squirrelmail/plugins/newmail
X@dirrm squirrelmail/plugins/filters/bulkquery
X@dirrm squirrelmail/plugins/filters
X@dirrm squirrelmail/plugins
X@dirrm squirrelmail/locale/it_IT/LC_MESSAGES
X@dirrm squirrelmail/locale/it_IT
X@dirrm squirrelmail/locale/zh_TW/LC_MESSAGES
X@dirrm squirrelmail/locale/zh_TW
X@dirrm squirrelmail/locale/zh_CN/LC_MESSAGES
X@dirrm squirrelmail/locale/zh_CN
X@dirrm squirrelmail/locale/ca_ES/LC_MESSAGES
X@dirrm squirrelmail/locale/ca_ES
X@dirrm squirrelmail/locale/cs_CZ/LC_MESSAGES
X@dirrm squirrelmail/locale/cs_CZ
X@dirrm squirrelmail/locale/da_DK/LC_MESSAGES
X@dirrm squirrelmail/locale/da_DK
X@dirrm squirrelmail/locale/de_DE/LC_MESSAGES
X@dirrm squirrelmail/locale/de_DE
X@dirrm squirrelmail/locale/es_ES/LC_MESSAGES
X@dirrm squirrelmail/locale/es_ES
X@dirrm squirrelmail/locale/et_EE/LC_MESSAGES
X@dirrm squirrelmail/locale/et_EE
X@dirrm squirrelmail/locale/fi_FI/LC_MESSAGES
X@dirrm squirrelmail/locale/fi_FI
X@dirrm squirrelmail/locale/fr_FR/LC_MESSAGES
X@dirrm squirrelmail/locale/fr_FR
X@dirrm squirrelmail/locale/he_HE/LC_MESSAGES
X@dirrm squirrelmail/locale/he_HE
X@dirrm squirrelmail/locale/hr_HR/LC_MESSAGES
X@dirrm squirrelmail/locale/hr_HR
X@dirrm squirrelmail/locale/hu_HU/LC_MESSAGES
X@dirrm squirrelmail/locale/hu_HU
X@dirrm squirrelmail/locale/id_ID/LC_MESSAGES
X@dirrm squirrelmail/locale/id_ID
X@dirrm squirrelmail/locale/is_IS/LC_MESSAGES
X@dirrm squirrelmail/locale/is_IS
X@dirrm squirrelmail/locale/tr_TR/LC_MESSAGES
X@dirrm squirrelmail/locale/tr_TR
X@dirrm squirrelmail/locale/bg_BG/LC_MESSAGES
X@dirrm squirrelmail/locale/bg_BG
X@dirrm squirrelmail/locale/lt_LT/LC_MESSAGES
X@dirrm squirrelmail/locale/lt_LT
X@dirrm squirrelmail/locale/nl_NL/LC_MESSAGES
X@dirrm squirrelmail/locale/nl_NL
X@dirrm squirrelmail/locale/nn_NO/LC_MESSAGES
X@dirrm squirrelmail/locale/nn_NO
X@dirrm squirrelmail/locale/no_NO/LC_MESSAGES
X@dirrm squirrelmail/locale/no_NO
X@dirrm squirrelmail/locale/pl_PL/LC_MESSAGES
X@dirrm squirrelmail/locale/pl_PL
X@dirrm squirrelmail/locale/pt_BR/LC_MESSAGES
X@dirrm squirrelmail/locale/pt_BR
X@dirrm squirrelmail/locale/pt_PT/LC_MESSAGES
X@dirrm squirrelmail/locale/pt_PT
X@dirrm squirrelmail/locale/ro_RO/LC_MESSAGES
X@dirrm squirrelmail/locale/ro_RO
X@dirrm squirrelmail/locale/ru_RU/LC_MESSAGES
X@dirrm squirrelmail/locale/ru_RU
X@dirrm squirrelmail/locale/sk_SK/LC_MESSAGES
X@dirrm squirrelmail/locale/sk_SK
X@dirrm squirrelmail/locale/sl_SI/LC_MESSAGES
X@dirrm squirrelmail/locale/sl_SI
X@dirrm squirrelmail/locale/sr_YU/LC_MESSAGES
X@dirrm squirrelmail/locale/sr_YU
X@dirrm squirrelmail/locale/sv_SE/LC_MESSAGES
X@dirrm squirrelmail/locale/sv_SE
X@dirrm squirrelmail/locale/th_TH/LC_MESSAGES
X@dirrm squirrelmail/locale/th_TH
X@dirrm squirrelmail/locale/ko_KR/LC_MESSAGES
X@dirrm squirrelmail/locale/ko_KR
X@dirrm squirrelmail/locale
X@dirrm squirrelmail/class
X@dirrm squirrelmail/config
X@dirrm squirrelmail/help/it_IT
X@dirrm squirrelmail/help/th_TH
X@dirrm squirrelmail/help/cs_CZ
X@dirrm squirrelmail/help/de_DE
X@dirrm squirrelmail/help/en_US
X@dirrm squirrelmail/help/es_ES
X@dirrm squirrelmail/help/fi_FI
X@dirrm squirrelmail/help/fr_FR
X@dirrm squirrelmail/help/id_ID
X@dirrm squirrelmail/help/sv_SE
X@dirrm squirrelmail/help/ca_ES
X@dirrm squirrelmail/help/lt_LT
X@dirrm squirrelmail/help/nl_NL
X@dirrm squirrelmail/help/pl_PL
X@dirrm squirrelmail/help/pt_BR
X@dirrm squirrelmail/help/pt_PT
X@dirrm squirrelmail/help/ru_RU
X@dirrm squirrelmail/help/sl_SI
X@dirrm squirrelmail/help/ko_KR
X@dirrm squirrelmail/help
X@dirrm squirrelmail/functions
X@dirrm squirrelmail/doc/ReleaseNotes/1.2
X@dirrm squirrelmail/doc/ReleaseNotes/1.3
X@dirrm squirrelmail/doc/ReleaseNotes
X@dirrm squirrelmail/doc
X@dirrm squirrelmail/data
X@dirrm squirrelmail/themes/css
X@dirrm squirrelmail/themes
X@dirrm squirrelmail/css
X@dirrm squirrelmail
END-of-squirrelmail-devel/pkg-plist
echo x - squirrelmail-devel/distinfo
sed 's/^X//' >squirrelmail-devel/distinfo << 'END-of-squirrelmail-devel/distinfo'
XMD5 (squirrelmail-1.3.1.tar.bz2) = 35ba69fe88b45faa5296ec43e46965b9
END-of-squirrelmail-devel/distinfo
exit

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E17hFs3-0003VO-00>