- Update to 1.46 -- Fixes multiply vulnerabilities

PR:		ports/93774
Submitted by:	Thomas Vogt <thomas@bsdunix.ch>
Reworked by:	maintainer
Approved by:	portmgr (linimon), maintainer
Security:	CVE-2006-0195
		CVE-2006-0377
		CVE-2006-0188
		CVE-2005-1769
		CVE-2005-2095
This commit is contained in:
Renato Botelho 2006-03-01 20:23:17 +00:00
parent 2098e5e621
commit 66bb357d64
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156916
7 changed files with 217 additions and 213 deletions

View File

@ -6,13 +6,12 @@
#
PORTNAME= squirrelmail
PORTVERSION?= 1.4.5
PORTREVISION?= 3
PORTVERSION?= 1.4.6
CATEGORIES?= mail www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= squirrelmail
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
all_locales-${PORTVERSION}-20050904${EXTRACT_SUFX}
all_locales-${PORTVERSION}-20060221${EXTRACT_SUFX}
DIST_SUBDIR= squirrelmail
MAINTAINER?= simond@irrelevant.org
@ -24,7 +23,6 @@ USE_PHP= session mhash gettext mbstring pcre openssl xml
WANT_PHP_WEB= yes
USE_BZIP2= yes
USE_REINPLACE= yes
.ifdef WITH_DATABASE
WANT_PHP_PEAR= yes
@ -64,15 +62,7 @@ slaveport-post-patch:
post-patch: slaveport-post-patch
.ifndef PATCH_DEBUG
@${RM} -f ${WRKSRC}/config/config_default.php.orig \
${WRKSRC}/src/configtest.php.orig \
${WRKSRC}/src/search.php.orig \
${WRKSRC}/class/mime/Rfc822Header.class.php.orig \
${WRKSRC}/functions/imap_messages.php.orig \
${WRKSRC}/plugins/listcommands/setup.php.orig \
${WRKSRC}/class/mime/Message.class.php.orig \
${WRKSRC}/class/deliver/Deliver.class.php.orig \
${WRKSRC}/functions/imap_general.php.orig
@${RM} -f ${WRKSRC}/config/config_default.php.orig
.endif
@${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \
${MASTERDIR}/pkg-install > ${PKGINSTALL}

View File

@ -1,6 +1,6 @@
MD5 (squirrelmail/squirrelmail-1.4.5.tar.bz2) = bcfe0c1d4049e9c26e0040b2fa3adb07
SHA256 (squirrelmail/squirrelmail-1.4.5.tar.bz2) = 9e0d5ef38b490265e287fa600bcb326c87309189fdb4b973cf5515d3a397d126
SIZE (squirrelmail/squirrelmail-1.4.5.tar.bz2) = 480226
MD5 (squirrelmail/all_locales-1.4.5-20050904.tar.bz2) = f75557ad06787c15f92dff9fcfe30632
SHA256 (squirrelmail/all_locales-1.4.5-20050904.tar.bz2) = 32919291f42c73795243963f137a75d88eb1aff79eed0fc5608f45f17c6d20ad
SIZE (squirrelmail/all_locales-1.4.5-20050904.tar.bz2) = 2169815
MD5 (squirrelmail/squirrelmail-1.4.6.tar.bz2) = 300ddcf66b7907a61b6e9404840e35de
SHA256 (squirrelmail/squirrelmail-1.4.6.tar.bz2) = 8694412708eeb1f4029a4850e69f4a6891b0959e6315572013f4db9d3addc9d3
SIZE (squirrelmail/squirrelmail-1.4.6.tar.bz2) = 484099
MD5 (squirrelmail/all_locales-1.4.6-20060221.tar.bz2) = 29dfec2e0f71fba368a89c36c51881c2
SHA256 (squirrelmail/all_locales-1.4.6-20060221.tar.bz2) = e29b017deb84e7a3656ed846b2387911e4c7275e88fd3d6761528dbaa7510ac4
SIZE (squirrelmail/all_locales-1.4.6-20060221.tar.bz2) = 2448102

View File

@ -1,24 +0,0 @@
diff -u -r1.18.2.22 -r1.18.2.23
--- class/deliver/Deliver.class.php 2005/06/03 19:51:11 1.18.2.22
+++ class/deliver/Deliver.class.php 2005/07/20 09:00:08 1.18.2.23
@@ -8,7 +8,7 @@
* This contains all the functions needed to send messages through
* a delivery backend.
*
- * $Id: Deliver.class.php,v 1.18.2.22 2005/06/03 19:51:11 pdontthink Exp $
+ * $Id: Deliver.class.php,v 1.18.2.23 2005/07/20 09:00:08 tokul Exp $
*
* @author Marc Groot Koerkamp
* @package squirrelmail
@@ -447,7 +447,10 @@
/* Insert the rest of the header fields */
$header[] = 'Message-ID: '. $message_id . $rn;
- if ($reply_rfc822_header->message_id) {
+ if (is_object($reply_rfc822_header) &&
+ isset($reply_rfc822_header->message_id) &&
+ $reply_rfc822_header->message_id) {
+ //if ($reply_rfc822_header->message_id) {
$rep_message_id = $reply_rfc822_header->message_id;
// $this->strip_crlf($message_id);
$header[] = 'In-Reply-To: '.$rep_message_id . $rn;

View File

@ -1,57 +0,0 @@
diff -u -r1.17.2.8 -r1.17.2.10
--- class/mime/Message.class.php 2004/12/27 15:03:42 1.17.2.8
+++ class/mime/Message.class.php 2005/07/21 15:41:05 1.17.2.10
@@ -8,7 +8,7 @@
*
This contains functions needed to handle mime messages.
*
- * $Id: Message.class.php,v 1.17.2.8 2004/12/27 15:03:42 kink Exp $
+ * $Id: Message.class.php,v 1.17.2.10 2005/07/21 15:41:05 tokul Exp $
*/
class Message {
@@ -673,9 +673,9 @@
}
} else { /* Treat as multipart/mixed */
foreach ($this->entities as $ent) {
- if((strtolower($ent->header->disposition->name) != 'attachment') &&
- (!isset($ent->header->parameters['filename'])) &&
- (!isset($ent->header->parameters['name'])) &&
+ if(!(is_object($ent->header->disposition) && strtolower($ent->header->disposition->name) == 'attachment') &&
+ (!isset($ent->header->parameters['filename'])) &&
+ (!isset($ent->header->parameters['name'])) &&
(($ent->type0 != 'message') && ($ent->type1 != 'rfc822'))) {
$entity = $ent->findDisplayEntity($entity, $alt_order, $strict);
$found = true;
@@ -688,9 +688,10 @@
foreach ($alt_order as $alt) {
if( ($alt == $type) && isset($this->entity_id) ) {
if ((count($this->entities) == 0) &&
- (!isset($ent->header->parameters['filename'])) &&
- (!isset($ent->header->parameters['name'])) &&
- (strtolower($this->header->disposition->name) != 'attachment')) {
+ (!isset($this->header->parameters['filename'])) &&
+ (!isset($this->header->parameters['name'])) &&
+ (isset($this->header->disposition) && is_object($this->header->disposition) &&
+ strtolower($this->header->disposition->name) != 'attachment')) {
$entity[] = $this->entity_id;
$found = true;
}
@@ -699,7 +700,7 @@
}
if(!$found) {
foreach ($this->entities as $ent) {
- if((strtolower($ent->header->disposition->name) != 'attachment') &&
+ if(!(is_object($ent->header->disposition) && strtolower($ent->header->disposition->name) == 'attachment') &&
(($ent->type0 != 'message') && ($ent->type1 != 'rfc822'))) {
$entity = $ent->findDisplayEntity($entity, $alt_order, $strict);
$found = true;
@@ -711,7 +712,7 @@
in_array($this->type1, array('plain', 'html', 'message')) &&
isset($this->entity_id)) {
if (count($this->entities) == 0) {
- if (strtolower($this->header->disposition->name) != 'attachment') {
+ if (!is_object($this->header->disposition) || strtolower($this->header->disposition->name) != 'attachment') {
$entity[] = $this->entity_id;
}
}

View File

@ -1,21 +0,0 @@
diff -u -r1.140.2.29 -r1.140.2.30
--- functions/imap_general.php 2005/05/20 10:37:34 1.140.2.29
+++ functions/imap_general.php 2005/11/27 08:32:37 1.140.2.30
@@ -8,7 +8,7 @@
*
* This implements all functions that do general IMAP functions.
*
- * @version $Id: imap_general.php,v 1.140.2.29 2005/05/20 10:37:34 kink Exp $
+ * @version $Id: imap_general.php,v 1.140.2.30 2005/11/27 08:32:37 tokul Exp $
* @package squirrelmail
* @subpackage imap
*/
@@ -888,7 +888,7 @@
* Saves a message to a given folder -- used for saving sent messages
*/
function sqimap_append ($imap_stream, $sent_folder, $length) {
- fputs ($imap_stream, sqimap_session_id() . " APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n");
+ fputs ($imap_stream, sqimap_session_id() . " APPEND \"$sent_folder\" (\\Seen) {".$length."}\r\n");
$tmp = fgets ($imap_stream, 1024);
sqimap_append_checkresponse($tmp, $sent_folder);
}

View File

@ -1,92 +0,0 @@
diff -urN class/mime/Rfc822Header.class.php class/mime/Rfc822Header.class.php
--- class/mime/Rfc822Header.class.php 2005-02-07 12:26:49.000000000 +0200
+++ class/mime/Rfc822Header.class.php 2005-07-14 09:13:44.000000000 +0300
@@ -505,8 +505,9 @@
* functions/imap_messages. I'm not sure if it's ok here to call
* that function?
*/
- function parsePriority($value) {
- $value = strtolower(array_shift(split('/\w/',trim($value))));
+ function parsePriority($sValue) {
+ $aValue = split('/\w/',trim($sValue));
+ $value = strtolower(array_shift($aValue));
if ( is_numeric($value) ) {
return $value;
}
diff -urN functions/imap_messages.php functions/imap_messages.php
--- functions/imap_messages.php 2005-04-17 18:50:14.000000000 +0300
+++ functions/imap_messages.php 2005-07-14 09:23:02.991592896 +0300
@@ -476,8 +476,9 @@
* NOTE: this is actually a duplicate from the function in
* class/mime/Rfc822Header.php.
*/
-function parsePriority($value) {
- $value = strtolower(array_shift(split('/\w/',trim($value))));
+function parsePriority($sValue) {
+ $aValue=split('/\w/',trim($sValue));
+ $value = strtolower(array_shift($aValue));
if ( is_numeric($value) ) {
return $value;
}
diff -urN plugins/listcommands/setup.php plugins/listcommands/setup.php
--- plugins/listcommands/setup.php 2005-03-02 20:22:17.000000000 +0200
+++ plugins/listcommands/setup.php 2005-07-14 09:16:29.762372824 +0300
@@ -51,8 +51,9 @@
}
/* proto = {mailto,href} */
- $proto = array_shift(array_keys($actions));
- $act = array_shift($actions);
+ $aActionKeys = array_keys($actions);
+ $proto = array_shift($aActionKeys);
+ $act = array_shift($aActionKeys);
if ($proto == 'mailto') {
diff -urN src/configtest.php src/configtest.php
--- src/configtest.php 2005-05-23 20:12:39.000000000 +0300
+++ src/configtest.php 2005-07-14 09:44:30.071926944 +0300
@@ -314,7 +314,7 @@
echo "$IND iconv - ";
if (function_exists('iconv')) {
echo "Iconv functions are available.<br />\n";
-} elseif ($use_php_iconv) {
+} elseif (isset($use_php_iconv) && $use_php_iconv) {
echo "Iconv functions are unavailable.<br />\n";
do_err('Your configuration requires iconv support, but iconv support is missing.');
} else {
@@ -365,7 +365,8 @@
}
foreach($dsns as $type => $dsn) {
- $dbtype = array_shift(explode(':', $dsn));
+ $aDsn = explode(':', $dsn);
+ $dbtype = array_shift($aDsn);
if(isset($db_functions[$dbtype]) && function_exists($db_functions[$dbtype])) {
echo "$IND$dbtype database support present.<br />\n";
@@ -380,7 +381,7 @@
echo "$IND$type database connect successful.<br />\n";
} else {
- do_err($db.' database support not present!');
+ do_err($dbtype.' database support not present!');
}
}
} else {
diff -urN src/search.php src/search.php
--- src/search.php 2005-06-22 17:24:12.000000000 +0300
+++ src/search.php 2005-07-14 09:35:24.000000000 +0300
@@ -297,7 +297,11 @@
/* update the recent and saved searches from the pref files */
$attributes = get_recent($username, $data_dir);
$saved_attributes = get_saved($username, $data_dir);
-$saved_count = count($saved_attributes['saved_what']);
+if (isset($saved_attributes['saved_what'])) {
+ $saved_count = count($saved_attributes['saved_what']);
+} else {
+ $saved_count = 0;
+}
$count_all = 0;
/* Saved Search Table */

View File

@ -28,6 +28,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.4/Notes-1.4.3.txt
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.4/Notes-1.4.3a.txt
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.4/Notes-1.4.4.txt
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.4/Notes-1.4.5.txt
%%PORTDOCS%%%%DOCSDIR%%/UPGRADE
%%PORTDOCS%%%%DOCSDIR%%/authentication.txt
%%PORTDOCS%%%%DOCSDIR%%/db-backend.txt
@ -61,6 +62,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%PORTDOCS%%%%DOCSDIR%%/plugins/translate/README
%%PORTDOCS%%%%DOCSDIR%%/presets.txt
%%PORTDOCS%%%%DOCSDIR%%/russian_apache.txt
%%PORTDOCS%%%%DOCSDIR%%/security.txt
%%PORTDOCS%%%%DOCSDIR%%/themes.txt
%%PORTDOCS%%%%DOCSDIR%%/translating.txt
%%PORTDOCS%%%%DOCSDIR%%/translating_help.txt
@ -69,6 +71,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/class/deliver/Deliver_SMTP.class.php
%%SQUIRRELDIR%%/class/deliver/Deliver_SendMail.class.php
%%SQUIRRELDIR%%/class/deliver/index.php
%%SQUIRRELDIR%%/class/helper/index.php
%%SQUIRRELDIR%%/class/helper/VCard.class.php
%%SQUIRRELDIR%%/class/html.class.php
%%SQUIRRELDIR%%/class/index.php
@ -110,6 +113,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/functions/decode/cp1258.php
%%SQUIRRELDIR%%/functions/decode/cp855.php
%%SQUIRRELDIR%%/functions/decode/cp866.php
%%SQUIRRELDIR%%/functions/decode/index.php
%%SQUIRRELDIR%%/functions/decode/iso_8859_1.php
%%SQUIRRELDIR%%/functions/decode/iso_8859_10.php
%%SQUIRRELDIR%%/functions/decode/iso_8859_11.php
@ -136,6 +140,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/functions/encode/cp1251.php
%%SQUIRRELDIR%%/functions/encode/cp1255.php
%%SQUIRRELDIR%%/functions/encode/cp1256.php
%%SQUIRRELDIR%%/functions/encode/index.php
%%SQUIRRELDIR%%/functions/encode/iso_8859_1.php
%%SQUIRRELDIR%%/functions/encode/iso_8859_15.php
%%SQUIRRELDIR%%/functions/encode/iso_8859_2.php
@ -395,6 +400,15 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/help/sv_SE/options.hlp
%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp
%%SQUIRRELDIR%%/help/sv_SE/search.hlp
%%SQUIRRELDIR%%/help/th_TH/addresses.hlp
%%SQUIRRELDIR%%/help/th_TH/basic.hlp
%%SQUIRRELDIR%%/help/th_TH/compose.hlp
%%SQUIRRELDIR%%/help/th_TH/FAQ.hlp
%%SQUIRRELDIR%%/help/th_TH/folders.hlp
%%SQUIRRELDIR%%/help/th_TH/main_folder.hlp
%%SQUIRRELDIR%%/help/th_TH/options.hlp
%%SQUIRRELDIR%%/help/th_TH/read_mail.hlp
%%SQUIRRELDIR%%/help/th_TH/search.hlp
%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp
%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp
%%SQUIRRELDIR%%/help/zh_CN/basic.hlp
@ -414,14 +428,17 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/images/minus.png
%%SQUIRRELDIR%%/images/plus.png
%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png
%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png
%%SQUIRRELDIR%%/images/sec_remove_da_DK.png
%%SQUIRRELDIR%%/images/sec_remove_de_DE.png
%%SQUIRRELDIR%%/images/sec_remove_et_EE.png
%%SQUIRRELDIR%%/images/sec_remove_el_GR.png
%%SQUIRRELDIR%%/images/sec_remove_eng.png
%%SQUIRRELDIR%%/images/sec_remove_es_ES.png
%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png
%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png
%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png
%%SQUIRRELDIR%%/images/sec_remove_he_IL.png
%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png
%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png
%%SQUIRRELDIR%%/images/sec_remove_id_ID.png
@ -456,12 +473,20 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/README.locales
%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ar/setup.php
%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/bg_BG/setup.php
%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/bn_IN/setup.php
%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ca_ES/setup.php
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
@ -470,52 +495,114 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo
%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po
%%SQUIRRELDIR%%/locale/cs_CZ/setup.php
%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/cy_GB/setup.php
%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/da_DK/setup.php
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo
%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po
%%SQUIRRELDIR%%/locale/de_DE/setup.php
%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo
%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po
%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/el_GR/setup.php
%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/en_GB/setup.php
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/es_ES/setup.php
%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/et_EE/setup.php
%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/eu_ES/setup.php
%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/fa_IR/setup.php
%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/fi_FI/setup.php
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/fo_FO/setup.php
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
@ -524,27 +611,79 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo
%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po
%%SQUIRRELDIR%%/locale/fr_FR/setup.php
%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/he_IL/setup.php
%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/hr_HR/setup.php
%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/hu_HU/setup.php
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/id_ID/setup.php
%%SQUIRRELDIR%%/locale/index.php
%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/is_IS/setup.php
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo
%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/it_IT/setup.php
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo
%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po
%%SQUIRRELDIR%%/locale/ja_JP/setup.php
%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ka/setup.php
%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ko_KR/setup.php
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.mo
@ -553,6 +692,8 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.mo
@ -563,6 +704,8 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.mo
@ -599,22 +742,30 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.po
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.mo
%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.po
%%SQUIRRELDIR%%/locale/lt_LT/setup.php
%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ms_MY/setup.php
%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/nb_NO/setup.php
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/nl_NL/setup.php
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.mo
@ -623,6 +774,8 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.mo
@ -633,6 +786,8 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.mo
@ -671,16 +826,29 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.po
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.mo
%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.po
%%SQUIRRELDIR%%/locale/nn_NO/setup.php
%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/pl_PL/setup.php
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/pt_BR/setup.php
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/pt_PT/setup.php
%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ro_RO/setup.php
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.mo
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.po
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.mo
@ -689,18 +857,24 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.po
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ru_RU/setup.php
%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/sk_SK/setup.php
%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/sl_SI/setup.php
%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/sr_YU/setup.php
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.mo
@ -711,12 +885,18 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.mo
@ -727,6 +907,8 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.mo
@ -741,21 +923,31 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.po
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.mo
%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.po
%%SQUIRRELDIR%%/locale/sv_SE/setup.php
%%SQUIRRELDIR%%/locale/timezones.cfg
%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/tr_TR/setup.php
%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/ug/setup.php
%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/zh_CN/setup.php
%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.po
%%SQUIRRELDIR%%/locale/zh_TW/setup.php
%%SQUIRRELDIR%%/plugins/abook_take/index.php
%%SQUIRRELDIR%%/plugins/abook_take/setup.php
%%SQUIRRELDIR%%/plugins/abook_take/take.php
%%SQUIRRELDIR%%/plugins/administrator/auth.php
@ -781,11 +973,13 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.in
%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.out
%%SQUIRRELDIR%%/plugins/filters/bulkquery/bulkquery.c
%%SQUIRRELDIR%%/plugins/filters/bulkquery/index.php
%%SQUIRRELDIR%%/plugins/filters/filters.php
%%SQUIRRELDIR%%/plugins/filters/index.php
%%SQUIRRELDIR%%/plugins/filters/options.php
%%SQUIRRELDIR%%/plugins/filters/setup.php
%%SQUIRRELDIR%%/plugins/filters/spamoptions.php
%%SQUIRRELDIR%%/plugins/fortune/index.php
%%SQUIRRELDIR%%/plugins/fortune/setup.php
%%SQUIRRELDIR%%/plugins/index.php
%%SQUIRRELDIR%%/plugins/info/functions.php
@ -802,6 +996,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/plugins/mail_fetch/options.php
%%SQUIRRELDIR%%/plugins/mail_fetch/setup.php
%%SQUIRRELDIR%%/plugins/make_archive.pl
%%SQUIRRELDIR%%/plugins/message_details/index.php
%%SQUIRRELDIR%%/plugins/message_details/message_details_bottom.php
%%SQUIRRELDIR%%/plugins/message_details/message_details_main.php
%%SQUIRRELDIR%%/plugins/message_details/message_details_top.php
@ -814,6 +1009,7 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/plugins/newmail/sounds/Friends.wav
%%SQUIRRELDIR%%/plugins/newmail/sounds/MontyPython.wav
%%SQUIRRELDIR%%/plugins/newmail/sounds/Notify.wav
%%SQUIRRELDIR%%/plugins/newmail/sounds/index.php
%%SQUIRRELDIR%%/plugins/newmail/testsound.php
%%SQUIRRELDIR%%/plugins/sent_subfolders/index.php
%%SQUIRRELDIR%%/plugins/sent_subfolders/setup.php
@ -899,11 +1095,13 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/themes/black_bean_burrito_theme.php
%%SQUIRRELDIR%%/themes/blue_grey_theme.php
%%SQUIRRELDIR%%/themes/bluesnews_theme.php
%%SQUIRRELDIR%%/themes/bluesome.php
%%SQUIRRELDIR%%/themes/bluesteel_theme.php
%%SQUIRRELDIR%%/themes/christmas.php
%%SQUIRRELDIR%%/themes/css/comic-sans-08.css
%%SQUIRRELDIR%%/themes/css/comic-sans-10.css
%%SQUIRRELDIR%%/themes/css/comic-sans-12.css
%%SQUIRRELDIR%%/themes/css/index.php
%%SQUIRRELDIR%%/themes/css/sans-08.css
%%SQUIRRELDIR%%/themes/css/sans-10.css
%%SQUIRRELDIR%%/themes/css/sans-12.css
@ -944,10 +1142,15 @@ etc/periodic/daily/111.clean-squirrelmail
%%SQUIRRELDIR%%/themes/seaspray_theme.php
%%SQUIRRELDIR%%/themes/servery_theme.php
%%SQUIRRELDIR%%/themes/shades_of_grey.php
%%SQUIRRELDIR%%/themes/silver_steel_theme.php
%%SQUIRRELDIR%%/themes/simple_green2.php
%%SQUIRRELDIR%%/themes/simple_green_theme.php
%%SQUIRRELDIR%%/themes/simple_purple.php
%%SQUIRRELDIR%%/themes/slashdot_theme.php
%%SQUIRRELDIR%%/themes/spice_of_life.php
%%SQUIRRELDIR%%/themes/spice_of_life_dark.php
%%SQUIRRELDIR%%/themes/spice_of_life_lite.php
%%SQUIRRELDIR%%/themes/wood_theme.php
@dirrmtry etc/periodic/daily
@dirrmtry etc/periodic
%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/abook_take
@ -1031,6 +1234,8 @@ etc/periodic/daily/111.clean-squirrelmail
@dirrm %%SQUIRRELDIR%%/locale/lt_LT
@dirrm %%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/ko_KR
@dirrm %%SQUIRRELDIR%%/locale/ka/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/ka
@dirrm %%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/ja_JP
@dirrm %%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES
@ -1049,6 +1254,8 @@ etc/periodic/daily/111.clean-squirrelmail
@dirrm %%SQUIRRELDIR%%/locale/fr_FR
@dirrm %%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/fi_FI
@dirrm %%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/et_EE
@dirrm %%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/locale/es_ES
@dirrm %%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES
@ -1086,6 +1293,7 @@ etc/periodic/daily/111.clean-squirrelmail
@dirrm %%SQUIRRELDIR%%/include
@dirrm %%SQUIRRELDIR%%/images
@dirrm %%SQUIRRELDIR%%/help/zh_CN
@dirrm %%SQUIRRELDIR%%/help/th_TH
@dirrm %%SQUIRRELDIR%%/help/sv_SE
@dirrm %%SQUIRRELDIR%%/help/sr_YU
@dirrm %%SQUIRRELDIR%%/help/sl_SI