Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 02 Jan 2002 16:38:28 +0000
From:      Simon Dick <simond@irrelevant.org>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/33475: New port: SquirrelMail (PHP WebMail system) mail/squirrelmail
Message-ID:  <E16LoPM-000CYD-00@nelly.internal.irrelevant.org>

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

>Number:         33475
>Category:       ports
>Synopsis:       New port: SquirrelMail (PHP WebMail system) mail/squirrelmail
>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:   Wed Jan 02 08:40:02 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Simon Dick
>Release:        FreeBSD 4.4-RELEASE-p1 i386
>Organization:
>Environment:
System: FreeBSD nelly.internal.irrelevant.org 4.4-RELEASE-p1 FreeBSD 4.4-RELEASE-p1 #1: Sun Dec 16 21:20:07 GMT 2001 root@nelly.internal.irrelevant.org:/usr/obj/usr/src/sys/ELEPHANT i386


>Description:

New port, obsoletes ports/33282 so please close that pr (noted in that
pr too).

>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
#	squirrelmail/Makefile
#	squirrelmail/pkg-comment
#	squirrelmail/distinfo
#	squirrelmail/pkg-descr
#	squirrelmail/files
#	squirrelmail/files/config.php
#	squirrelmail/pkg-message
#	squirrelmail/pkg-plist
#
echo c - squirrelmail
mkdir -p squirrelmail > /dev/null 2>&1
echo x - squirrelmail/Makefile
sed 's/^X//' >squirrelmail/Makefile << 'END-of-squirrelmail/Makefile'
X# New ports collection makefile for: squirrelmail
X# Date created: 27 December 2001
X# Whom: Simon Dick <simond@irrelevant.org>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	squirrelmail
XPORTVERSION=	1.2.2
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
X
Xdo-install:
X	${MKDIR} /var/spool/squirrelmail ${PREFIX}/squirrelmail
X	${CHOWN} www:www /var/spool/squirrelmail ${PREFIX}/squirrelmail
X	${CP} -r ${WRKSRC}/* ${PREFIX}/squirrelmail
X	${CHOWN} -R www:www ${PREFIX}/squirrelmail
X	${INSTALL_DATA} -g www -o www ${FILESDIR}/config.php ${PREFIX}/squirrelmail/config/
X
Xpost-install:
X	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
X
X.include <bsd.port.mk>
END-of-squirrelmail/Makefile
echo x - squirrelmail/pkg-comment
sed 's/^X//' >squirrelmail/pkg-comment << 'END-of-squirrelmail/pkg-comment'
XA webmail system which accesses mail over IMAP
END-of-squirrelmail/pkg-comment
echo x - squirrelmail/distinfo
sed 's/^X//' >squirrelmail/distinfo << 'END-of-squirrelmail/distinfo'
XMD5 (squirrelmail-1.2.2.tar.bz2) = 8615997f6206dede745a2d1f6e9e7e0c
END-of-squirrelmail/distinfo
echo x - squirrelmail/pkg-descr
sed 's/^X//' >squirrelmail/pkg-descr << 'END-of-squirrelmail/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/pkg-descr
echo c - squirrelmail/files
mkdir -p squirrelmail/files > /dev/null 2>&1
echo x - squirrelmail/files/config.php
sed 's/^X//' >squirrelmail/files/config.php << 'END-of-squirrelmail/files/config.php'
X<?php
X
X/**
X * SquirrelMail Configuration File
X * Created using the configure script, conf.pl
X */
X
Xglobal $config_version, $config_use_color;
X$config_version = '1.2.0';
X$config_use_color = 2;
X
Xglobal $org_name, $org_logo, $org_title, $signout_page;
X$org_name      = "SquirrelMail";
X$org_logo      = '../images/sm_logo.png';
X$org_title     = "SquirrelMail $version";
X$signout_page  = '';
X
Xglobal $motd;
X$motd = '';
X
Xglobal $squirrelmail_default_language;
X$squirrelmail_default_language = 'en';
X
Xglobal $domain, $imapServerAddress, $imapPort;
Xglobal $useSendmail, $smtpServerAddress, $smtpPort;
Xglobal $sendmail_path, $use_authenticated_smtp;
Xglobal $imap_server_type, $invert_time;
Xglobal $optional_delimiter;
X$domain                 = 'mydomain.com';
X$imapServerAddress      = 'localhost';
X$imapPort               = 143;
X$useSendmail            = true;
X$smtpServerAddress      = 'localhost';
X$smtpPort               = 25;
X$sendmail_path          = '/usr/sbin/sendmail';
X$use_authenticated_smtp = false;
X$imap_server_type       = 'cyrus';
X$invert_time            = false;
X$optional_delimiter     = 'detect';
X
Xglobal $default_folder_prefix;
Xglobal $trash_folder, $default_move_to_trash;
Xglobal $sent_folder, $default_move_to_sent;
Xglobal $draft_folder, $default_save_to_draft;
Xglobal $show_prefix_option, $list_special_folders_first;
Xglobal $use_special_folder_color, $auto_expunge;
Xglobal $default_sub_of_inbox;
Xglobal $show_contain_subfolders_option;
Xglobal $default_unseen_notify;
Xglobal $default_unseen_type, $auto_create_special;
X$default_folder_prefix          = '';
X$trash_folder                   = 'INBOX.Trash';
X$sent_folder                    = 'INBOX.Sent';
X$draft_folder                   = 'INBOX.Drafts';
X$default_move_to_trash          = true;
X$default_move_to_sent           = true;
X$default_save_as_draft          = true;
X$show_prefix_option             = false;
X$list_special_folders_first     = true;
X$use_special_folder_color       = true;
X$auto_expunge                   = true;
X$default_sub_of_inbox           = true;
X$show_contain_subfolders_option = false;
X$default_unseen_notify          = 2;
X$default_unseen_type            = 1;
X$auto_create_special            = true;
X
Xglobal $default_charset;
Xglobal $data_dir, $attachment_dir, $dir_hash_level;
Xglobal $default_left_size, $force_username_lowercase;
Xglobal $default_use_priority, $hide_sm_attributions;
X$default_charset          = 'iso-8859-1';
X$data_dir                 = '../data/';
X$attachment_dir           = "/var/spool/squirrelmail/";
X$dir_hash_level           = 0;
X$default_left_size        = 150;
X$force_username_lowercase = false;
X$default_use_priority     = true;
X$hide_sm_attributions     = false;
X
Xglobal $plugins;
X
Xglobal $theme_css, $theme;
X$theme_css = '';
X$theme[0]['PATH'] = '../themes/default_theme.php';
X$theme[0]['NAME'] = 'Default';
X$theme[1]['PATH'] = '../themes/plain_blue_theme.php';
X$theme[1]['NAME'] = 'Plain Blue';
X$theme[2]['PATH'] = '../themes/sandstorm_theme.php';
X$theme[2]['NAME'] = 'Sand Storm';
X$theme[3]['PATH'] = '../themes/deepocean_theme.php';
X$theme[3]['NAME'] = 'Deep Ocean';
X$theme[4]['PATH'] = '../themes/slashdot_theme.php';
X$theme[4]['NAME'] = 'Slashdot';
X$theme[5]['PATH'] = '../themes/purple_theme.php';
X$theme[5]['NAME'] = 'Purple';
X$theme[6]['PATH'] = '../themes/forest_theme.php';
X$theme[6]['NAME'] = 'Forest';
X$theme[7]['PATH'] = '../themes/ice_theme.php';
X$theme[7]['NAME'] = 'Ice';
X$theme[8]['PATH'] = '../themes/seaspray_theme.php';
X$theme[8]['NAME'] = 'Sea Spray';
X$theme[9]['PATH'] = '../themes/bluesteel_theme.php';
X$theme[9]['NAME'] = 'Blue Steel';
X$theme[10]['PATH'] = '../themes/dark_grey_theme.php';
X$theme[10]['NAME'] = 'Dark Grey';
X$theme[11]['PATH'] = '../themes/high_contrast_theme.php';
X$theme[11]['NAME'] = 'High Contrast';
X$theme[12]['PATH'] = '../themes/black_bean_burrito_theme.php';
X$theme[12]['NAME'] = 'Black Bean Burrito';
X$theme[13]['PATH'] = '../themes/servery_theme.php';
X$theme[13]['NAME'] = 'Servery';
X$theme[14]['PATH'] = '../themes/maize_theme.php';
X$theme[14]['NAME'] = 'Maize';
X$theme[15]['PATH'] = '../themes/bluesnews_theme.php';
X$theme[15]['NAME'] = 'BluesNews';
X$theme[16]['PATH'] = '../themes/deepocean2_theme.php';
X$theme[16]['NAME'] = 'Deep Ocean 2';
X$theme[17]['PATH'] = '../themes/blue_gray_theme.php';
X$theme[17]['NAME'] = 'Blue Gray';
X$theme[18]['PATH'] = '../themes/dompie_theme.php';
X$theme[18]['NAME'] = 'Dompie';
X$theme[19]['PATH'] = '../themes/methodical_theme.php';
X$theme[19]['NAME'] = 'Methodical';
X$theme[20]['PATH'] = '../themes/greenhouse_effect.php';
X$theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
X$theme[21]['PATH'] = '../themes/in_the_pink.php';
X$theme[21]['NAME'] = 'In The Pink (Changes)';
X$theme[22]['PATH'] = '../themes/kind_of_blue.php';
X$theme[22]['NAME'] = 'Kind of Blue (Changes)';
X$theme[23]['PATH'] = '../themes/monostochastic.php';
X$theme[23]['NAME'] = 'Monostochastic (Changes)';
X$theme[24]['PATH'] = '../themes/shades_of_grey.php';
X$theme[24]['NAME'] = 'Shades of Grey (Changes)';
X$theme[25]['PATH'] = '../themes/spice_of_life.php';
X$theme[25]['NAME'] = 'Spice of Life (Changes)';
X$theme[26]['PATH'] = '../themes/spice_of_life_lite.php';
X$theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
X$theme[27]['PATH'] = '../themes/spice_of_life_dark.php';
X$theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
X$theme[28]['PATH'] = '../themes/christmas.php';
X$theme[28]['NAME'] = 'Holiday - Christmas';
X$theme[29]['PATH'] = '../themes/darkness.php';
X$theme[29]['NAME'] = 'Darkness (Changes)';
X
Xglobal $default_use_javascript_addr_book, $ldap_server;
X$default_use_javascript_addr_book = false;
X/**
X * Make sure there are no characters after the PHP closing
X * tag below (including newline characters and whitespace).
X * Otherwise, that character will cause the headers to be
X * sent and regular output to begin, which will majorly screw
X * things up when we try to send more headers later.
X */
X?>
END-of-squirrelmail/files/config.php
echo x - squirrelmail/pkg-message
sed 's/^X//' >squirrelmail/pkg-message << 'END-of-squirrelmail/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.
X
XIn order to do your administrative configuration you need to 
Xcd %%PREFIX%%/squirrelmail && ./configure
X
END-of-squirrelmail/pkg-message
echo x - squirrelmail/pkg-plist
sed 's/^X//' >squirrelmail/pkg-plist << 'END-of-squirrelmail/pkg-plist'
Xsquirrelmail/config/conf.pl
Xsquirrelmail/config/config_default.php
Xsquirrelmail/config/index.php
Xsquirrelmail/config/ri_once.pl
Xsquirrelmail/config/config.php
X@dirrm squirrelmail/config
Xsquirrelmail/src/webmail.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/login.php
Xsquirrelmail/src/left_main.php
Xsquirrelmail/src/load_prefs.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/addrbook_popup.php
X@dirrm squirrelmail/src
Xsquirrelmail/po/charsetconvert.pl
Xsquirrelmail/po/compilepo
Xsquirrelmail/po/index.php
Xsquirrelmail/po/mergepo
Xsquirrelmail/po/squirrelmail.po
Xsquirrelmail/po/xgetpo
X@dirrm squirrelmail/po
Xsquirrelmail/plugins/newmail/sounds/FanFair.wav
Xsquirrelmail/plugins/newmail/sounds/Friends.wav
Xsquirrelmail/plugins/newmail/sounds/MontyPython.wav
Xsquirrelmail/plugins/newmail/sounds/Notify.wav
X@dirrm squirrelmail/plugins/newmail/sounds
Xsquirrelmail/plugins/newmail/HISTORY
Xsquirrelmail/plugins/newmail/README
Xsquirrelmail/plugins/newmail/newmail.php
Xsquirrelmail/plugins/newmail/newmail_opt.php
Xsquirrelmail/plugins/newmail/setup.php
Xsquirrelmail/plugins/newmail/testsound.php
X@dirrm squirrelmail/plugins/newmail
Xsquirrelmail/plugins/translate/index.php
Xsquirrelmail/plugins/translate/INSTALL
Xsquirrelmail/plugins/translate/README
Xsquirrelmail/plugins/translate/options.php
Xsquirrelmail/plugins/translate/setup.php
X@dirrm squirrelmail/plugins/translate
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
X@dirrm squirrelmail/plugins/squirrelspell/js
Xsquirrelmail/plugins/squirrelspell/doc/ChangeLog
Xsquirrelmail/plugins/squirrelspell/doc/CRYPTO
Xsquirrelmail/plugins/squirrelspell/doc/UPGRADING
Xsquirrelmail/plugins/squirrelspell/doc/PRIVACY
Xsquirrelmail/plugins/squirrelspell/doc/README
Xsquirrelmail/plugins/squirrelspell/doc/index.php
X@dirrm squirrelmail/plugins/squirrelspell/doc
Xsquirrelmail/plugins/squirrelspell/modules/options_main.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/check_me.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/crypto.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/crypto_badkey.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/edit_dic.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/enc_setup.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/forget_me.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/forget_me_not.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/index.php
Xsquirrelmail/plugins/squirrelspell/modules/init.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/lang_change.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/lang_setup.mod.php
Xsquirrelmail/plugins/squirrelspell/modules/WHATISTHIS
X@dirrm squirrelmail/plugins/squirrelspell/modules
Xsquirrelmail/plugins/squirrelspell/index.php
Xsquirrelmail/plugins/squirrelspell/sqspell_functions.php
Xsquirrelmail/plugins/squirrelspell/sqspell_interface.php
Xsquirrelmail/plugins/squirrelspell/sqspell_options.php
Xsquirrelmail/plugins/squirrelspell/sqspell_config.php
Xsquirrelmail/plugins/squirrelspell/INSTALL
Xsquirrelmail/plugins/squirrelspell/setup.php
X@dirrm squirrelmail/plugins/squirrelspell
Xsquirrelmail/plugins/sent_subfolders/setup.php
X@dirrm squirrelmail/plugins/sent_subfolders
Xsquirrelmail/plugins/filters/index.php
Xsquirrelmail/plugins/filters/CHANGES
Xsquirrelmail/plugins/filters/README
Xsquirrelmail/plugins/filters/filters.php
Xsquirrelmail/plugins/filters/options.php
Xsquirrelmail/plugins/filters/setup.php
Xsquirrelmail/plugins/filters/spamoptions.php
X@dirrm squirrelmail/plugins/filters
Xsquirrelmail/plugins/bug_report/setup.php
Xsquirrelmail/plugins/bug_report/INSTALL
Xsquirrelmail/plugins/bug_report/README
Xsquirrelmail/plugins/bug_report/bug_report.php
X@dirrm squirrelmail/plugins/bug_report
Xsquirrelmail/plugins/mail_fetch/functions.php
Xsquirrelmail/plugins/mail_fetch/README
Xsquirrelmail/plugins/mail_fetch/class.POP3.php
Xsquirrelmail/plugins/mail_fetch/fetch.php
Xsquirrelmail/plugins/mail_fetch/mailfetch.po
Xsquirrelmail/plugins/mail_fetch/options.php
Xsquirrelmail/plugins/mail_fetch/setup.php
X@dirrm squirrelmail/plugins/mail_fetch
Xsquirrelmail/plugins/make_archive.pl
Xsquirrelmail/plugins/index.php
Xsquirrelmail/plugins/README.plugins
X@dirrm squirrelmail/plugins
Xsquirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/zh_TW/LC_MESSAGES
X@dirrm squirrelmail/locale/zh_TW
Xsquirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/bg_BG/LC_MESSAGES
X@dirrm squirrelmail/locale/bg_BG
Xsquirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/ca_ES/LC_MESSAGES
X@dirrm squirrelmail/locale/ca_ES
Xsquirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/cs_CZ/LC_MESSAGES
X@dirrm squirrelmail/locale/cs_CZ
Xsquirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/da_DK/LC_MESSAGES
X@dirrm squirrelmail/locale/da_DK
Xsquirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/de_DE/LC_MESSAGES
X@dirrm squirrelmail/locale/de_DE
Xsquirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/es_ES/LC_MESSAGES
X@dirrm squirrelmail/locale/es_ES
Xsquirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/et_EE/LC_MESSAGES
X@dirrm squirrelmail/locale/et_EE
Xsquirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/fi_FI/LC_MESSAGES
X@dirrm squirrelmail/locale/fi_FI
Xsquirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/fr_FR/LC_MESSAGES
X@dirrm squirrelmail/locale/fr_FR
Xsquirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/hr_HR/LC_MESSAGES
X@dirrm squirrelmail/locale/hr_HR
Xsquirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/hu_HU/LC_MESSAGES
X@dirrm squirrelmail/locale/hu_HU
Xsquirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/id_ID/LC_MESSAGES
X@dirrm squirrelmail/locale/id_ID
Xsquirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/is_IS/LC_MESSAGES
X@dirrm squirrelmail/locale/is_IS
Xsquirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/it_IT/LC_MESSAGES
X@dirrm squirrelmail/locale/it_IT
Xsquirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/ko_KR/LC_MESSAGES
X@dirrm squirrelmail/locale/ko_KR
Xsquirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/lt_LT/LC_MESSAGES
X@dirrm squirrelmail/locale/lt_LT
Xsquirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/nl_NL/LC_MESSAGES
X@dirrm squirrelmail/locale/nl_NL
Xsquirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/nn_NO/LC_MESSAGES
X@dirrm squirrelmail/locale/nn_NO
Xsquirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/no_NO/LC_MESSAGES
X@dirrm squirrelmail/locale/no_NO
Xsquirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/pl_PL/LC_MESSAGES
X@dirrm squirrelmail/locale/pl_PL
Xsquirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/pt_BR/LC_MESSAGES
X@dirrm squirrelmail/locale/pt_BR
Xsquirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/pt_PT/LC_MESSAGES
X@dirrm squirrelmail/locale/pt_PT
Xsquirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/ro_RO/LC_MESSAGES
X@dirrm squirrelmail/locale/ro_RO
Xsquirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/ru_RU/LC_MESSAGES
X@dirrm squirrelmail/locale/ru_RU
Xsquirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/sk_SK/LC_MESSAGES
X@dirrm squirrelmail/locale/sk_SK
Xsquirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/sl_SI/LC_MESSAGES
X@dirrm squirrelmail/locale/sl_SI
Xsquirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/sr_YU/LC_MESSAGES
X@dirrm squirrelmail/locale/sr_YU
Xsquirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/sv_SE/LC_MESSAGES
X@dirrm squirrelmail/locale/sv_SE
Xsquirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/th_TH/LC_MESSAGES
X@dirrm squirrelmail/locale/th_TH
Xsquirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
Xsquirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.po
X@dirrm squirrelmail/locale/tr_TR/LC_MESSAGES
X@dirrm squirrelmail/locale/tr_TR
Xsquirrelmail/locale/index.php
X@dirrm squirrelmail/locale
Xsquirrelmail/themes/spice_of_life_lite.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/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/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/README.themes
X@dirrm squirrelmail/themes
Xsquirrelmail/images/down_pointer.png
Xsquirrelmail/images/index.php
Xsquirrelmail/images/sm_logo.jpg
Xsquirrelmail/images/sm_logo.png
Xsquirrelmail/images/sort_none.png
Xsquirrelmail/images/up_pointer.png
X@dirrm squirrelmail/images
Xsquirrelmail/help/th_TH/search.hlp
Xsquirrelmail/help/th_TH/FAQ.hlp
Xsquirrelmail/help/th_TH/addresses.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/basic.hlp
X@dirrm squirrelmail/help/th_TH
Xsquirrelmail/help/ca_ES/search.hlp
Xsquirrelmail/help/ca_ES/FAQ.hlp
Xsquirrelmail/help/ca_ES/addresses.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/basic.hlp
X@dirrm squirrelmail/help/ca_ES
Xsquirrelmail/help/cs_CZ/search.hlp
Xsquirrelmail/help/cs_CZ/FAQ.hlp
Xsquirrelmail/help/cs_CZ/addresses.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/basic.hlp
X@dirrm squirrelmail/help/cs_CZ
Xsquirrelmail/help/en_US/search.hlp
Xsquirrelmail/help/en_US/FAQ.hlp
Xsquirrelmail/help/en_US/addresses.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/basic.hlp
X@dirrm squirrelmail/help/en_US
Xsquirrelmail/help/es_ES/search.hlp
Xsquirrelmail/help/es_ES/FAQ.hlp
Xsquirrelmail/help/es_ES/addresses.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/basic.hlp
X@dirrm squirrelmail/help/es_ES
Xsquirrelmail/help/fi_FI/search.hlp
Xsquirrelmail/help/fi_FI/FAQ.hlp
Xsquirrelmail/help/fi_FI/addresses.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/basic.hlp
X@dirrm squirrelmail/help/fi_FI
Xsquirrelmail/help/fr_FR/search.hlp
Xsquirrelmail/help/fr_FR/FAQ.hlp
Xsquirrelmail/help/fr_FR/addresses.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/basic.hlp
X@dirrm squirrelmail/help/fr_FR
Xsquirrelmail/help/id_ID/search.hlp
Xsquirrelmail/help/id_ID/FAQ.hlp
Xsquirrelmail/help/id_ID/addresses.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/basic.hlp
X@dirrm squirrelmail/help/id_ID
Xsquirrelmail/help/it_IT/search.hlp
Xsquirrelmail/help/it_IT/FAQ.hlp
Xsquirrelmail/help/it_IT/addresses.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/basic.hlp
X@dirrm squirrelmail/help/it_IT
Xsquirrelmail/help/ko_KR/search.hlp
Xsquirrelmail/help/ko_KR/FAQ.hlp
Xsquirrelmail/help/ko_KR/addresses.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/basic.hlp
X@dirrm squirrelmail/help/ko_KR
Xsquirrelmail/help/lt_LT/search.hlp
Xsquirrelmail/help/lt_LT/FAQ.hlp
Xsquirrelmail/help/lt_LT/addresses.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/basic.hlp
X@dirrm squirrelmail/help/lt_LT
Xsquirrelmail/help/nl_NL/search.hlp
Xsquirrelmail/help/nl_NL/FAQ.hlp
Xsquirrelmail/help/nl_NL/addresses.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/basic.hlp
X@dirrm squirrelmail/help/nl_NL
Xsquirrelmail/help/pl_PL/search.hlp
Xsquirrelmail/help/pl_PL/FAQ.hlp
Xsquirrelmail/help/pl_PL/addresses.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/basic.hlp
X@dirrm squirrelmail/help/pl_PL
Xsquirrelmail/help/pt_BR/search.hlp
Xsquirrelmail/help/pt_BR/FAQ.hlp
Xsquirrelmail/help/pt_BR/addresses.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/basic.hlp
X@dirrm squirrelmail/help/pt_BR
Xsquirrelmail/help/pt_PT/search.hlp
Xsquirrelmail/help/pt_PT/FAQ.hlp
Xsquirrelmail/help/pt_PT/addresses.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/basic.hlp
X@dirrm squirrelmail/help/pt_PT
Xsquirrelmail/help/ru_RU/search.hlp
Xsquirrelmail/help/ru_RU/FAQ.hlp
Xsquirrelmail/help/ru_RU/addresses.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/basic.hlp
X@dirrm squirrelmail/help/ru_RU
Xsquirrelmail/help/sl_SI/search.hlp
Xsquirrelmail/help/sl_SI/FAQ.hlp
Xsquirrelmail/help/sl_SI/addresses.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/basic.hlp
X@dirrm squirrelmail/help/sl_SI
Xsquirrelmail/help/sv_SE/search.hlp
Xsquirrelmail/help/sv_SE/FAQ.hlp
Xsquirrelmail/help/sv_SE/addresses.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/basic.hlp
X@dirrm squirrelmail/help/sv_SE
Xsquirrelmail/help/index.php
X@dirrm squirrelmail/help
Xsquirrelmail/functions/url_parser.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/gettext.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_search.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/abook_database.php
X@dirrm squirrelmail/functions
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.0.txt
Xsquirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.1.txt
X@dirrm squirrelmail/doc/ReleaseNotes/1.2
X@dirrm squirrelmail/doc/ReleaseNotes
Xsquirrelmail/doc/README.russian_apache
Xsquirrelmail/doc/addressbook.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
X@dirrm squirrelmail/doc
Xsquirrelmail/data/default_pref
Xsquirrelmail/data/index.php
X@dirrm squirrelmail/data
Xsquirrelmail/AUTHORS
Xsquirrelmail/index.php
Xsquirrelmail/UPGRADE
Xsquirrelmail/ReleaseNotes
Xsquirrelmail/README
Xsquirrelmail/MIRRORS
Xsquirrelmail/INSTALL
Xsquirrelmail/ChangeLog
Xsquirrelmail/COPYING
Xsquirrelmail/configure
X@dirrm squirrelmail
END-of-squirrelmail/pkg-plist
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?E16LoPM-000CYD-00>