update SOGo to 1.3.8a, also here zapping patches that made it upstream.

OK landry@
This commit is contained in:
sebastia 2011-07-21 06:30:44 +00:00
parent 50aae3debe
commit 5ff311a287
6 changed files with 105 additions and 142 deletions

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.13 2011/06/07 11:29:55 sebastia Exp $
# $OpenBSD: Makefile,v 1.14 2011/07/21 06:30:44 sebastia Exp $
COMMENT = web based groupware server
VERSION = 1.3.7
VERSION = 1.3.8
DISTNAME = SOGo-${VERSION}a
PKGNAME = sogo-${VERSION}.0
REVISION = 1
SHLIB_VERSION = 1.0
SHLIB_VERSION = 1.1
.for _lib in GDLContentStore NGCards OGoContentStore \
SOGo SOGoUI
SHARED_LIBS += ${_lib} ${SHLIB_VERSION}
@ -44,7 +43,7 @@ MAKE_FLAGS += libGDLContentStore_INTERFACE_VERSION=${SHLIB_VERSION} \
libOGoContentStore_INTERFACE_VERSION=${SHLIB_VERSION} \
libSOGoUI_INTERFACE_VERSION=${SHLIB_VERSION} \
SOGo_INTERFACE_VERSION=${SHLIB_VERSION}
pre-configure:
.for f in SOGo_Installation_Guide SOGo_Mobile_Devices_Configuration \
SOGo_Mozilla_Thunderbird_Configuration

View File

@ -1,5 +1,5 @@
MD5 (SOGo-1.3.7a.tar.gz) = 6VicYpUZPvXuKORnHf1Oww==
RMD160 (SOGo-1.3.7a.tar.gz) = OU70YEReskhE0bVIkb4wewYTejo=
SHA1 (SOGo-1.3.7a.tar.gz) = i6e6PwMHMdMObIkRu/ql3OlSMxQ=
SHA256 (SOGo-1.3.7a.tar.gz) = flMwqYoWpDhKRzBGL8EFqNvUsWA9/0p47Zy31uokpOo=
SIZE (SOGo-1.3.7a.tar.gz) = 3584961
MD5 (SOGo-1.3.8a.tar.gz) = /vtl4HsX884Q/mx+kkgp2w==
RMD160 (SOGo-1.3.8a.tar.gz) = V0mzEgHOE2EJTRzBhsbrra2KZbE=
SHA1 (SOGo-1.3.8a.tar.gz) = cg1qI0CVfqQDKSN5tZQ8yfduN2c=
SHA256 (SOGo-1.3.8a.tar.gz) = bcciAcAV0m3gAyusLGEnbEtwNan5Qpsxil10BMdxML8=
SIZE (SOGo-1.3.8a.tar.gz) = 3679151

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-SOPE_GDLContentStore_GCSFolderManager_m,v 1.1 2011/06/07 11:29:55 sebastia Exp $
stringByDeletingLastPathComponent must not be used with URLs as it
replaces doubles slashes with a single slash, e.g. "mysql://" with
"mysql:/".
--- SOPE/GDLContentStore/GCSFolderManager.m.orig Fri May 6 17:57:44 2011
+++ SOPE/GDLContentStore/GCSFolderManager.m Tue May 31 08:43:12 2011
@@ -748,8 +748,10 @@ static NSCharacterSet *asciiAlphaNumericCS = nil;
aclTableName = [tableName stringByAppendingString: @"_acl"];
// TBD: fix SQL injection issues
- baseURL
- = [[folderInfoLocation absoluteString] stringByDeletingLastPathComponent];
+ baseURL = [folderInfoLocation absoluteString];
+ NSRange range = [baseURL rangeOfString: @"/" options: NSBackwardsSearch];
+ if (range.location != NSNotFound)
+ baseURL = [baseURL substringToIndex: range.location];
sql = [NSString stringWithFormat: @"INSERT INTO %@"
@" (c_path, c_path1, c_path2, c_path3, c_path4,"

View File

@ -1,29 +0,0 @@
$OpenBSD: patch-SoObjects_SOGo_GNUmakefile_preamble,v 1.3 2011/04/22 05:36:12 sebastia Exp $
--- SoObjects/SOGo/GNUmakefile.preamble.orig Fri Apr 8 19:44:28 2011
+++ SoObjects/SOGo/GNUmakefile.preamble Tue Apr 19 11:22:59 2011
@@ -5,7 +5,7 @@ SOGo_INCLUDE_DIRS += -I.. -I../../UI \
-DSOGO_MINOR_VERSION="@\"$(MINOR_VERSION)\"" \
-DSOGO_SUBMINOR_VERSION="@\"$(SUBMINOR_VERSION)\""
-HOSTNAME = $(shell hostname -f)
+HOSTNAME ?= $(shell hostname -f)
BUILD_DATE = $(shell echo $$USER@$(HOSTNAME); date +"%Y%m%d%H%M")
ADDITIONAL_CPPFLAGS += \
@@ -21,9 +21,15 @@ SOGo_LIBRARIES_DEPEND_UPON += \
-lNGCards \
-lNGMime \
-lNGStreams -lNGExtensions -lEOControl \
- -lXmlRpc -lDOM -lSaxObjC -lcrypt \
+ -lXmlRpc -lDOM -lSaxObjC \
-lNGLdap -lSBJson \
-lGDLContentStore
+
+ifeq ($(findstring openbsd, $(GNUSTEP_HOST_OS)), openbsd)
+SOGo_LIBRARIES_DEPEND_UPON += -lcrypto
+else
+SOGo_LIBRARIES_DEPEND_UPON += -lcrypt
+endif
ADDITIONAL_TOOL_LIBS += \
-L$(GNUSTEP_OBJ_DIR)/ \

View File

@ -1,27 +0,0 @@
$OpenBSD: patch-configure,v 1.1 2010/12/11 14:21:08 sebastia Exp $
--- configure.orig Tue Nov 30 11:33:51 2010
+++ configure Tue Nov 30 11:37:07 2010
@@ -37,6 +37,15 @@ else
MAKE=gmake
fi
+# hostname(1) on some systems may not know the -f parameter
+hostname -f 2>/dev/null >/dev/null
+if [ $? -eq 0 ];then
+ HOSTNAME=`hostname -f`
+else
+ HOSTNAME=`hostname`
+fi
+
+
NGSTREAMS_DIR="./sope-core/NGStreams"
LINK_SYSLIBDIRS="-L/usr/local/pgsql/lib -L/usr/local/lib -L/usr/lib"
@@ -251,6 +260,7 @@ genConfigMake() {
cfgwrite "CGS_LIBDIR_NAME:=lib"
fi
+ cfgwrite "HOSTNAME=${HOSTNAME}"
cfgwrite "SOGO_SYSLIBDIR=\${GNUSTEP_LIBRARIES}"
cfgwrite "SOGO_LIBDIR=\${GNUSTEP_LIBRARY}/SOGo"
cfgwrite "SOGO_TEMPLATESDIR=\${SOGO_LIBDIR}/Templates"

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.7 2011/05/05 23:00:20 sebastia Exp $
@comment $OpenBSD: PLIST,v 1.8 2011/07/21 06:30:44 sebastia Exp $
@newgroup _sogo:659
@newuser _sogo:659:_sogo:daemon:SOGo user:/var/sogo:/bin/sh
include/GDLContentStore/
@ -62,60 +62,61 @@ lib/GNUstep/Frameworks/SOGo.framework/Headers
lib/GNUstep/Frameworks/SOGo.framework/Resources
lib/GNUstep/Frameworks/SOGo.framework/SOGo
lib/GNUstep/Frameworks/SOGo.framework/Versions/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/DOMNode+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/LDAPSource.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSArray+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSArray+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSCalendarDate+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSDictionary+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSDictionary+URL.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSDictionary+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSNull+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSNumber+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSObject+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSObject+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSString+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSString+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/NSURL+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoBuild.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoCASSession.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoCache.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoConstants.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoContentObject.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoDAVAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoDateFormatter.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoGCSFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoGroup.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoMailer.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoObject.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoParentFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoPermissions.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoProductLoader.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoProxyAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoSession.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoStartupLogger.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoUser.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoUserFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoUserManager.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoUserProfile.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoWebAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoWebDAVAclManager.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SOGoWebDAVValue.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/SQLSource.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/WOContext+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/WORequest+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/WOResourceManager+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Headers/WOResponse+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Resources/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Resources/DAVReportMap.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Resources/Info-gnustep.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/Resources/SOGoDefaults.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/SOGo
@lib lib/GNUstep/Frameworks/SOGo.framework/Versions/1.0/libSOGo.so.${LIBSOGo_VERSION}
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/DOMNode+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/LDAPSource.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSArray+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSArray+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSCalendarDate+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSDictionary+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSDictionary+URL.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSDictionary+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSNull+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSNumber+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSObject+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSObject+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSString+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSString+Utilities.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/NSURL+DAV.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoBuild.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoCASSession.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoCache.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoConstants.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoContentObject.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoDAVAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoDateFormatter.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoGCSFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoGroup.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoMailer.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoObject.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoParentFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoPermissions.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoProductLoader.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoProxyAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoSession.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoSieveManager.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoStartupLogger.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoUser.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoUserFolder.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoUserManager.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoUserProfile.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoWebAuthenticator.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoWebDAVAclManager.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SOGoWebDAVValue.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/SQLSource.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/WOContext+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/WORequest+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/WOResourceManager+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Headers/WOResponse+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Resources/
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Resources/DAVReportMap.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Resources/Info-gnustep.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/Resources/SOGoDefaults.plist
lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/SOGo
@lib lib/GNUstep/Frameworks/SOGo.framework/Versions/1.1/libSOGo.so.${LIBSOGo_VERSION}
lib/GNUstep/Frameworks/SOGo.framework/Versions/Current
@lib lib/GNUstep/Frameworks/SOGo.framework/libSOGo.so.${LIBSOGo_VERSION}
lib/GNUstep/Libraries/Resources/
@ -608,6 +609,8 @@ lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings
@ -647,6 +650,8 @@ lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/Localizable.strings
@ -686,6 +691,8 @@ lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/Localizable.strings
@ -724,6 +731,8 @@ lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/Localizable.strings
@ -764,6 +773,8 @@ lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/Localizable.strings
@ -835,6 +846,10 @@ lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHunga
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.wod
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.wod
@ -899,6 +914,8 @@ lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/Localizable.strings
@ -948,6 +965,9 @@ lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Locale
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Locale
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Locale
@ -998,6 +1018,8 @@ lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/Localizable.strings
@ -1036,6 +1058,8 @@ lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/Localizable.strings
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/Localizable.strings
@ -1146,6 +1170,9 @@ lib/GNUstep/SOGo/Templates/SOGoACLGermanRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLHungarianAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLHungarianModificationAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLHungarianRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLIcelandicAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLIcelandicModificationAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLIcelandicRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLItalianAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLItalianModificationAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLItalianRemovalAdvisory.wox
@ -1183,6 +1210,8 @@ lib/GNUstep/SOGo/Templates/SOGoFolderGermanAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderGermanRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderHungarianAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderHungarianRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderItalianAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderItalianRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianAdditionAdvisory.wox
@ -1257,6 +1286,7 @@ lib/GNUstep/SOGo/WebServerResources/SOGoResizableTable.js
lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.css
lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.js
lib/GNUstep/SOGo/WebServerResources/SOGoTabsController.js
lib/GNUstep/SOGo/WebServerResources/SOGoTimePicker.js
lib/GNUstep/SOGo/WebServerResources/SchedulerUI.css
lib/GNUstep/SOGo/WebServerResources/SchedulerUI.js
lib/GNUstep/SOGo/WebServerResources/SchedulerUIDnD.js
@ -1327,6 +1357,7 @@ lib/GNUstep/SOGo/WebServerResources/arrow-up.png
lib/GNUstep/SOGo/WebServerResources/attachment.gif
lib/GNUstep/SOGo/WebServerResources/attendee-partstats.png
lib/GNUstep/SOGo/WebServerResources/attendee-roles.png
lib/GNUstep/SOGo/WebServerResources/browser_chrome.gif
lib/GNUstep/SOGo/WebServerResources/browser_firefox.gif
lib/GNUstep/SOGo/WebServerResources/browser_ie.gif
lib/GNUstep/SOGo/WebServerResources/browser_safari.gif
@ -1381,6 +1412,7 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hu.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/is.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/it.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ja.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ka.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/km.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ko.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lt.js
@ -1421,6 +1453,8 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/ajax/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/ajax/plugin.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/autogrow/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/autogrow/plugin.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/bbcode/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/bbcode/plugin.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/paste.js
@ -1432,6 +1466,10 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/dialogDefinition.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/dialogs/div.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/dialogs/docprops.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/plugin.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/dialogs/find.js
@ -1538,6 +1576,8 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/en.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/styles/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/styles/default.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/stylesheetparser/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/stylesheetparser/plugin.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/dialogs/table.js
@ -1636,6 +1676,7 @@ lib/GNUstep/SOGo/WebServerResources/day-view-multicolumn.png
lib/GNUstep/SOGo/WebServerResources/day-view.png
lib/GNUstep/SOGo/WebServerResources/dialog-left.png
lib/GNUstep/SOGo/WebServerResources/dialog-right.png
lib/GNUstep/SOGo/WebServerResources/dialog-top.png
lib/GNUstep/SOGo/WebServerResources/dot.png
lib/GNUstep/SOGo/WebServerResources/down-icon.png
lib/GNUstep/SOGo/WebServerResources/dtree.css