Sat Nov 24 14:06:44 2012 UTC ()
Update SOGo (and its SOPE dependency) to 2.0.2a

ChangeLog since 2.0.0

2.0.2a (2012-11-15)
-------------------

Enhancements
 - improved user rights editor in calendar module
 - disable alarms for newly subsribed calendars

Bug fixes
 - fixed typos in Spanish (Spain) translation
 - fixed display of raw source for tasks
 - fixed title display of cards with a photo
 - fixed null address in reply-to header of messages
 - fixed scrolling for calendar/addressbooks lists
 - fixed display of invitations on BlackBerry devices
 - fixed sogo-tool rename-user for MySQL database
 - fixed corrupted attachments in Webmail
 - fixed parsing of URLs that can throw an exception
 - fixed password encoding in user sources

2.0.2 (2012-10-24)
------------------

New features
 - added support for SMTP AUTH
 - sogo configuration can now be set in /etc/sogo/sogo.conf
 - added support for GNU TLS

Enhancements
 - speed up of the parsing of IMAP traffic
 - minor speed up of the web interface
 - speed up the scrolling of the message list in the mail module
 - speed up the deletion of a large amounts of entries in the contacts module
 - updated the timezone files to the 2012.g edition
 - openchange backend: miscellaneous speed up of the synchronization
   operations
 - open file descriptors are now closed when the process starts

Bug fixes
 - the parameters included in the url of remote calendars are now taken into
   account
 - fixed an issue occurring with timezone definitions providing multiple entries
 - openchange backend: miscellaneous crashes during certain Outlook
   operations, which have appeared in version 2.0.0, have been fixed
 - fixed issues occuring on OpenBSD and potentially other BSD flavours

2.0.1 (2012-10-10)
-------------------

Enhancements
 - deletion of contacts is now performed in batch, which speeds up the
   operation for large numbers of items
 - scalability enhancements in the OpenChange backend that enables the first
   synchronization of mailboxes in a more reasonable time and using less
   memory
 - the task list is now sortable

Bug Fixes
 - improved support of IE 9


(manu)
diff -r1.4 -r1.5 pkgsrc/devel/SOPE/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/devel/SOPE/PLIST
diff -r1.3 -r1.4 pkgsrc/devel/SOPE/distinfo
diff -r1.1 -r1.2 pkgsrc/devel/SOPE/patches/patch-sope-core_NGStreams_NGInternetSocketAddress.m
diff -r1.3624 -r1.3625 pkgsrc/doc/CHANGES-2012
diff -r1.6 -r1.7 pkgsrc/www/SOGo/Makefile
diff -r1.2 -r1.3 pkgsrc/www/SOGo/PLIST
diff -r1.5 -r1.6 pkgsrc/www/SOGo/distinfo
diff -r0 -r1.1 pkgsrc/www/SOGo/patches/patch-SoObjects_SOGo_GNUmakefile.preamble
diff -r0 -r1.1 pkgsrc/www/SOGo/patches/patch-SoObjects_SOGo_NSData+Crypto.m
diff -r1.1 -r0 pkgsrc/www/SOGo/patches/patch-SoObjects_SOGo_NSString+Utilities.m
diff -r1.1.1.1 -r0 pkgsrc/www/SOGo/patches/patch-aa

cvs diff -r1.4 -r1.5 pkgsrc/devel/SOPE/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/SOPE/Makefile 2012/10/31 11:16:33 1.4
+++ pkgsrc/devel/SOPE/Makefile 2012/11/24 14:06:43 1.5
@@ -1,29 +1,34 @@ @@ -1,29 +1,34 @@
1# $NetBSD: Makefile,v 1.4 2012/10/31 11:16:33 asau Exp $ 1# $NetBSD: Makefile,v 1.5 2012/11/24 14:06:43 manu Exp $
2# 2#
3 3
4DISTNAME= SOPE-2.0.0b3 4DISTNAME= SOPE-2.0.2a
5PKGREVISION= 1 
6CATEGORIES= devel 5CATEGORIES= devel
7MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ 6MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://sope.opengroupware.org/ 9HOMEPAGE= http://sope.opengroupware.org/
11COMMENT= Framework for writing clever web servers driven by objects 10COMMENT= Framework for writing clever web servers driven by objects
12LICENSE= gnu-lgpl-v2 11LICENSE= gnu-lgpl-v2
13 12
 13PKG_DESTDIR_SUPPORT= user-destdir
 14
14USE_TOOLS+= gmake 15USE_TOOLS+= gmake
15 16
16WRKSRC= ${WRKDIR}/SOPE 17WRKSRC= ${WRKDIR}/SOPE
17HAS_CONFIGURE= yes 18HAS_CONFIGURE= yes
18 19
19CONFIGURE_ARGS= --with-gnustep --enable-debug --disable-strip 20CONFIGURE_ARGS= --with-gnustep --enable-debug --disable-strip
20 21
 22pre-configure:
 23 ${LN} -s ${BUILDLINK_DIR}/lib/mysql/libmysqlclient.so \
 24 ${BUILDLINK_DIR}/lib/libmysqlclient.so
 25
21.include "../../devel/gnustep-make/buildlink3.mk" 26.include "../../devel/gnustep-make/buildlink3.mk"
22.include "../../devel/gnustep-base/buildlink3.mk" 27.include "../../devel/gnustep-base/buildlink3.mk"
23.include "../../textproc/libxml2/buildlink3.mk" 28.include "../../textproc/libxml2/buildlink3.mk"
24.include "../../security/openssl/buildlink3.mk" 29.include "../../security/openssl/buildlink3.mk"
25.include "../../databases/openldap-client/buildlink3.mk" 30.include "../../databases/openldap-client/buildlink3.mk"
26.include "../../databases/postgresql90-client/buildlink3.mk" 31.include "../../mk/pgsql.buildlink3.mk"
27.include "../../databases/mysql55-client/buildlink3.mk" 32.include "../../mk/mysql.buildlink3.mk"
28 33
29.include "../../mk/bsd.pkg.mk" 34.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/devel/SOPE/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/SOPE/PLIST 2011/10/16 05:34:58 1.1.1.1
+++ pkgsrc/devel/SOPE/PLIST 2012/11/24 14:06:43 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/16 05:34:58 manu Exp $ 1@comment $NetBSD: PLIST,v 1.2 2012/11/24 14:06:43 manu Exp $
2bin/wod 2bin/wod
3bin/load-EOAdaptor 3bin/load-EOAdaptor
4bin/connect-EOAdaptor 4bin/connect-EOAdaptor
5include/SaxObjC/SaxObjC.h 5include/SaxObjC/SaxObjC.h
6include/SaxObjC/SaxAttributeList.h 6include/SaxObjC/SaxAttributeList.h
7include/SaxObjC/SaxAttributes.h 7include/SaxObjC/SaxAttributes.h
8include/SaxObjC/SaxContentHandler.h 8include/SaxObjC/SaxContentHandler.h
9include/SaxObjC/SaxDTDHandler.h 9include/SaxObjC/SaxDTDHandler.h
10include/SaxObjC/SaxDeclHandler.h 10include/SaxObjC/SaxDeclHandler.h
11include/SaxObjC/SaxDefaultHandler.h 11include/SaxObjC/SaxDefaultHandler.h
12include/SaxObjC/SaxDocumentHandler.h 12include/SaxObjC/SaxDocumentHandler.h
13include/SaxObjC/SaxEntityResolver.h 13include/SaxObjC/SaxEntityResolver.h
14include/SaxObjC/SaxErrorHandler.h 14include/SaxObjC/SaxErrorHandler.h
@@ -198,26 +198,27 @@ include/NGMime/NGMimeBodyPartParser.h @@ -198,26 +198,27 @@ include/NGMime/NGMimeBodyPartParser.h
198include/NGMime/NGMimeExceptions.h 198include/NGMime/NGMimeExceptions.h
199include/NGMime/NGMimeGeneratorProtocols.h 199include/NGMime/NGMimeGeneratorProtocols.h
200include/NGMime/NGMimeHeaderFieldGenerator.h 200include/NGMime/NGMimeHeaderFieldGenerator.h
201include/NGMime/NGMimeHeaderFieldParser.h 201include/NGMime/NGMimeHeaderFieldParser.h
202include/NGMime/NGMimeHeaderFields.h 202include/NGMime/NGMimeHeaderFields.h
203include/NGMime/NGMimeMultipartBody.h 203include/NGMime/NGMimeMultipartBody.h
204include/NGMime/NGMimePartGenerator.h 204include/NGMime/NGMimePartGenerator.h
205include/NGMime/NGMimePartParser.h 205include/NGMime/NGMimePartParser.h
206include/NGMime/NGMimeType.h 206include/NGMime/NGMimeType.h
207include/NGMime/NGMimeUtilities.h 207include/NGMime/NGMimeUtilities.h
208include/NGMime/NGPart.h 208include/NGMime/NGPart.h
209include/NGMime/NGMimeFileData.h 209include/NGMime/NGMimeFileData.h
210include/NGMime/NGMimeJoinedData.h 210include/NGMime/NGMimeJoinedData.h
 211include/NGMime/NSData+RFC822.h
211include/NGMail/NGMailDecls.h 212include/NGMail/NGMailDecls.h
212include/NGMail/NGMail.h 213include/NGMail/NGMail.h
213include/NGMail/NGMailAddressList.h 214include/NGMail/NGMailAddressList.h
214include/NGMail/NGMailAddressParser.h 215include/NGMail/NGMailAddressParser.h
215include/NGMail/NGMailAddress.h 216include/NGMail/NGMailAddress.h
216include/NGMail/NGMimeMessage.h 217include/NGMail/NGMimeMessage.h
217include/NGMail/NGMimeMessageGenerator.h 218include/NGMail/NGMimeMessageGenerator.h
218include/NGMail/NGMimeMessageParser.h 219include/NGMail/NGMimeMessageParser.h
219include/NGMail/NGMBoxReader.h 220include/NGMail/NGMBoxReader.h
220include/NGMail/NGPop3Client.h 221include/NGMail/NGPop3Client.h
221include/NGMail/NGPop3Support.h 222include/NGMail/NGPop3Support.h
222include/NGMail/NGSmtpClient.h 223include/NGMail/NGSmtpClient.h
223include/NGMail/NGSmtpSupport.h 224include/NGMail/NGSmtpSupport.h

cvs diff -r1.3 -r1.4 pkgsrc/devel/SOPE/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/SOPE/distinfo 2012/09/01 10:02:34 1.3
+++ pkgsrc/devel/SOPE/distinfo 2012/11/24 14:06:43 1.4
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.3 2012/09/01 10:02:34 marino Exp $ 1$NetBSD: distinfo,v 1.4 2012/11/24 14:06:43 manu Exp $
2 2
3SHA1 (SOPE-2.0.0b3.tar.gz) = 9f2b337f0d9015377fba81a4e1cc0e95141e6b59 3SHA1 (SOPE-2.0.2a.tar.gz) = 8dcb2a1ea3b90b860969878bdca5a2685eb37296
4RMD160 (SOPE-2.0.0b3.tar.gz) = 45311144e883c7415a338ae7e634865b92c5baaa 4RMD160 (SOPE-2.0.2a.tar.gz) = f9fd9ba7ed6ea550e86343f784fd64beac008df8
5Size (SOPE-2.0.0b3.tar.gz) = 2153481 bytes 5Size (SOPE-2.0.2a.tar.gz) = 2243113 bytes
6SHA1 (patch-sope-core_NGStreams_NGInternetSocketAddress.m) = a4fe1cf1949579fab9a135c7a98dbfdf877ce315 6SHA1 (patch-sope-core_NGStreams_NGInternetSocketAddress.m) = 5309786f9208e3799d3b659b912f1c263c63427c
7SHA1 (patch-sope-core_NGStreams_NGLocalSocketAddress.m) = f5c6cb90d64ea48316175390d973ba59e44f29b9 7SHA1 (patch-sope-core_NGStreams_NGLocalSocketAddress.m) = f5c6cb90d64ea48316175390d973ba59e44f29b9
8SHA1 (patch-sope-core_NGStreams_NGLocalSocketDomain.m) = 23dfa6732f3af2165b1adcf2637fc77bfeadfe3c 8SHA1 (patch-sope-core_NGStreams_NGLocalSocketDomain.m) = 23dfa6732f3af2165b1adcf2637fc77bfeadfe3c

cvs diff -r1.1 -r1.2 pkgsrc/devel/SOPE/patches/patch-sope-core_NGStreams_NGInternetSocketAddress.m (expand / switch to unified diff)

--- pkgsrc/devel/SOPE/patches/patch-sope-core_NGStreams_NGInternetSocketAddress.m 2012/09/01 10:02:34 1.1
+++ pkgsrc/devel/SOPE/patches/patch-sope-core_NGStreams_NGInternetSocketAddress.m 2012/11/24 14:06:43 1.2
@@ -1,13 +1,15 @@ @@ -1,13 +1,15 @@
1$NetBSD: patch-sope-core_NGStreams_NGInternetSocketAddress.m,v 1.1 2012/09/01 10:02:34 marino Exp $ 1$NetBSD: patch-sope-core_NGStreams_NGInternetSocketAddress.m,v 1.2 2012/11/24 14:06:43 manu Exp $
2 2
3--- sope-core/NGStreams/NGInternetSocketAddress.m.orig 2011-11-04 12:39:19.000000000 +0000 3--- sope-core/NGStreams/NGInternetSocketAddress.m.orig 2012-11-15 18:51:03.000000000 +0100
4+++ sope-core/NGStreams/NGInternetSocketAddress.m 4+++ sope-core/NGStreams/NGInternetSocketAddress.m 2012-11-22 18:39:01.000000000 +0100
5@@ -48,7 +48,7 @@ 5@@ -47,9 +47,9 @@
 6 #include "NGInternetSocketAddress.h"
6 #include "NGInternetSocketDomain.h" 7 #include "NGInternetSocketDomain.h"
7 #include "common.h" 8 #include "common.h"
8  9
9-#if defined(HAVE_GETHOSTBYNAME_R) && !defined(linux) && !defined(__FreeBSD__) 10-#if defined(HAVE_GETHOSTBYNAME_R) && !defined(linux) && !defined(__FreeBSD__) && !defined(__GLIBC__)
10+#if defined(HAVE_GETHOSTBYNAME_R) && !defined(linux) && !defined(__FreeBSD__) && !defined(__DragonFly__) 11+#if defined(HAVE_GETHOSTBYNAME_R) && !defined(linux) && !defined(__FreeBSD__) && !defined(__GLIBC__) && !defined(__DragonFly__)
11 #define USE_GETHOSTBYNAME_R 1 12 #define USE_GETHOSTBYNAME_R 1
12 #endif 13 #endif
13  14
 15 @implementation NGInternetSocketAddress

cvs diff -r1.3624 -r1.3625 pkgsrc/doc/CHANGES-2012 (expand / switch to unified diff)

--- pkgsrc/doc/CHANGES-2012 2012/11/24 13:55:10 1.3624
+++ pkgsrc/doc/CHANGES-2012 2012/11/24 14:06:43 1.3625
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: CHANGES-2012,v 1.3624 2012/11/24 13:55:10 adam Exp $ 1$NetBSD: CHANGES-2012,v 1.3625 2012/11/24 14:06:43 manu Exp $
2 2
3Changes to the packages collection and infrastructure in 2012: 3Changes to the packages collection and infrastructure in 2012:
4 4
5 Updated net/xnap to 2.0nb2 [ryoon 2012-01-01] 5 Updated net/xnap to 2.0nb2 [ryoon 2012-01-01]
6 Updated cross/h8300-hms-gcc to 3.1nb6 [dholland 2012-01-02] 6 Updated cross/h8300-hms-gcc to 3.1nb6 [dholland 2012-01-02]
7 Updated security/cy2-gssapi to 2.1.25nb1 [obache 2012-01-02] 7 Updated security/cy2-gssapi to 2.1.25nb1 [obache 2012-01-02]
8 Updated audio/alsa-lib to 1.0.22 [sbd 2012-01-02] 8 Updated audio/alsa-lib to 1.0.22 [sbd 2012-01-02]
9 Updated devel/cutter to 1.2.0 [obache 2012-01-02] 9 Updated devel/cutter to 1.2.0 [obache 2012-01-02]
10 Updated www/contao210-translations to 20111231 [taca 2012-01-02] 10 Updated www/contao210-translations to 20111231 [taca 2012-01-02]
11 Updated pkgtools/port2pkg to 1.12 [joerg 2012-01-02] 11 Updated pkgtools/port2pkg to 1.12 [joerg 2012-01-02]
12 Updated textproc/mdoclint to 1.14 [wiz 2012-01-02] 12 Updated textproc/mdoclint to 1.14 [wiz 2012-01-02]
13 Updated net/ldns to 1.6.11nb1 [pettai 2012-01-02] 13 Updated net/ldns to 1.6.11nb1 [pettai 2012-01-02]
14 Updated math/ntl to 5.5.2 [dholland 2012-01-02] 14 Updated math/ntl to 5.5.2 [dholland 2012-01-02]
@@ -5557,13 +5557,15 @@ Changes to the packages collection and i @@ -5557,13 +5557,15 @@ Changes to the packages collection and i
5557 Updated www/seamonkey to 2.14 [ryoon 2012-11-23] 5557 Updated www/seamonkey to 2.14 [ryoon 2012-11-23]
5558 Updated textproc/docbook-xsl to 1.77.1 [drochner 2012-11-23] 5558 Updated textproc/docbook-xsl to 1.77.1 [drochner 2012-11-23]
5559 Updated www/seamonkey-l10n to 2.14 [ryoon 2012-11-23] 5559 Updated www/seamonkey-l10n to 2.14 [ryoon 2012-11-23]
5560 Updated fonts/harfbuzz to 0.9.7 [drochner 2012-11-23] 5560 Updated fonts/harfbuzz to 0.9.7 [drochner 2012-11-23]
5561 Updated devel/pango to 1.32.3 [drochner 2012-11-23] 5561 Updated devel/pango to 1.32.3 [drochner 2012-11-23]
5562 Updated fonts/umefont-ttf to 0.445 [ryoon 2012-11-23] 5562 Updated fonts/umefont-ttf to 0.445 [ryoon 2012-11-23]
5563 Updated multimedia/kmplayer to 0.11.3d [markd 2012-11-23] 5563 Updated multimedia/kmplayer to 0.11.3d [markd 2012-11-23]
5564 Updated devel/kdevplatform to 1.4.1 [markd 2012-11-23] 5564 Updated devel/kdevplatform to 1.4.1 [markd 2012-11-23]
5565 Updated devel/kdevelop4 to 4.4.1 [markd 2012-11-23] 5565 Updated devel/kdevelop4 to 4.4.1 [markd 2012-11-23]
5566 Updated fonts/fontforge to 20120731 [adam 2012-11-23] 5566 Updated fonts/fontforge to 20120731 [adam 2012-11-23]
5567 Updated net/knot to 1.1.2 [pettai 2012-11-23] 5567 Updated net/knot to 1.1.2 [pettai 2012-11-23]
5568 Updated chat/weechat to 0.3.9.2 [tonio 2012-11-24] 5568 Updated chat/weechat to 0.3.9.2 [tonio 2012-11-24]
5569 Updated devel/p5-Tree-DAG_Node to 1.09 [adam 2012-11-24] 5569 Updated devel/p5-Tree-DAG_Node to 1.09 [adam 2012-11-24]
 5570 Updated devel/SOPE to 2.0.2a [manu 2012-11-24]
 5571 Updated www/SOGo to 2.0.2a [manu 2012-11-24]

cvs diff -r1.6 -r1.7 pkgsrc/www/SOGo/Makefile (expand / switch to unified diff)

--- pkgsrc/www/SOGo/Makefile 2012/10/28 06:30:00 1.6
+++ pkgsrc/www/SOGo/Makefile 2012/11/24 14:06:43 1.7
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.6 2012/10/28 06:30:00 asau Exp $ 1# $NetBSD: Makefile,v 1.7 2012/11/24 14:06:43 manu Exp $
2# 2#
3 3
4DISTNAME= SOGo-2.0.0b3 4DISTNAME= SOGo-2.0.2a
5PKGREVISION= 1 
6CATEGORIES= www 5CATEGORIES= www
7MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ 6MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.sogo.nu/ 9HOMEPAGE= http://www.sogo.nu/
11COMMENT= Groupware server supporting CalDAV, CardDAV and GroupDAV 10COMMENT= Groupware server supporting CalDAV, CardDAV and GroupDAV
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14WRKSRC= ${WRKDIR}/SOGo 13PKG_DESTDIR_SUPPORT= user-destdir
 14
15HAS_CONFIGURE= yes 15HAS_CONFIGURE= yes
16USE_LANGUAGES= c 16USE_LANGUAGES= c
17USE_TOOLS+= gmake zip:run 17USE_TOOLS+= gmake zip:run
18 18
19CONFIGURE_ARGS= --enable-debug --disable-strip 19CONFIGURE_ARGS= --enable-debug --disable-strip
20 20
21SOGOUSER?= sogo 21SOGOUSER?= sogo
22SOGOGROUP?= sogo 22SOGOGROUP?= sogo
23SOGOETCDIR?= ${PKG_SYSCONFDIR}/sogo 23SOGOETCDIR?= ${PKG_SYSCONFDIR}/sogo
24SOGORUNDIR?= ${VARBASE}/sogo 24SOGORUNDIR?= ${VARBASE}/sogo
25INSTALLATION_DIRS+= share/examples/SOGo 25INSTALLATION_DIRS+= share/examples/SOGo
26CONF_FILES+= ${DESTDIR}${PREFIX}/share/examples/SOGo/sogo-conf.sh \ 26CONF_FILES+= ${DESTDIR}${PREFIX}/share/examples/SOGo/sogo-conf.sh \
27 ${PKG_SYSCONFDIR}/sogo-conf.sh 27 ${PKG_SYSCONFDIR}/sogo-conf.sh
@@ -51,16 +51,17 @@ pre-install: @@ -51,16 +51,17 @@ pre-install:
51 ${WRKSRC}/Apache/SOGo.conf > \ 51 ${WRKSRC}/Apache/SOGo.conf > \
52 ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf 52 ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf
53 ${SED} -e "s|@PREFIX@|${PREFIX}|" ${FILESDIR}/SOGo.conf >> \ 53 ${SED} -e "s|@PREFIX@|${PREFIX}|" ${FILESDIR}/SOGo.conf >> \
54 ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf 54 ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf
55 ${MKDIR} -p ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks 55 ${MKDIR} -p ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks
56 ${LN} -s ../SOGo/SOGo.framework \ 56 ${LN} -s ../SOGo/SOGo.framework \
57 ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks/SOGo.framework 57 ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks/SOGo.framework
58 58
59.include "../../devel/gnustep-base/buildlink3.mk" 59.include "../../devel/gnustep-base/buildlink3.mk"
60.include "../../devel/gnustep-make/buildlink3.mk" 60.include "../../devel/gnustep-make/buildlink3.mk"
61.include "../../devel/SOPE/buildlink3.mk" 61.include "../../devel/SOPE/buildlink3.mk"
62.include "../../devel/libmemcached/buildlink3.mk" 62.include "../../devel/libmemcached/buildlink3.mk"
63.include "../../textproc/libxml2/buildlink3.mk" 63.include "../../textproc/libxml2/buildlink3.mk"
 64.include "../../www/curl/buildlink3.mk"
64 65
65 66
66.include "../../mk/bsd.pkg.mk" 67.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/www/SOGo/PLIST (expand / switch to unified diff)

--- pkgsrc/www/SOGo/PLIST 2011/12/14 15:02:24 1.2
+++ pkgsrc/www/SOGo/PLIST 2012/11/24 14:06:43 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.2 2011/12/14 15:02:24 manu Exp $ 1@comment $NetBSD: PLIST,v 1.3 2012/11/24 14:06:43 manu Exp $
2include/GDLContentStore/EOAdaptorChannel+GCS.h 2include/GDLContentStore/EOAdaptorChannel+GCS.h
3include/GDLContentStore/GCSAlarmsFolder.h 3include/GDLContentStore/GCSAlarmsFolder.h
4include/GDLContentStore/GCSChannelManager.h 4include/GDLContentStore/GCSChannelManager.h
5include/GDLContentStore/GCSContext.h 5include/GDLContentStore/GCSContext.h
6include/GDLContentStore/GCSFieldExtractor.h 6include/GDLContentStore/GCSFieldExtractor.h
7include/GDLContentStore/GCSFieldInfo.h 7include/GDLContentStore/GCSFieldInfo.h
8include/GDLContentStore/GCSFolder.h 8include/GDLContentStore/GCSFolder.h
9include/GDLContentStore/GCSFolderManager.h 9include/GDLContentStore/GCSFolderManager.h
10include/GDLContentStore/GCSFolderType.h 10include/GDLContentStore/GCSFolderType.h
11include/GDLContentStore/GCSSessionsFolder.h 11include/GDLContentStore/GCSSessionsFolder.h
12include/GDLContentStore/GCSSpecialQueries.h 12include/GDLContentStore/GCSSpecialQueries.h
13include/GDLContentStore/GCSStringFormatter.h 13include/GDLContentStore/GCSStringFormatter.h
14include/GDLContentStore/NSURL+GCS.h 14include/GDLContentStore/NSURL+GCS.h
@@ -46,36 +46,39 @@ include/NGCards/iCalTimeZonePeriod.h @@ -46,36 +46,39 @@ include/NGCards/iCalTimeZonePeriod.h
46include/NGCards/iCalToDo.h 46include/NGCards/iCalToDo.h
47include/NGCards/iCalTrigger.h 47include/NGCards/iCalTrigger.h
48include/NGCards/iCalUTCOffset.h 48include/NGCards/iCalUTCOffset.h
49include/NGCards/iCalXMLRenderer.h 49include/NGCards/iCalXMLRenderer.h
50include/SOGo 50include/SOGo
51include/SOGoUI/SOGoAptFormatter.h 51include/SOGoUI/SOGoAptFormatter.h
52include/SOGoUI/UIxComponent.h 52include/SOGoUI/UIxComponent.h
53include/SOGoUI/UIxJSClose.h 53include/SOGoUI/UIxJSClose.h
54lib/GNUstep/Frameworks/SOGo.framework/Headers 54lib/GNUstep/Frameworks/SOGo.framework/Headers
55lib/GNUstep/Frameworks/SOGo.framework/Resources 55lib/GNUstep/Frameworks/SOGo.framework/Resources
56lib/GNUstep/Frameworks/SOGo.framework/SOGo 56lib/GNUstep/Frameworks/SOGo.framework/SOGo
57lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/DOMNode+SOGo.h 57lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/DOMNode+SOGo.h
58lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/LDAPSource.h 58lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/LDAPSource.h
 59lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/LDAPSourceSchema.h
59lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSArray+DAV.h 60lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSArray+DAV.h
60lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSArray+Utilities.h 61lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSArray+Utilities.h
61lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSCalendarDate+SOGo.h 62lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSCalendarDate+SOGo.h
 63lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSData+Crypto.h
62lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+DAV.h 64lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+DAV.h
63lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+URL.h 65lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+URL.h
64lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+Utilities.h 66lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSDictionary+Utilities.h
65lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSNull+Utilities.h 67lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSNull+Utilities.h
66lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSNumber+Utilities.h 68lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSNumber+Utilities.h
67lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSObject+DAV.h 69lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSObject+DAV.h
68lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSObject+Utilities.h 70lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSObject+Utilities.h
 71lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSString+Crypto.h
69lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSString+DAV.h 72lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSString+DAV.h
70lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSString+Utilities.h 73lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSString+Utilities.h
71lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSURL+DAV.h 74lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/NSURL+DAV.h
72lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoAuthenticator.h 75lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoAuthenticator.h
73lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoBuild.h 76lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoBuild.h
74lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoCASSession.h 77lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoCASSession.h
75lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoCache.h 78lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoCache.h
76lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoConstants.h 79lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoConstants.h
77lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoContentObject.h 80lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoContentObject.h
78lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoDAVAuthenticator.h 81lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoDAVAuthenticator.h
79lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoDateFormatter.h 82lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoDateFormatter.h
80lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoFolder.h 83lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoFolder.h
81lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoGCSFolder.h 84lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoGCSFolder.h
@@ -96,27 +99,27 @@ lib/GNUstep/Frameworks/SOGo.framework/Ve @@ -96,27 +99,27 @@ lib/GNUstep/Frameworks/SOGo.framework/Ve
96lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebAuthenticator.h 99lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebAuthenticator.h
97lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebDAVAclManager.h 100lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebDAVAclManager.h
98lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebDAVValue.h 101lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SOGoWebDAVValue.h
99lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SQLSource.h 102lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/SQLSource.h
100lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOContext+SOGo.h 103lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOContext+SOGo.h
101lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WORequest+SOGo.h 104lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WORequest+SOGo.h
102lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOResourceManager+SOGo.h 105lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOResourceManager+SOGo.h
103lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOResponse+SOGo.h 106lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/WOResponse+SOGo.h
104lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/DAVReportMap.plist 107lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/DAVReportMap.plist
105lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/Info-gnustep.plist 108lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/Info-gnustep.plist
106lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/SOGoDefaults.plist 109lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Resources/SOGoDefaults.plist
107lib/GNUstep/Frameworks/SOGo.framework/Versions/2/SOGo 110lib/GNUstep/Frameworks/SOGo.framework/Versions/2/SOGo
108lib/GNUstep/Frameworks/SOGo.framework/Versions/2/libSOGo.so 111lib/GNUstep/Frameworks/SOGo.framework/Versions/2/libSOGo.so
109lib/GNUstep/Frameworks/SOGo.framework/Versions/2/libSOGo.so.2.0.0 112lib/GNUstep/Frameworks/SOGo.framework/Versions/2/libSOGo.so.2.0.2
110lib/GNUstep/Frameworks/SOGo.framework/Versions/Current 113lib/GNUstep/Frameworks/SOGo.framework/Versions/Current
111lib/GNUstep/Frameworks/SOGo.framework/libSOGo.so 114lib/GNUstep/Frameworks/SOGo.framework/libSOGo.so
112lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Abidjan.ics 115lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Abidjan.ics
113lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Accra.ics 116lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Accra.ics
114lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Addis_Ababa.ics 117lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Addis_Ababa.ics
115lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Algiers.ics 118lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Algiers.ics
116lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Asmara.ics 119lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Asmara.ics
117lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bamako.ics 120lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bamako.ics
118lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bangui.ics 121lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bangui.ics
119lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Banjul.ics 122lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Banjul.ics
120lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bissau.ics 123lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bissau.ics
121lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Blantyre.ics 124lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Blantyre.ics
122lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Brazzaville.ics 125lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Brazzaville.ics
@@ -124,26 +127,27 @@ lib/GNUstep/Libraries/Resources/NGCards/ @@ -124,26 +127,27 @@ lib/GNUstep/Libraries/Resources/NGCards/
124lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Cairo.ics 127lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Cairo.ics
125lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Casablanca.ics 128lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Casablanca.ics
126lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ceuta.ics 129lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ceuta.ics
127lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Conakry.ics 130lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Conakry.ics
128lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dakar.ics 131lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dakar.ics
129lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dar_es_Salaam.ics 132lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dar_es_Salaam.ics
130lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Djibouti.ics 133lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Djibouti.ics
131lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Douala.ics 134lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Douala.ics
132lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/El_Aaiun.ics 135lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/El_Aaiun.ics
133lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Freetown.ics 136lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Freetown.ics
134lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Gaborone.ics 137lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Gaborone.ics
135lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Harare.ics 138lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Harare.ics
136lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Johannesburg.ics 139lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Johannesburg.ics
 140lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Juba.ics
137lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kampala.ics 141lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kampala.ics
138lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Khartoum.ics 142lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Khartoum.ics
139lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kigali.ics 143lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kigali.ics
140lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kinshasa.ics 144lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kinshasa.ics
141lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lagos.ics 145lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lagos.ics
142lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Libreville.ics 146lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Libreville.ics
143lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lome.ics 147lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lome.ics
144lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Luanda.ics 148lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Luanda.ics
145lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lubumbashi.ics 149lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lubumbashi.ics
146lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lusaka.ics 150lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lusaka.ics
147lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Malabo.ics 151lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Malabo.ics
148lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maputo.ics 152lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maputo.ics
149lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maseru.ics 153lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maseru.ics
@@ -188,26 +192,27 @@ lib/GNUstep/Libraries/Resources/NGCards/ @@ -188,26 +192,27 @@ lib/GNUstep/Libraries/Resources/NGCards/
188lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Blanc-Sablon.ics 192lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Blanc-Sablon.ics
189lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boa_Vista.ics 193lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boa_Vista.ics
190lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bogota.ics 194lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bogota.ics
191lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boise.ics 195lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boise.ics
192lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cambridge_Bay.ics 196lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cambridge_Bay.ics
193lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Campo_Grande.ics 197lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Campo_Grande.ics
194lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cancun.ics 198lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cancun.ics
195lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Caracas.ics 199lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Caracas.ics
196lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayenne.ics 200lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayenne.ics
197lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayman.ics 201lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayman.ics
198lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chicago.ics 202lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chicago.ics
199lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chihuahua.ics 203lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chihuahua.ics
200lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Costa_Rica.ics 204lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Costa_Rica.ics
 205lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Creston.ics
201lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cuiaba.ics 206lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cuiaba.ics
202lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Curacao.ics 207lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Curacao.ics
203lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Danmarkshavn.ics 208lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Danmarkshavn.ics
204lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson.ics 209lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson.ics
205lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson_Creek.ics 210lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson_Creek.ics
206lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Denver.ics 211lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Denver.ics
207lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Detroit.ics 212lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Detroit.ics
208lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dominica.ics 213lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dominica.ics
209lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Edmonton.ics 214lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Edmonton.ics
210lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Eirunepe.ics 215lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Eirunepe.ics
211lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/El_Salvador.ics 216lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/El_Salvador.ics
212lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fortaleza.ics 217lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fortaleza.ics
213lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Glace_Bay.ics 218lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Glace_Bay.ics
@@ -226,72 +231,79 @@ lib/GNUstep/Libraries/Resources/NGCards/ @@ -226,72 +231,79 @@ lib/GNUstep/Libraries/Resources/NGCards/
226lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Knox.ics 231lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Knox.ics
227lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Marengo.ics 232lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Marengo.ics
228lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Petersburg.ics 233lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Petersburg.ics
229lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Tell_City.ics 234lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Tell_City.ics
230lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vevay.ics 235lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vevay.ics
231lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vincennes.ics 236lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vincennes.ics
232lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Winamac.ics 237lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Winamac.ics
233lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Inuvik.ics 238lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Inuvik.ics
234lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Iqaluit.ics 239lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Iqaluit.ics
235lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Jamaica.ics 240lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Jamaica.ics
236lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Juneau.ics 241lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Juneau.ics
237lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Louisville.ics 242lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Louisville.ics
238lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Monticello.ics 243lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Monticello.ics
 244lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kralendijk.ics
239lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/La_Paz.ics 245lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/La_Paz.ics
240lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lima.ics 246lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lima.ics
241lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Los_Angeles.ics 247lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Los_Angeles.ics
 248lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lower_Princes.ics
242lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Maceio.ics 249lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Maceio.ics
243lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Managua.ics 250lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Managua.ics
244lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Manaus.ics 251lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Manaus.ics
245lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Marigot.ics 252lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Marigot.ics
246lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Martinique.ics 253lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Martinique.ics
247lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Matamoros.ics 254lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Matamoros.ics
248lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mazatlan.ics 255lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mazatlan.ics
249lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Menominee.ics 256lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Menominee.ics
250lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Merida.ics 257lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Merida.ics
 258lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Metlakatla.ics
251lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mexico_City.ics 259lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mexico_City.ics
252lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Miquelon.ics 260lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Miquelon.ics
253lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Moncton.ics 261lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Moncton.ics
 262lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Monterrey.ics
254lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montevideo.ics 263lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montevideo.ics
255lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montreal.ics 264lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montreal.ics
 265lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montserrat.ics
256lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nassau.ics 266lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nassau.ics
257lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/New_York.ics 267lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/New_York.ics
258lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nipigon.ics 268lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nipigon.ics
259lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nome.ics 269lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nome.ics
260lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Noronha.ics 270lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Noronha.ics
 271lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Beulah.ics
261lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Center.ics 272lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Center.ics
262lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/New_Salem.ics 273lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/New_Salem.ics
263lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ojinaga.ics 274lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ojinaga.ics
264lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Panama.ics 275lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Panama.ics
265lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Pangnirtung.ics 276lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Pangnirtung.ics
266lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Paramaribo.ics 277lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Paramaribo.ics
267lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Phoenix.ics 278lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Phoenix.ics
268lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port-au-Prince.ics 279lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port-au-Prince.ics
269lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port_of_Spain.ics 280lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port_of_Spain.ics
270lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Porto_Velho.ics 281lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Porto_Velho.ics
271lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Puerto_Rico.ics 282lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Puerto_Rico.ics
272lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rainy_River.ics 283lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rainy_River.ics
273lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rankin_Inlet.ics 284lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rankin_Inlet.ics
274lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Recife.ics 285lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Recife.ics
275lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Regina.ics 286lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Regina.ics
276lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Resolute.ics 287lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Resolute.ics
277lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rio_Branco.ics 288lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rio_Branco.ics
278lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santa_Isabel.ics 289lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santa_Isabel.ics
279lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santarem.ics 290lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santarem.ics
280lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santiago.ics 291lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santiago.ics
281lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santo_Domingo.ics 292lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santo_Domingo.ics
282lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sao_Paulo.ics 293lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sao_Paulo.ics
283lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Scoresbysund.ics 294lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Scoresbysund.ics
284lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Shiprock.ics 295lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Shiprock.ics
 296lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sitka.ics
285lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Barthelemy.ics 297lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Barthelemy.ics
286lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Johns.ics 298lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Johns.ics
287lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Kitts.ics 299lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Kitts.ics
288lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Lucia.ics 300lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Lucia.ics
289lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Thomas.ics 301lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Thomas.ics
290lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Vincent.ics 302lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Vincent.ics
291lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Swift_Current.ics 303lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Swift_Current.ics
292lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tegucigalpa.ics 304lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tegucigalpa.ics
293lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thule.ics 305lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thule.ics
294lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thunder_Bay.ics 306lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thunder_Bay.ics
295lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tijuana.ics 307lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tijuana.ics
296lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Toronto.ics 308lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Toronto.ics
297lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tortola.ics 309lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tortola.ics
@@ -326,26 +338,27 @@ lib/GNUstep/Libraries/Resources/NGCards/ @@ -326,26 +338,27 @@ lib/GNUstep/Libraries/Resources/NGCards/
326lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Beirut.ics 338lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Beirut.ics
327lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bishkek.ics 339lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bishkek.ics
328lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Brunei.ics 340lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Brunei.ics
329lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Choibalsan.ics 341lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Choibalsan.ics
330lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chongqing.ics 342lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chongqing.ics
331lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Colombo.ics 343lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Colombo.ics
332lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Damascus.ics 344lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Damascus.ics
333lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dhaka.ics 345lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dhaka.ics
334lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dili.ics 346lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dili.ics
335lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dubai.ics 347lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dubai.ics
336lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dushanbe.ics 348lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dushanbe.ics
337lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Gaza.ics 349lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Gaza.ics
338lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Harbin.ics 350lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Harbin.ics
 351lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hebron.ics
339lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ho_Chi_Minh.ics 352lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ho_Chi_Minh.ics
340lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hong_Kong.ics 353lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hong_Kong.ics
341lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hovd.ics 354lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hovd.ics
342lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Irkutsk.ics 355lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Irkutsk.ics
343lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Istanbul.ics 356lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Istanbul.ics
344lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jakarta.ics 357lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jakarta.ics
345lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jayapura.ics 358lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jayapura.ics
346lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jerusalem.ics 359lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jerusalem.ics
347lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kabul.ics 360lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kabul.ics
348lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kamchatka.ics 361lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kamchatka.ics
349lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Karachi.ics 362lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Karachi.ics
350lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kashgar.ics 363lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kashgar.ics
351lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kathmandu.ics 364lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kathmandu.ics
@@ -508,353 +521,406 @@ lib/GNUstep/Libraries/Resources/NGCards/ @@ -508,353 +521,406 @@ lib/GNUstep/Libraries/Resources/NGCards/
508lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Palau.ics 521lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Palau.ics
509lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pitcairn.ics 522lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pitcairn.ics
510lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pohnpei.ics 523lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pohnpei.ics
511lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Ponape.ics 524lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Ponape.ics
512lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Port_Moresby.ics 525lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Port_Moresby.ics
513lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Rarotonga.ics 526lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Rarotonga.ics
514lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Saipan.ics 527lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Saipan.ics
515lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tahiti.ics 528lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tahiti.ics
516lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tarawa.ics 529lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tarawa.ics
517lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tongatapu.ics 530lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tongatapu.ics
518lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Truk.ics 531lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Truk.ics
519lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wake.ics 532lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wake.ics
520lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wallis.ics 533lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wallis.ics
 534lib/GNUstep/Libraries/Resources/NGCards/TimeZones/UPDATING
521lib/GNUstep/OCSTypeModels/appointment-oracle.ocs 535lib/GNUstep/OCSTypeModels/appointment-oracle.ocs
522lib/GNUstep/OCSTypeModels/appointment.ocs 536lib/GNUstep/OCSTypeModels/appointment.ocs
523lib/GNUstep/OCSTypeModels/contact-oracle.ocs 537lib/GNUstep/OCSTypeModels/contact-oracle.ocs
524lib/GNUstep/OCSTypeModels/contact.ocs 538lib/GNUstep/OCSTypeModels/contact.ocs
525lib/GNUstep/SOGo/AdministrationUI.SOGo/AdministrationUI 539lib/GNUstep/SOGo/AdministrationUI.SOGo/AdministrationUI
526lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 540lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
527lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/Localizable.strings 541lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/Localizable.strings
528lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/Localizable.strings 542lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/Localizable.strings
 543lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Danish.lproj/Localizable.strings
529lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Dutch.lproj/Localizable.strings 544lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Dutch.lproj/Localizable.strings
530lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/English.lproj/Localizable.strings 545lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/English.lproj/Localizable.strings
531lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/French.lproj/Localizable.strings 546lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/French.lproj/Localizable.strings
532lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/German.lproj/Localizable.strings 547lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/German.lproj/Localizable.strings
533lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 548lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
534lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Info-gnustep.plist 549lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Info-gnustep.plist
535lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Italian.lproj/Localizable.strings 550lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Italian.lproj/Localizable.strings
536lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 551lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 552lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
537lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Polish.lproj/Localizable.strings 553lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Polish.lproj/Localizable.strings
538lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/Localizable.strings 554lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/Localizable.strings
539lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Spanish.lproj/Localizable.strings 555lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 556lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
540lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Swedish.lproj/Localizable.strings 557lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Swedish.lproj/Localizable.strings
541lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/UIxAdministration.toolbar 558lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/UIxAdministration.toolbar
542lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 559lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
543lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Welsh.lproj/Localizable.strings 560lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Welsh.lproj/Localizable.strings
544lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/product.plist 561lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/product.plist
545lib/GNUstep/SOGo/AdministrationUI.SOGo/stamp.make 562lib/GNUstep/SOGo/AdministrationUI.SOGo/stamp.make
546lib/GNUstep/SOGo/Appointments.SOGo/Appointments 563lib/GNUstep/SOGo/Appointments.SOGo/Appointments
547lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 564lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
548lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/Localizable.strings 565lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/Localizable.strings
549lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/Localizable.strings 566lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/Localizable.strings
 567lib/GNUstep/SOGo/Appointments.SOGo/Resources/Danish.lproj/Localizable.strings
550lib/GNUstep/SOGo/Appointments.SOGo/Resources/Dutch.lproj/Localizable.strings 568lib/GNUstep/SOGo/Appointments.SOGo/Resources/Dutch.lproj/Localizable.strings
551lib/GNUstep/SOGo/Appointments.SOGo/Resources/English.lproj/Localizable.strings 569lib/GNUstep/SOGo/Appointments.SOGo/Resources/English.lproj/Localizable.strings
552lib/GNUstep/SOGo/Appointments.SOGo/Resources/French.lproj/Localizable.strings 570lib/GNUstep/SOGo/Appointments.SOGo/Resources/French.lproj/Localizable.strings
553lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/Localizable.strings 571lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/Localizable.strings
554lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/Localizable.strings 572lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/Localizable.strings
555lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/Localizable.strings 573lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/Localizable.strings
556lib/GNUstep/SOGo/Appointments.SOGo/Resources/Info-gnustep.plist 574lib/GNUstep/SOGo/Appointments.SOGo/Resources/Info-gnustep.plist
557lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings 575lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings
558lib/GNUstep/SOGo/Appointments.SOGo/Resources/Norwegian.lproj/Localizable.strings 576lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.html
 577lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.wod
 578lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 579lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
559lib/GNUstep/SOGo/Appointments.SOGo/Resources/Polish.lproj/Localizable.strings 580lib/GNUstep/SOGo/Appointments.SOGo/Resources/Polish.lproj/Localizable.strings
560lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/Localizable.strings 581lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/Localizable.strings
561lib/GNUstep/SOGo/Appointments.SOGo/Resources/Spanish.lproj/Localizable.strings 582lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 583lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
562lib/GNUstep/SOGo/Appointments.SOGo/Resources/Swedish.lproj/Localizable.strings 584lib/GNUstep/SOGo/Appointments.SOGo/Resources/Swedish.lproj/Localizable.strings
563lib/GNUstep/SOGo/Appointments.SOGo/Resources/Ukrainian.lproj/Localizable.strings 585lib/GNUstep/SOGo/Appointments.SOGo/Resources/Ukrainian.lproj/Localizable.strings
564lib/GNUstep/SOGo/Appointments.SOGo/Resources/Welsh.lproj/Localizable.strings 586lib/GNUstep/SOGo/Appointments.SOGo/Resources/Welsh.lproj/Localizable.strings
565lib/GNUstep/SOGo/Appointments.SOGo/Resources/product.plist 587lib/GNUstep/SOGo/Appointments.SOGo/Resources/product.plist
566lib/GNUstep/SOGo/Appointments.SOGo/bundle-info.plist 588lib/GNUstep/SOGo/Appointments.SOGo/bundle-info.plist
567lib/GNUstep/SOGo/CommonUI.SOGo/CommonUI 589lib/GNUstep/SOGo/CommonUI.SOGo/CommonUI
568lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 590lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
569lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/Localizable.strings 591lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/Localizable.strings
570lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/Localizable.strings 592lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/Localizable.strings
 593lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Danish.lproj/Localizable.strings
571lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Dutch.lproj/Localizable.strings 594lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Dutch.lproj/Localizable.strings
572lib/GNUstep/SOGo/CommonUI.SOGo/Resources/English.lproj/Localizable.strings 595lib/GNUstep/SOGo/CommonUI.SOGo/Resources/English.lproj/Localizable.strings
573lib/GNUstep/SOGo/CommonUI.SOGo/Resources/French.lproj/Localizable.strings 596lib/GNUstep/SOGo/CommonUI.SOGo/Resources/French.lproj/Localizable.strings
574lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/Localizable.strings 597lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/Localizable.strings
575lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 598lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
576lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 599lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
577lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Info-gnustep.plist 600lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Info-gnustep.plist
578lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/Localizable.strings 601lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/Localizable.strings
579lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 602lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 603lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
580lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Polish.lproj/Localizable.strings 604lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Polish.lproj/Localizable.strings
581lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/Localizable.strings 605lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/Localizable.strings
582lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Spanish.lproj/Localizable.strings 606lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 607lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
583lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Swedish.lproj/Localizable.strings 608lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Swedish.lproj/Localizable.strings
584lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 609lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
585lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Welsh.lproj/Localizable.strings 610lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Welsh.lproj/Localizable.strings
586lib/GNUstep/SOGo/CommonUI.SOGo/Resources/product.plist 611lib/GNUstep/SOGo/CommonUI.SOGo/Resources/product.plist
587lib/GNUstep/SOGo/CommonUI.SOGo/bundle-info.plist 612lib/GNUstep/SOGo/CommonUI.SOGo/bundle-info.plist
588lib/GNUstep/SOGo/CommonUI.SOGo/stamp.make 613lib/GNUstep/SOGo/CommonUI.SOGo/stamp.make
589lib/GNUstep/SOGo/Contacts.SOGo/Contacts 614lib/GNUstep/SOGo/Contacts.SOGo/Contacts
590lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 615lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
591lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/Localizable.strings 616lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/Localizable.strings
592lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/Localizable.strings 617lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/Localizable.strings
 618lib/GNUstep/SOGo/Contacts.SOGo/Resources/Danish.lproj/Localizable.strings
593lib/GNUstep/SOGo/Contacts.SOGo/Resources/Dutch.lproj/Localizable.strings 619lib/GNUstep/SOGo/Contacts.SOGo/Resources/Dutch.lproj/Localizable.strings
594lib/GNUstep/SOGo/Contacts.SOGo/Resources/English.lproj/Localizable.strings 620lib/GNUstep/SOGo/Contacts.SOGo/Resources/English.lproj/Localizable.strings
595lib/GNUstep/SOGo/Contacts.SOGo/Resources/French.lproj/Localizable.strings 621lib/GNUstep/SOGo/Contacts.SOGo/Resources/French.lproj/Localizable.strings
596lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/Localizable.strings 622lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/Localizable.strings
597lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/Localizable.strings 623lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/Localizable.strings
598lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/Localizable.strings 624lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/Localizable.strings
599lib/GNUstep/SOGo/Contacts.SOGo/Resources/Info-gnustep.plist 625lib/GNUstep/SOGo/Contacts.SOGo/Resources/Info-gnustep.plist
600lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/Localizable.strings 626lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/Localizable.strings
601lib/GNUstep/SOGo/Contacts.SOGo/Resources/Norwegian.lproj/Localizable.strings 627lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 628lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
602lib/GNUstep/SOGo/Contacts.SOGo/Resources/Polish.lproj/Localizable.strings 629lib/GNUstep/SOGo/Contacts.SOGo/Resources/Polish.lproj/Localizable.strings
603lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/Localizable.strings 630lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/Localizable.strings
604lib/GNUstep/SOGo/Contacts.SOGo/Resources/Spanish.lproj/Localizable.strings 631lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 632lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
605lib/GNUstep/SOGo/Contacts.SOGo/Resources/Swedish.lproj/Localizable.strings 633lib/GNUstep/SOGo/Contacts.SOGo/Resources/Swedish.lproj/Localizable.strings
606lib/GNUstep/SOGo/Contacts.SOGo/Resources/Ukrainian.lproj/Localizable.strings 634lib/GNUstep/SOGo/Contacts.SOGo/Resources/Ukrainian.lproj/Localizable.strings
607lib/GNUstep/SOGo/Contacts.SOGo/Resources/Welsh.lproj/Localizable.strings 635lib/GNUstep/SOGo/Contacts.SOGo/Resources/Welsh.lproj/Localizable.strings
608lib/GNUstep/SOGo/Contacts.SOGo/Resources/product.plist 636lib/GNUstep/SOGo/Contacts.SOGo/Resources/product.plist
609lib/GNUstep/SOGo/Contacts.SOGo/stamp.make 637lib/GNUstep/SOGo/Contacts.SOGo/stamp.make
610lib/GNUstep/SOGo/ContactsUI.SOGo/ContactsUI 638lib/GNUstep/SOGo/ContactsUI.SOGo/ContactsUI
611lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 639lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
612lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/Localizable.strings 640lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/Localizable.strings
613lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/Localizable.strings 641lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/Localizable.strings
 642lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Danish.lproj/Localizable.strings
614lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Dutch.lproj/Localizable.strings 643lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Dutch.lproj/Localizable.strings
615lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/English.lproj/Localizable.strings 644lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/English.lproj/Localizable.strings
616lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/French.lproj/Localizable.strings 645lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/French.lproj/Localizable.strings
617lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/Localizable.strings 646lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/Localizable.strings
618lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 647lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
619lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 648lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
620lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Info-gnustep.plist 649lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Info-gnustep.plist
621lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/Localizable.strings 650lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/Localizable.strings
622lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 651lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 652lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
623lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Polish.lproj/Localizable.strings 653lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Polish.lproj/Localizable.strings
624lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Russian.lproj/Localizable.strings 654lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Russian.lproj/Localizable.strings
625lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SOGoContactFolder.toolbar 655lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SOGoContactFolder.toolbar
626lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Spanish.lproj/Localizable.strings 656lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 657lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
627lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Swedish.lproj/Localizable.strings 658lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Swedish.lproj/Localizable.strings
628lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 659lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
629lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Welsh.lproj/Localizable.strings 660lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Welsh.lproj/Localizable.strings
630lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/product.plist 661lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/product.plist
631lib/GNUstep/SOGo/ContactsUI.SOGo/bundle-info.plist 662lib/GNUstep/SOGo/ContactsUI.SOGo/bundle-info.plist
632lib/GNUstep/SOGo/ContactsUI.SOGo/stamp.make 663lib/GNUstep/SOGo/ContactsUI.SOGo/stamp.make
633lib/GNUstep/SOGo/MailPartViewers.SOGo/MailPartViewers 664lib/GNUstep/SOGo/MailPartViewers.SOGo/MailPartViewers
634lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 665lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
635lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/Localizable.strings 666lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/Localizable.strings
636lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/Localizable.strings 667lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/Localizable.strings
 668lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Danish.lproj/Localizable.strings
637lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Dutch.lproj/Localizable.strings 669lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Dutch.lproj/Localizable.strings
638lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/English.lproj/Localizable.strings 670lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/English.lproj/Localizable.strings
639lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/French.lproj/Localizable.strings 671lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/French.lproj/Localizable.strings
640lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/Localizable.strings 672lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/Localizable.strings
641lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/Localizable.strings 673lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/Localizable.strings
642lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/Localizable.strings 674lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/Localizable.strings
643lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Info-gnustep.plist 675lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Info-gnustep.plist
644lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/Localizable.strings 676lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/Localizable.strings
645lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Norwegian.lproj/Localizable.strings 677lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 678lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
646lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Polish.lproj/Localizable.strings 679lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Polish.lproj/Localizable.strings
647lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/Localizable.strings 680lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/Localizable.strings
648lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Spanish.lproj/Localizable.strings 681lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 682lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
649lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Swedish.lproj/Localizable.strings 683lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Swedish.lproj/Localizable.strings
650lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Ukrainian.lproj/Localizable.strings 684lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Ukrainian.lproj/Localizable.strings
651lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Welsh.lproj/Localizable.strings 685lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Welsh.lproj/Localizable.strings
652lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/product.plist 686lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/product.plist
653lib/GNUstep/SOGo/MailPartViewers.SOGo/stamp.make 687lib/GNUstep/SOGo/MailPartViewers.SOGo/stamp.make
654lib/GNUstep/SOGo/Mailer.SOGo/Mailer 688lib/GNUstep/SOGo/Mailer.SOGo/Mailer
655lib/GNUstep/SOGo/Mailer.SOGo/Resources/Info-gnustep.plist 689lib/GNUstep/SOGo/Mailer.SOGo/Resources/Info-gnustep.plist
656lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.html 690lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.html
657lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.wod 691lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.wod
658lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.html 692lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.html
659lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.wod 693lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.wod
660lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.html 694lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.html
661lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.wod 695lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.wod
662lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.html 696lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.html
663lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.wod 697lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.wod
664lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.html 698lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.html
665lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.wod 699lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.wod
666lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.html 700lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.html
667lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.wod 701lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.wod
 702lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishForward.wo/SOGoMailDanishForward.html
 703lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishForward.wo/SOGoMailDanishForward.wod
 704lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishReply.wo/SOGoMailDanishReply.html
 705lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishReply.wo/SOGoMailDanishReply.wod
668lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.html 706lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.html
669lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.wod 707lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.wod
670lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.html 708lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.html
671lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.wod 709lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.wod
672lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.html 710lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.html
673lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.wod 711lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.wod
674lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.html 712lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.html
675lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.wod 713lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.wod
676lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.html 714lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.html
677lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.wod 715lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.wod
678lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.html 716lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.html
679lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.wod 717lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.wod
680lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.html 718lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.html
681lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.wod 719lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.wod
682lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.html 720lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.html
683lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.wod 721lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.wod
684lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.html 722lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.html
685lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.wod 723lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.wod
686lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.html 724lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.html
687lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.wod 725lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.wod
688lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.html 726lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.html
 727lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.wod
689lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.html 728lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.html
 729lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.wod
690lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.html 730lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.html
691lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.wod 731lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.wod
692lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.html 732lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.html
693lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.wod 733lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.wod
694lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianForward.wo/SOGoMailNorwegianForward.html 734lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalForward.wo/SOGoMailNorwegianBokmalForward.html
695lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianForward.wo/SOGoMailNorwegianForward.wod 735lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalForward.wo/SOGoMailNorwegianBokmalForward.wod
696lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianReply.wo/SOGoMailNorwegianReply.html 736lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalReply.wo/SOGoMailNorwegianBokmalReply.html
697lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianReply.wo/SOGoMailNorwegianReply.wod 737lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalReply.wo/SOGoMailNorwegianBokmalReply.wod
 738lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskForward.wo/SOGoMailNorwegianNynorskForward.html
 739lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskForward.wo/SOGoMailNorwegianNynorskForward.wod
 740lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskReply.wo/SOGoMailNorwegianNynorskReply.html
 741lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskReply.wo/SOGoMailNorwegianNynorskReply.wod
698lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.html 742lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.html
699lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.wod 743lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.wod
700lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.html 744lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.html
701lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.wod 745lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.wod
702lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.html 746lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.html
703lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.wod 747lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.wod
704lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.html 748lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.html
705lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.wod 749lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.wod
706lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishForward.wo/SOGoMailSpanishForward.html 750lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.html
707lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishForward.wo/SOGoMailSpanishForward.wod 751lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.wod
708lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishReply.wo/SOGoMailSpanishReply.html 752lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaReply.wo/SOGoMailSpanishArgentinaReply.html
709lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishReply.wo/SOGoMailSpanishReply.wod 753lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaReply.wo/SOGoMailSpanishArgentinaReply.wod
 754lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainForward.wo/SOGoMailSpanishSpainForward.html
 755lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainForward.wo/SOGoMailSpanishSpainForward.wod
 756lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainReply.wo/SOGoMailSpanishSpainReply.html
 757lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainReply.wo/SOGoMailSpanishSpainReply.wod
710lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.html 758lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.html
711lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.wod 759lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.wod
712lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.html 760lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.html
713lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.wod 761lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.wod
 762lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianForward.wo/SOGoMailUkrainianForward.html
 763lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianForward.wo/SOGoMailUkrainianForward.wod
 764lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianReply.wo/SOGoMailUkrainianReply.html
 765lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianReply.wo/SOGoMailUkrainianReply.wod
714lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.html 766lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.html
715lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.wod 767lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.wod
716lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.html 768lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.html
717lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.wod 769lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.wod
718lib/GNUstep/SOGo/Mailer.SOGo/Resources/product.plist 770lib/GNUstep/SOGo/Mailer.SOGo/Resources/product.plist
719lib/GNUstep/SOGo/Mailer.SOGo/bundle-info.plist 771lib/GNUstep/SOGo/Mailer.SOGo/bundle-info.plist
720lib/GNUstep/SOGo/MailerUI.SOGo/MailerUI 772lib/GNUstep/SOGo/MailerUI.SOGo/MailerUI
721lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 773lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
722lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/Localizable.strings 774lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
723lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/Localizable.strings 775lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/Localizable.strings
 776lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Danish.lproj/Localizable.strings
724lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Dutch.lproj/Localizable.strings 777lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
725lib/GNUstep/SOGo/MailerUI.SOGo/Resources/English.lproj/Localizable.strings 778lib/GNUstep/SOGo/MailerUI.SOGo/Resources/English.lproj/Localizable.strings
726lib/GNUstep/SOGo/MailerUI.SOGo/Resources/French.lproj/Localizable.strings 779lib/GNUstep/SOGo/MailerUI.SOGo/Resources/French.lproj/Localizable.strings
727lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/Localizable.strings 780lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/Localizable.strings
728lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 781lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
729lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 782lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
730lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Info-gnustep.plist 783lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Info-gnustep.plist
731lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/Localizable.strings 784lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/Localizable.strings
732lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 785lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 786lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
733lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Polish.lproj/Localizable.strings 787lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Polish.lproj/Localizable.strings
734lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Russian.lproj/Localizable.strings 788lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Russian.lproj/Localizable.strings
735lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoDraftObject.toolbar 789lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoDraftObject.toolbar
 790lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoMailFolder.toolbar
736lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoMailObject.toolbar 791lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoMailObject.toolbar
737lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Spanish.lproj/Localizable.strings 792lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 793lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
738lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Swedish.lproj/Localizable.strings 794lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
739lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 795lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
740lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Welsh.lproj/Localizable.strings 796lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
741lib/GNUstep/SOGo/MailerUI.SOGo/Resources/product.plist 797lib/GNUstep/SOGo/MailerUI.SOGo/Resources/product.plist
742lib/GNUstep/SOGo/MailerUI.SOGo/bundle-info.plist 798lib/GNUstep/SOGo/MailerUI.SOGo/bundle-info.plist
743lib/GNUstep/SOGo/MailerUI.SOGo/stamp.make 799lib/GNUstep/SOGo/MailerUI.SOGo/stamp.make
744lib/GNUstep/SOGo/MainUI.SOGo/MainUI 800lib/GNUstep/SOGo/MainUI.SOGo/MainUI
745lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale 801lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale
746lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 802lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
747lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Locale 803lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Locale
748lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Localizable.strings 804lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Localizable.strings
749lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Locale 805lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Locale
750lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Localizable.strings 806lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Localizable.strings
 807lib/GNUstep/SOGo/MainUI.SOGo/Resources/Danish.lproj/Locale
 808lib/GNUstep/SOGo/MainUI.SOGo/Resources/Danish.lproj/Localizable.strings
751lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Locale 809lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Locale
752lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Localizable.strings 810lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Localizable.strings
753lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Locale 811lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Locale
754lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Localizable.strings 812lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Localizable.strings
755lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Locale 813lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Locale
756lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Localizable.strings 814lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Localizable.strings
757lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Locale 815lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Locale
758lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Localizable.strings 816lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Localizable.strings
759lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Locale 817lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Locale
760lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 818lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
761lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Locale 819lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Locale
762lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 820lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
763lib/GNUstep/SOGo/MainUI.SOGo/Resources/Info-gnustep.plist 821lib/GNUstep/SOGo/MainUI.SOGo/Resources/Info-gnustep.plist
764lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Locale 822lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Locale
765lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Localizable.strings 823lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Localizable.strings
766lib/GNUstep/SOGo/MainUI.SOGo/Resources/Norwegian.lproj/Locale 824lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianBokmal.lproj/Locale
767lib/GNUstep/SOGo/MainUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 825lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 826lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianNynorsk.lproj/Locale
 827lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
768lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo-oracle.sql 828lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo-oracle.sql
769lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo.sql 829lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo.sql
770lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Locale 830lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Locale
771lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Localizable.strings 831lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Localizable.strings
772lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Locale 832lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Locale
773lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Localizable.strings 833lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Localizable.strings
774lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile-oracle.sql 834lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile-oracle.sql
775lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile.sql 835lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile.sql
776lib/GNUstep/SOGo/MainUI.SOGo/Resources/Spanish.lproj/Locale 836lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Locale
777lib/GNUstep/SOGo/MainUI.SOGo/Resources/Spanish.lproj/Localizable.strings 837lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 838lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishSpain.lproj/Locale
 839lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
778lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Locale 840lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Locale
779lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Localizable.strings 841lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Localizable.strings
780lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Locale 842lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Locale
781lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 843lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
782lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Locale 844lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Locale
783lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Localizable.strings 845lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Localizable.strings
784lib/GNUstep/SOGo/MainUI.SOGo/Resources/product.plist 846lib/GNUstep/SOGo/MainUI.SOGo/Resources/product.plist
785lib/GNUstep/SOGo/MainUI.SOGo/stamp.make 847lib/GNUstep/SOGo/MainUI.SOGo/stamp.make
786lib/GNUstep/SOGo/PreferencesUI.SOGo/PreferencesUI 848lib/GNUstep/SOGo/PreferencesUI.SOGo/PreferencesUI
787lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 849lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
788lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/Localizable.strings 850lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/Localizable.strings
789lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/Localizable.strings 851lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/Localizable.strings
 852lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Danish.lproj/Localizable.strings
790lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Dutch.lproj/Localizable.strings 853lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Dutch.lproj/Localizable.strings
791lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/English.lproj/Localizable.strings 854lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/English.lproj/Localizable.strings
792lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/French.lproj/Localizable.strings 855lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/French.lproj/Localizable.strings
793lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/Localizable.strings 856lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/Localizable.strings
794lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 857lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
795lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 858lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
796lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Info-gnustep.plist 859lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Info-gnustep.plist
797lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/Localizable.strings 860lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/Localizable.strings
798lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 861lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 862lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
799lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Polish.lproj/Localizable.strings 863lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Polish.lproj/Localizable.strings
800lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/Localizable.strings 864lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/Localizable.strings
801lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Spanish.lproj/Localizable.strings 865lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 866lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
802lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Swedish.lproj/Localizable.strings 867lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Swedish.lproj/Localizable.strings
803lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/UIxPreferences.toolbar 868lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/UIxPreferences.toolbar
804lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 869lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
805lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Welsh.lproj/Localizable.strings 870lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Welsh.lproj/Localizable.strings
806lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/product.plist 871lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/product.plist
807lib/GNUstep/SOGo/PreferencesUI.SOGo/stamp.make 872lib/GNUstep/SOGo/PreferencesUI.SOGo/stamp.make
808lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings 873lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
809lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/Localizable.strings 874lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
810lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/Localizable.strings 875lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/Localizable.strings
 876lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Danish.lproj/Localizable.strings
811lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Dutch.lproj/Localizable.strings 877lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
812lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/English.lproj/Localizable.strings 878lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/English.lproj/Localizable.strings
813lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/French.lproj/Localizable.strings 879lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/French.lproj/Localizable.strings
814lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/Localizable.strings 880lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/Localizable.strings
815lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings 881lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
816lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings 882lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
817lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Info-gnustep.plist 883lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Info-gnustep.plist
818lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/Localizable.strings 884lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/Localizable.strings
819lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Norwegian.lproj/Localizable.strings 885lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
 886lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
820lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Polish.lproj/Localizable.strings 887lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Polish.lproj/Localizable.strings
821lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Russian.lproj/Localizable.strings 888lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Russian.lproj/Localizable.strings
822lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentFolders.toolbar 889lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentFolders.toolbar
823lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObject.toolbar 890lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObject.toolbar
824lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAccept.toolbar 891lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAccept.toolbar
825lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAcceptOrDecline.toolbar 892lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAcceptOrDecline.toolbar
826lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectDecline.toolbar 893lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectDecline.toolbar
827lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoComponentClose.toolbar 894lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoComponentClose.toolbar
828lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoEmpty.toolbar 895lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoEmpty.toolbar
829lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoTaskObject.toolbar 896lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoTaskObject.toolbar
830lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Spanish.lproj/Localizable.strings 897lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 898lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
831lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Swedish.lproj/Localizable.strings 899lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
832lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings 900lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
833lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Welsh.lproj/Localizable.strings 901lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
834lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/cycles.plist 902lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/cycles.plist
835lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/product.plist 903lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/product.plist
836lib/GNUstep/SOGo/SchedulerUI.SOGo/SchedulerUI 904lib/GNUstep/SOGo/SchedulerUI.SOGo/SchedulerUI
837lib/GNUstep/SOGo/SchedulerUI.SOGo/bundle-info.plist 905lib/GNUstep/SOGo/SchedulerUI.SOGo/bundle-info.plist
838lib/GNUstep/SOGo/SchedulerUI.SOGo/stamp.make 906lib/GNUstep/SOGo/SchedulerUI.SOGo/stamp.make
839lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministration.wox 907lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministration.wox
840lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationFilterPanel.wox 908lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationFilterPanel.wox
841lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletion.wox 909lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletion.wox
842lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletionReceipt.wox 
843lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailICalReply.wox 910lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailICalReply.wox
844lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitation.wox 911lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitation.wox
845lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitationReceipt.wox 912lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailReceipt.wox
846lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdate.wox 913lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdate.wox
847lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdateReceipt.wox 
848lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactEditor.wox 914lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactEditor.wox
849lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFoldersView.wox 915lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFoldersView.wox
850lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactView.wox 916lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactView.wox
851lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsFilterPanel.wox 917lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsFilterPanel.wox
852lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsListView.wox 918lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsListView.wox
853lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsMailerSelection.wox 919lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsMailerSelection.wox
854lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserFolders.wox 920lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserFolders.wox
855lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserRightsEditor.wox 921lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserRightsEditor.wox
856lib/GNUstep/SOGo/Templates/ContactsUI/UIxListEditor.wox 922lib/GNUstep/SOGo/Templates/ContactsUI/UIxListEditor.wox
857lib/GNUstep/SOGo/Templates/ContactsUI/UIxListView.wox 923lib/GNUstep/SOGo/Templates/ContactsUI/UIxListView.wox
858lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartAlternativeViewer.wox 924lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartAlternativeViewer.wox
859lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartExternalHTMLViewer.wox 925lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartExternalHTMLViewer.wox
860lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartHTMLViewer.wox 926lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartHTMLViewer.wox
@@ -883,93 +949,108 @@ lib/GNUstep/SOGo/Templates/MainUI/SOGoRo @@ -883,93 +949,108 @@ lib/GNUstep/SOGo/Templates/MainUI/SOGoRo
883lib/GNUstep/SOGo/Templates/MainUI/SOGoUserHomePage.wox 949lib/GNUstep/SOGo/Templates/MainUI/SOGoUserHomePage.wox
884lib/GNUstep/SOGo/Templates/PreferencesUI/UIxAdditionalPreferences.wox 950lib/GNUstep/SOGo/Templates/PreferencesUI/UIxAdditionalPreferences.wox
885lib/GNUstep/SOGo/Templates/PreferencesUI/UIxFilterEditor.wox 951lib/GNUstep/SOGo/Templates/PreferencesUI/UIxFilterEditor.wox
886lib/GNUstep/SOGo/Templates/PreferencesUI/UIxPreferences.wox 952lib/GNUstep/SOGo/Templates/PreferencesUI/UIxPreferences.wox
887lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox 953lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox
888lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox 954lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox
889lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox 955lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox
890lib/GNUstep/SOGo/Templates/SOGoACLCatalanAdditionAdvisory.wox 956lib/GNUstep/SOGo/Templates/SOGoACLCatalanAdditionAdvisory.wox
891lib/GNUstep/SOGo/Templates/SOGoACLCatalanModificationAdvisory.wox 957lib/GNUstep/SOGo/Templates/SOGoACLCatalanModificationAdvisory.wox
892lib/GNUstep/SOGo/Templates/SOGoACLCatalanRemovalAdvisory.wox 958lib/GNUstep/SOGo/Templates/SOGoACLCatalanRemovalAdvisory.wox
893lib/GNUstep/SOGo/Templates/SOGoACLCzechAdditionAdvisory.wox 959lib/GNUstep/SOGo/Templates/SOGoACLCzechAdditionAdvisory.wox
894lib/GNUstep/SOGo/Templates/SOGoACLCzechModificationAdvisory.wox 960lib/GNUstep/SOGo/Templates/SOGoACLCzechModificationAdvisory.wox
895lib/GNUstep/SOGo/Templates/SOGoACLCzechRemovalAdvisory.wox 961lib/GNUstep/SOGo/Templates/SOGoACLCzechRemovalAdvisory.wox
 962lib/GNUstep/SOGo/Templates/SOGoACLDanishAdditionAdvisory.wox
 963lib/GNUstep/SOGo/Templates/SOGoACLDanishModificationAdvisory.wox
 964lib/GNUstep/SOGo/Templates/SOGoACLDanishRemovalAdvisory.wox
896lib/GNUstep/SOGo/Templates/SOGoACLDutchAdditionAdvisory.wox 965lib/GNUstep/SOGo/Templates/SOGoACLDutchAdditionAdvisory.wox
897lib/GNUstep/SOGo/Templates/SOGoACLDutchModificationAdvisory.wox 966lib/GNUstep/SOGo/Templates/SOGoACLDutchModificationAdvisory.wox
898lib/GNUstep/SOGo/Templates/SOGoACLDutchRemovalAdvisory.wox 967lib/GNUstep/SOGo/Templates/SOGoACLDutchRemovalAdvisory.wox
899lib/GNUstep/SOGo/Templates/SOGoACLEnglishAdditionAdvisory.wox 968lib/GNUstep/SOGo/Templates/SOGoACLEnglishAdditionAdvisory.wox
900lib/GNUstep/SOGo/Templates/SOGoACLEnglishModificationAdvisory.wox 969lib/GNUstep/SOGo/Templates/SOGoACLEnglishModificationAdvisory.wox
901lib/GNUstep/SOGo/Templates/SOGoACLEnglishRemovalAdvisory.wox 970lib/GNUstep/SOGo/Templates/SOGoACLEnglishRemovalAdvisory.wox
902lib/GNUstep/SOGo/Templates/SOGoACLFrenchAdditionAdvisory.wox 971lib/GNUstep/SOGo/Templates/SOGoACLFrenchAdditionAdvisory.wox
903lib/GNUstep/SOGo/Templates/SOGoACLFrenchModificationAdvisory.wox 972lib/GNUstep/SOGo/Templates/SOGoACLFrenchModificationAdvisory.wox
904lib/GNUstep/SOGo/Templates/SOGoACLFrenchRemovalAdvisory.wox 973lib/GNUstep/SOGo/Templates/SOGoACLFrenchRemovalAdvisory.wox
905lib/GNUstep/SOGo/Templates/SOGoACLGermanAdditionAdvisory.wox 974lib/GNUstep/SOGo/Templates/SOGoACLGermanAdditionAdvisory.wox
906lib/GNUstep/SOGo/Templates/SOGoACLGermanModificationAdvisory.wox 975lib/GNUstep/SOGo/Templates/SOGoACLGermanModificationAdvisory.wox
907lib/GNUstep/SOGo/Templates/SOGoACLGermanRemovalAdvisory.wox 976lib/GNUstep/SOGo/Templates/SOGoACLGermanRemovalAdvisory.wox
908lib/GNUstep/SOGo/Templates/SOGoACLHungarianAdditionAdvisory.wox 977lib/GNUstep/SOGo/Templates/SOGoACLHungarianAdditionAdvisory.wox
909lib/GNUstep/SOGo/Templates/SOGoACLHungarianModificationAdvisory.wox 978lib/GNUstep/SOGo/Templates/SOGoACLHungarianModificationAdvisory.wox
910lib/GNUstep/SOGo/Templates/SOGoACLHungarianRemovalAdvisory.wox 979lib/GNUstep/SOGo/Templates/SOGoACLHungarianRemovalAdvisory.wox
911lib/GNUstep/SOGo/Templates/SOGoACLIcelandicAdditionAdvisory.wox 980lib/GNUstep/SOGo/Templates/SOGoACLIcelandicAdditionAdvisory.wox
912lib/GNUstep/SOGo/Templates/SOGoACLIcelandicModificationAdvisory.wox 981lib/GNUstep/SOGo/Templates/SOGoACLIcelandicModificationAdvisory.wox
913lib/GNUstep/SOGo/Templates/SOGoACLIcelandicRemovalAdvisory.wox 982lib/GNUstep/SOGo/Templates/SOGoACLIcelandicRemovalAdvisory.wox
914lib/GNUstep/SOGo/Templates/SOGoACLItalianAdditionAdvisory.wox 983lib/GNUstep/SOGo/Templates/SOGoACLItalianAdditionAdvisory.wox
915lib/GNUstep/SOGo/Templates/SOGoACLItalianModificationAdvisory.wox 984lib/GNUstep/SOGo/Templates/SOGoACLItalianModificationAdvisory.wox
916lib/GNUstep/SOGo/Templates/SOGoACLItalianRemovalAdvisory.wox 985lib/GNUstep/SOGo/Templates/SOGoACLItalianRemovalAdvisory.wox
917lib/GNUstep/SOGo/Templates/SOGoACLNorwegianAdditionAdvisory.wox 986lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalAdditionAdvisory.wox
918lib/GNUstep/SOGo/Templates/SOGoACLNorwegianModificationAdvisory.wox 987lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalModificationAdvisory.wox
919lib/GNUstep/SOGo/Templates/SOGoACLNorwegianRemovalAdvisory.wox 988lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalRemovalAdvisory.wox
 989lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskAdditionAdvisory.wox
 990lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskModificationAdvisory.wox
 991lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskRemovalAdvisory.wox
920lib/GNUstep/SOGo/Templates/SOGoACLPolishAdditionAdvisory.wox 992lib/GNUstep/SOGo/Templates/SOGoACLPolishAdditionAdvisory.wox
921lib/GNUstep/SOGo/Templates/SOGoACLPolishModificationAdvisory.wox 993lib/GNUstep/SOGo/Templates/SOGoACLPolishModificationAdvisory.wox
922lib/GNUstep/SOGo/Templates/SOGoACLPolishRemovalAdvisory.wox 994lib/GNUstep/SOGo/Templates/SOGoACLPolishRemovalAdvisory.wox
923lib/GNUstep/SOGo/Templates/SOGoACLRussianAdditionAdvisory.wox 995lib/GNUstep/SOGo/Templates/SOGoACLRussianAdditionAdvisory.wox
924lib/GNUstep/SOGo/Templates/SOGoACLRussianModificationAdvisory.wox 996lib/GNUstep/SOGo/Templates/SOGoACLRussianModificationAdvisory.wox
925lib/GNUstep/SOGo/Templates/SOGoACLRussianRemovalAdvisory.wox 997lib/GNUstep/SOGo/Templates/SOGoACLRussianRemovalAdvisory.wox
926lib/GNUstep/SOGo/Templates/SOGoACLSpanishAdditionAdvisory.wox 998lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaAdditionAdvisory.wox
927lib/GNUstep/SOGo/Templates/SOGoACLSpanishModificationAdvisory.wox 999lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaModificationAdvisory.wox
928lib/GNUstep/SOGo/Templates/SOGoACLSpanishRemovalAdvisory.wox 1000lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaRemovalAdvisory.wox
 1001lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainAdditionAdvisory.wox
 1002lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainModificationAdvisory.wox
 1003lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainRemovalAdvisory.wox
929lib/GNUstep/SOGo/Templates/SOGoACLSwedishAdditionAdvisory.wox 1004lib/GNUstep/SOGo/Templates/SOGoACLSwedishAdditionAdvisory.wox
930lib/GNUstep/SOGo/Templates/SOGoACLSwedishModificationAdvisory.wox 1005lib/GNUstep/SOGo/Templates/SOGoACLSwedishModificationAdvisory.wox
931lib/GNUstep/SOGo/Templates/SOGoACLSwedishRemovalAdvisory.wox 1006lib/GNUstep/SOGo/Templates/SOGoACLSwedishRemovalAdvisory.wox
932lib/GNUstep/SOGo/Templates/SOGoACLUkrainianAdditionAdvisory.wox 1007lib/GNUstep/SOGo/Templates/SOGoACLUkrainianAdditionAdvisory.wox
933lib/GNUstep/SOGo/Templates/SOGoACLUkrainianModificationAdvisory.wox 1008lib/GNUstep/SOGo/Templates/SOGoACLUkrainianModificationAdvisory.wox
934lib/GNUstep/SOGo/Templates/SOGoACLUkrainianRemovalAdvisory.wox 1009lib/GNUstep/SOGo/Templates/SOGoACLUkrainianRemovalAdvisory.wox
935lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox 1010lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox
936lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox 1011lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox
937lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox 1012lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox
938lib/GNUstep/SOGo/Templates/SOGoFolderCatalanRemovalAdvisory.wox 1013lib/GNUstep/SOGo/Templates/SOGoFolderCatalanRemovalAdvisory.wox
939lib/GNUstep/SOGo/Templates/SOGoFolderCzechAdditionAdvisory.wox 1014lib/GNUstep/SOGo/Templates/SOGoFolderCzechAdditionAdvisory.wox
940lib/GNUstep/SOGo/Templates/SOGoFolderCzechRemovalAdvisory.wox 1015lib/GNUstep/SOGo/Templates/SOGoFolderCzechRemovalAdvisory.wox
 1016lib/GNUstep/SOGo/Templates/SOGoFolderDanishAdditionAdvisory.wox
 1017lib/GNUstep/SOGo/Templates/SOGoFolderDanishRemovalAdvisory.wox
941lib/GNUstep/SOGo/Templates/SOGoFolderDutchAdditionAdvisory.wox 1018lib/GNUstep/SOGo/Templates/SOGoFolderDutchAdditionAdvisory.wox
942lib/GNUstep/SOGo/Templates/SOGoFolderDutchRemovalAdvisory.wox 1019lib/GNUstep/SOGo/Templates/SOGoFolderDutchRemovalAdvisory.wox
943lib/GNUstep/SOGo/Templates/SOGoFolderEnglishAdditionAdvisory.wox 1020lib/GNUstep/SOGo/Templates/SOGoFolderEnglishAdditionAdvisory.wox
944lib/GNUstep/SOGo/Templates/SOGoFolderEnglishRemovalAdvisory.wox 1021lib/GNUstep/SOGo/Templates/SOGoFolderEnglishRemovalAdvisory.wox
945lib/GNUstep/SOGo/Templates/SOGoFolderFrenchAdditionAdvisory.wox 1022lib/GNUstep/SOGo/Templates/SOGoFolderFrenchAdditionAdvisory.wox
946lib/GNUstep/SOGo/Templates/SOGoFolderFrenchRemovalAdvisory.wox 1023lib/GNUstep/SOGo/Templates/SOGoFolderFrenchRemovalAdvisory.wox
947lib/GNUstep/SOGo/Templates/SOGoFolderGermanAdditionAdvisory.wox 1024lib/GNUstep/SOGo/Templates/SOGoFolderGermanAdditionAdvisory.wox
948lib/GNUstep/SOGo/Templates/SOGoFolderGermanRemovalAdvisory.wox 1025lib/GNUstep/SOGo/Templates/SOGoFolderGermanRemovalAdvisory.wox
949lib/GNUstep/SOGo/Templates/SOGoFolderHungarianAdditionAdvisory.wox 1026lib/GNUstep/SOGo/Templates/SOGoFolderHungarianAdditionAdvisory.wox
950lib/GNUstep/SOGo/Templates/SOGoFolderHungarianRemovalAdvisory.wox 1027lib/GNUstep/SOGo/Templates/SOGoFolderHungarianRemovalAdvisory.wox
951lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicAdditionAdvisory.wox 1028lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicAdditionAdvisory.wox
952lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicRemovalAdvisory.wox 1029lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicRemovalAdvisory.wox
953lib/GNUstep/SOGo/Templates/SOGoFolderItalianAdditionAdvisory.wox 1030lib/GNUstep/SOGo/Templates/SOGoFolderItalianAdditionAdvisory.wox
954lib/GNUstep/SOGo/Templates/SOGoFolderItalianRemovalAdvisory.wox 1031lib/GNUstep/SOGo/Templates/SOGoFolderItalianRemovalAdvisory.wox
955lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianAdditionAdvisory.wox 1032lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianBokmalAdditionAdvisory.wox
956lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianRemovalAdvisory.wox 1033lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianBokmalRemovalAdvisory.wox
 1034lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianNynorskAdditionAdvisory.wox
 1035lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianNynorskRemovalAdvisory.wox
957lib/GNUstep/SOGo/Templates/SOGoFolderPolishAdditionAdvisory.wox 1036lib/GNUstep/SOGo/Templates/SOGoFolderPolishAdditionAdvisory.wox
958lib/GNUstep/SOGo/Templates/SOGoFolderPolishRemovalAdvisory.wox 1037lib/GNUstep/SOGo/Templates/SOGoFolderPolishRemovalAdvisory.wox
959lib/GNUstep/SOGo/Templates/SOGoFolderRussianAdditionAdvisory.wox 1038lib/GNUstep/SOGo/Templates/SOGoFolderRussianAdditionAdvisory.wox
960lib/GNUstep/SOGo/Templates/SOGoFolderRussianRemovalAdvisory.wox 1039lib/GNUstep/SOGo/Templates/SOGoFolderRussianRemovalAdvisory.wox
961lib/GNUstep/SOGo/Templates/SOGoFolderSpanishAdditionAdvisory.wox 1040lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaAdditionAdvisory.wox
962lib/GNUstep/SOGo/Templates/SOGoFolderSpanishRemovalAdvisory.wox 1041lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaRemovalAdvisory.wox
 1042lib/GNUstep/SOGo/Templates/SOGoFolderSpanishSpainAdditionAdvisory.wox
 1043lib/GNUstep/SOGo/Templates/SOGoFolderSpanishSpainRemovalAdvisory.wox
963lib/GNUstep/SOGo/Templates/SOGoFolderSwedishAdditionAdvisory.wox 1044lib/GNUstep/SOGo/Templates/SOGoFolderSwedishAdditionAdvisory.wox
964lib/GNUstep/SOGo/Templates/SOGoFolderSwedishRemovalAdvisory.wox 1045lib/GNUstep/SOGo/Templates/SOGoFolderSwedishRemovalAdvisory.wox
965lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianAdditionAdvisory.wox 1046lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianAdditionAdvisory.wox
966lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianRemovalAdvisory.wox 1047lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianRemovalAdvisory.wox
967lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentEditor.wox 1048lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentEditor.wox
968lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentProposal.wox 1049lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentProposal.wox
969lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAptTableView.wox 1050lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAptTableView.wox
970lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAttendeesEditor.wox 1051lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAttendeesEditor.wox
971lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDateSelector.wox 1052lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDateSelector.wox
972lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayTable.wox 1053lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayTable.wox
973lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayView.wox 1054lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayView.wox
974lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalFilterPanel.wox 1055lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalFilterPanel.wox
975lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMainView.wox 1056lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMainView.wox
@@ -983,26 +1064,27 @@ lib/GNUstep/SOGo/Templates/SchedulerUI/U @@ -983,26 +1064,27 @@ lib/GNUstep/SOGo/Templates/SchedulerUI/U
983lib/GNUstep/SOGo/Templates/SchedulerUI/UIxComponentEditor.wox 1064lib/GNUstep/SOGo/Templates/SchedulerUI/UIxComponentEditor.wox
984lib/GNUstep/SOGo/Templates/SchedulerUI/UIxDatePicker.wox 1065lib/GNUstep/SOGo/Templates/SchedulerUI/UIxDatePicker.wox
985lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFilterList.wox 1066lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFilterList.wox
986lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFreeBusyUserSelector.wox 1067lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFreeBusyUserSelector.wox
987lib/GNUstep/SOGo/Templates/SchedulerUI/UIxOccurenceDialog.wox 1068lib/GNUstep/SOGo/Templates/SchedulerUI/UIxOccurenceDialog.wox
988lib/GNUstep/SOGo/Templates/SchedulerUI/UIxRecurrenceEditor.wox 1069lib/GNUstep/SOGo/Templates/SchedulerUI/UIxRecurrenceEditor.wox
989lib/GNUstep/SOGo/Templates/SchedulerUI/UIxReminderEditor.wox 1070lib/GNUstep/SOGo/Templates/SchedulerUI/UIxReminderEditor.wox
990lib/GNUstep/SOGo/Templates/SchedulerUI/UIxSortButton.wox 1071lib/GNUstep/SOGo/Templates/SchedulerUI/UIxSortButton.wox
991lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskEditor.wox 1072lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskEditor.wox
992lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskProposal.wox 1073lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskProposal.wox
993lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTimeDateControl.wox 1074lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTimeDateControl.wox
994lib/GNUstep/SOGo/Templates/UIxAclEditor.wox 1075lib/GNUstep/SOGo/Templates/UIxAclEditor.wox
995lib/GNUstep/SOGo/Templates/UIxJSClose.wox 1076lib/GNUstep/SOGo/Templates/UIxJSClose.wox
 1077lib/GNUstep/SOGo/Templates/UIxLoading.wox
996lib/GNUstep/SOGo/Templates/UIxModuleAccessDenied.wox 1078lib/GNUstep/SOGo/Templates/UIxModuleAccessDenied.wox
997lib/GNUstep/SOGo/Templates/UIxPageFrame.wox 1079lib/GNUstep/SOGo/Templates/UIxPageFrame.wox
998lib/GNUstep/SOGo/Templates/UIxSortableTableHeader.wox 1080lib/GNUstep/SOGo/Templates/UIxSortableTableHeader.wox
999lib/GNUstep/SOGo/Templates/UIxToolbar.wox 1081lib/GNUstep/SOGo/Templates/UIxToolbar.wox
1000lib/GNUstep/SOGo/Templates/UIxUserRightsEditor.wox 1082lib/GNUstep/SOGo/Templates/UIxUserRightsEditor.wox
1001lib/GNUstep/SOGo/Templates/UIxWinClose.wox 1083lib/GNUstep/SOGo/Templates/UIxWinClose.wox
1002lib/GNUstep/SOGo/WebServerResources/AdministrationUI.css 1084lib/GNUstep/SOGo/WebServerResources/AdministrationUI.css
1003lib/GNUstep/SOGo/WebServerResources/AdministrationUI.js 1085lib/GNUstep/SOGo/WebServerResources/AdministrationUI.js
1004lib/GNUstep/SOGo/WebServerResources/COPYING-thunderbird.txt 1086lib/GNUstep/SOGo/WebServerResources/COPYING-thunderbird.txt
1005lib/GNUstep/SOGo/WebServerResources/ContactsUI.css 1087lib/GNUstep/SOGo/WebServerResources/ContactsUI.css
1006lib/GNUstep/SOGo/WebServerResources/ContactsUI.js 1088lib/GNUstep/SOGo/WebServerResources/ContactsUI.js
1007lib/GNUstep/SOGo/WebServerResources/HTMLElement.js 1089lib/GNUstep/SOGo/WebServerResources/HTMLElement.js
1008lib/GNUstep/SOGo/WebServerResources/HTMLInputElement.js 1090lib/GNUstep/SOGo/WebServerResources/HTMLInputElement.js
@@ -1012,26 +1094,27 @@ lib/GNUstep/SOGo/WebServerResources/LICE @@ -1012,26 +1094,27 @@ lib/GNUstep/SOGo/WebServerResources/LICE
1012lib/GNUstep/SOGo/WebServerResources/MailerUI.css 1094lib/GNUstep/SOGo/WebServerResources/MailerUI.css
1013lib/GNUstep/SOGo/WebServerResources/MailerUI.js 1095lib/GNUstep/SOGo/WebServerResources/MailerUI.js
1014lib/GNUstep/SOGo/WebServerResources/MailerUIdTree.js 1096lib/GNUstep/SOGo/WebServerResources/MailerUIdTree.js
1015lib/GNUstep/SOGo/WebServerResources/PasswordPolicy.js 1097lib/GNUstep/SOGo/WebServerResources/PasswordPolicy.js
1016lib/GNUstep/SOGo/WebServerResources/RowEditionController.js 1098lib/GNUstep/SOGo/WebServerResources/RowEditionController.js
1017lib/GNUstep/SOGo/WebServerResources/SOGoAutoCompletion.js 1099lib/GNUstep/SOGo/WebServerResources/SOGoAutoCompletion.js
1018lib/GNUstep/SOGo/WebServerResources/SOGoDataTable.js 1100lib/GNUstep/SOGo/WebServerResources/SOGoDataTable.js
1019lib/GNUstep/SOGo/WebServerResources/SOGoDragHandles.js 1101lib/GNUstep/SOGo/WebServerResources/SOGoDragHandles.js
1020lib/GNUstep/SOGo/WebServerResources/SOGoMailDataSource.js 1102lib/GNUstep/SOGo/WebServerResources/SOGoMailDataSource.js
1021lib/GNUstep/SOGo/WebServerResources/SOGoResizableTable.js 1103lib/GNUstep/SOGo/WebServerResources/SOGoResizableTable.js
1022lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.css 1104lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.css
1023lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.js 1105lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.js
1024lib/GNUstep/SOGo/WebServerResources/SOGoTabsController.js 1106lib/GNUstep/SOGo/WebServerResources/SOGoTabsController.js
 1107lib/GNUstep/SOGo/WebServerResources/SOGoTimePicker.css
1025lib/GNUstep/SOGo/WebServerResources/SOGoTimePicker.js 1108lib/GNUstep/SOGo/WebServerResources/SOGoTimePicker.js
1026lib/GNUstep/SOGo/WebServerResources/SchedulerUI.css 1109lib/GNUstep/SOGo/WebServerResources/SchedulerUI.css
1027lib/GNUstep/SOGo/WebServerResources/SchedulerUI.js 1110lib/GNUstep/SOGo/WebServerResources/SchedulerUI.js
1028lib/GNUstep/SOGo/WebServerResources/SchedulerUIDnD.js 1111lib/GNUstep/SOGo/WebServerResources/SchedulerUIDnD.js
1029lib/GNUstep/SOGo/WebServerResources/Search-bar.png 1112lib/GNUstep/SOGo/WebServerResources/Search-bar.png
1030lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.css 1113lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.css
1031lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.js 1114lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.js
1032lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.css 1115lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.css
1033lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.js 1116lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.js
1034lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.css 1117lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.css
1035lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.js 1118lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.js
1036lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.css 1119lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.css
1037lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.js 1120lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.js
@@ -1093,28 +1176,28 @@ lib/GNUstep/SOGo/WebServerResources/arro @@ -1093,28 +1176,28 @@ lib/GNUstep/SOGo/WebServerResources/arro
1093lib/GNUstep/SOGo/WebServerResources/attachment.gif 1176lib/GNUstep/SOGo/WebServerResources/attachment.gif
1094lib/GNUstep/SOGo/WebServerResources/attendee-partstats.png 1177lib/GNUstep/SOGo/WebServerResources/attendee-partstats.png
1095lib/GNUstep/SOGo/WebServerResources/attendee-roles.png 1178lib/GNUstep/SOGo/WebServerResources/attendee-roles.png
1096lib/GNUstep/SOGo/WebServerResources/browser_chrome.gif 1179lib/GNUstep/SOGo/WebServerResources/browser_chrome.gif
1097lib/GNUstep/SOGo/WebServerResources/browser_firefox.gif 1180lib/GNUstep/SOGo/WebServerResources/browser_firefox.gif
1098lib/GNUstep/SOGo/WebServerResources/browser_ie.gif 1181lib/GNUstep/SOGo/WebServerResources/browser_ie.gif
1099lib/GNUstep/SOGo/WebServerResources/browser_safari.gif 1182lib/GNUstep/SOGo/WebServerResources/browser_safari.gif
1100lib/GNUstep/SOGo/WebServerResources/btn_a_bg.png 1183lib/GNUstep/SOGo/WebServerResources/btn_a_bg.png
1101lib/GNUstep/SOGo/WebServerResources/btn_span_bg.png 1184lib/GNUstep/SOGo/WebServerResources/btn_span_bg.png
1102lib/GNUstep/SOGo/WebServerResources/busy.gif 1185lib/GNUstep/SOGo/WebServerResources/busy.gif
1103lib/GNUstep/SOGo/WebServerResources/calendar-folder-16x16.png 1186lib/GNUstep/SOGo/WebServerResources/calendar-folder-16x16.png
1104lib/GNUstep/SOGo/WebServerResources/calendar-reload.png 1187lib/GNUstep/SOGo/WebServerResources/calendar-reload.png
1105lib/GNUstep/SOGo/WebServerResources/choose-date.png 1188lib/GNUstep/SOGo/WebServerResources/choose-date.png
1106lib/GNUstep/SOGo/WebServerResources/ckeditor/.htaccess 
1107lib/GNUstep/SOGo/WebServerResources/ckeditor/LICENSE.html 1189lib/GNUstep/SOGo/WebServerResources/ckeditor/LICENSE.html
 1190lib/GNUstep/SOGo/WebServerResources/ckeditor/adapters/jquery.js
1108lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor.js 1191lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor.js
1109lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor_basic.js 1192lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor_basic.js
1110lib/GNUstep/SOGo/WebServerResources/ckeditor/config.js 1193lib/GNUstep/SOGo/WebServerResources/ckeditor/config.js
1111lib/GNUstep/SOGo/WebServerResources/ckeditor/contents.css 1194lib/GNUstep/SOGo/WebServerResources/ckeditor/contents.css
1112lib/GNUstep/SOGo/WebServerResources/ckeditor/images/spacer.gif 1195lib/GNUstep/SOGo/WebServerResources/ckeditor/images/spacer.gif
1113lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_languages.js 1196lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_languages.js
1114lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_translationstatus.txt 1197lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_translationstatus.txt
1115lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/af.js 1198lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/af.js
1116lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ar.js 1199lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ar.js
1117lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bg.js 1200lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bg.js
1118lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bn.js 1201lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bn.js
1119lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bs.js 1202lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bs.js
1120lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ca.js 1203lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ca.js
@@ -1132,58 +1215,83 @@ lib/GNUstep/SOGo/WebServerResources/cked @@ -1132,58 +1215,83 @@ lib/GNUstep/SOGo/WebServerResources/cked
1132lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/et.js 1215lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/et.js
1133lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/eu.js 1216lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/eu.js
1134lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fa.js 1217lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fa.js
1135lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fi.js 1218lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fi.js
1136lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fo.js 1219lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fo.js
1137lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr-ca.js 1220lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr-ca.js
1138lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr.js 1221lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr.js
1139lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gl.js 1222lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gl.js
1140lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gu.js 1223lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gu.js
1141lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/he.js 1224lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/he.js
1142lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hi.js 1225lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hi.js
1143lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hr.js 1226lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hr.js
1144lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hu.js 1227lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hu.js
 1228lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/id.js
1145lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/is.js 1229lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/is.js
1146lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/it.js 1230lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/it.js
1147lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ja.js 1231lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ja.js
1148lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ka.js 1232lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ka.js
1149lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/km.js 1233lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/km.js
1150lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ko.js 1234lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ko.js
1151lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lt.js 1235lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lt.js
1152lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lv.js 1236lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lv.js
 1237lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/mk.js
1153lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/mn.js 1238lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/mn.js
1154lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ms.js 1239lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ms.js
1155lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nb.js 1240lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nb.js
1156lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nl.js 1241lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nl.js
1157lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/no.js 1242lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/no.js
1158lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pl.js 1243lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pl.js
1159lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt-br.js 1244lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt-br.js
1160lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt.js 1245lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt.js
1161lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ro.js 1246lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ro.js
1162lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ru.js 1247lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ru.js
1163lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sk.js 1248lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sk.js
1164lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sl.js 1249lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sl.js
1165lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr-latn.js 1250lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr-latn.js
1166lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr.js 1251lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr.js
1167lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sv.js 1252lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sv.js
1168lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/th.js 1253lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/th.js
1169lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/tr.js 1254lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/tr.js
 1255lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ug.js
1170lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/uk.js 1256lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/uk.js
1171lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/vi.js 1257lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/vi.js
1172lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh-cn.js 1258lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh-cn.js
1173lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh.js 1259lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh.js
1174lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js 1260lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
 1261lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt
 1262lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/cs.js
 1263lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/cy.js
 1264lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/da.js
 1265lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/de.js
 1266lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/el.js
1175lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/en.js 1267lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/en.js
 1268lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/eo.js
 1269lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/fa.js
 1270lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/fi.js
 1271lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/fr.js
 1272lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/gu.js
1176lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/he.js 1273lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/he.js
 1274lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/it.js
 1275lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/mk.js
 1276lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/nb.js
 1277lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/nl.js
 1278lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/no.js
 1279lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/pt-br.js
 1280lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/ro.js
 1281lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/tr.js
 1282lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/ug.js
 1283lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/vi.js
 1284lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/zh-cn.js
1177lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/about.js 1285lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/about.js
1178lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/logo_ckeditor.png 1286lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/logo_ckeditor.png
1179lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/ajax/plugin.js 1287lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/ajax/plugin.js
1180lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/autogrow/plugin.js 1288lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/autogrow/plugin.js
1181lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/bbcode/plugin.js 1289lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/bbcode/plugin.js
1182lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/paste.js 1290lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/paste.js
1183lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/dialogs/colordialog.js 1291lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/dialogs/colordialog.js
1184lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/dialogDefinition.js 1292lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/dialogDefinition.js
1185lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/dialogs/div.js 1293lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/dialogs/div.js
1186lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/dialogs/docprops.js 1294lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/dialogs/docprops.js
1187lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/plugin.js 1295lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/plugin.js
1188lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/dialogs/find.js 1296lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/dialogs/find.js
1189lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/flash/dialogs/flash.js 1297lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/flash/dialogs/flash.js
@@ -1199,28 +1307,52 @@ lib/GNUstep/SOGo/WebServerResources/cked @@ -1199,28 +1307,52 @@ lib/GNUstep/SOGo/WebServerResources/cked
1199lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/images/hiddenfield.gif 1307lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/images/hiddenfield.gif
1200lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/dialogs/iframe.js 1308lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/dialogs/iframe.js
1201lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/images/placeholder.png 1309lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/images/placeholder.png
1202lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframedialog/plugin.js 1310lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframedialog/plugin.js
1203lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/image/dialogs/image.js 1311lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/image/dialogs/image.js
1204lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/anchor.js 1312lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/anchor.js
1205lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/link.js 1313lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/link.js
1206lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/images/anchor.gif 1314lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/images/anchor.gif
1207lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/liststyle/dialogs/liststyle.js 1315lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/liststyle/dialogs/liststyle.js
1208lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pagebreak/images/pagebreak.gif 1316lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pagebreak/images/pagebreak.gif
1209lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastefromword/filter/default.js 1317lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastefromword/filter/default.js
1210lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastetext/dialogs/pastetext.js 1318lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastetext/dialogs/pastetext.js
1211lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/dialogs/placeholder.js 1319lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/dialogs/placeholder.js
 1320lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/_translationstatus.txt
 1321lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/bg.js
 1322lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/cs.js
 1323lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/cy.js
 1324lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/da.js
 1325lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/de.js
 1326lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/el.js
1212lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/en.js 1327lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/en.js
 1328lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/eo.js
 1329lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/et.js
 1330lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/fa.js
 1331lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/fi.js
 1332lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/fr.js
1213lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/he.js 1333lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/he.js
 1334lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/hr.js
 1335lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/it.js
 1336lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/nb.js
 1337lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/nl.js
 1338lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/no.js
 1339lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/pl.js
 1340lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/pt-br.js
 1341lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/tr.js
 1342lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/ug.js
 1343lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/uk.js
 1344lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/vi.js
 1345lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/zh-cn.js
1214lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/placeholder.gif 1346lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/placeholder.gif
1215lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/plugin.js 1347lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/plugin.js
1216lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/options.js 1348lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/options.js
1217lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/toolbar.css 1349lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/toolbar.css
1218lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_address.png 1350lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_address.png
1219lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_blockquote.png 1351lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_blockquote.png
1220lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_div.png 1352lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_div.png
1221lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h1.png 1353lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h1.png
1222lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h2.png 1354lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h2.png
1223lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h3.png 1355lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h3.png
1224lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h4.png 1356lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h4.png
1225lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h5.png 1357lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h5.png
1226lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h6.png 1358lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h6.png
@@ -1239,40 +1371,85 @@ lib/GNUstep/SOGo/WebServerResources/cked @@ -1239,40 +1371,85 @@ lib/GNUstep/SOGo/WebServerResources/cked
1239lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/kiss.gif 1371lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/kiss.gif
1240lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/lightbulb.gif 1372lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/lightbulb.gif
1241lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/omg_smile.gif 1373lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/omg_smile.gif
1242lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/regular_smile.gif 1374lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/regular_smile.gif
1243lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/sad_smile.gif 1375lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/sad_smile.gif
1244lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/shades_smile.gif 1376lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/shades_smile.gif
1245lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/teeth_smile.gif 1377lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/teeth_smile.gif
1246lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_down.gif 1378lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_down.gif
1247lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_up.gif 1379lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_up.gif
1248lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/tounge_smile.gif 1380lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/tounge_smile.gif
1249lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif 1381lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
1250lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/wink_smile.gif 1382lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/wink_smile.gif
1251lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/dialogs/specialchar.js 1383lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/dialogs/specialchar.js
 1384lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/_translationstatus.txt
 1385lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/cs.js
 1386lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/cy.js
 1387lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/de.js
 1388lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/el.js
1252lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/en.js 1389lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/en.js
 1390lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/eo.js
 1391lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/et.js
 1392lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/fa.js
 1393lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/fi.js
 1394lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/fr.js
 1395lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/he.js
 1396lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/hr.js
 1397lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/it.js
 1398lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/nb.js
 1399lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/nl.js
 1400lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/no.js
 1401lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/pt-br.js
 1402lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/tr.js
 1403lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/ug.js
 1404lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/zh-cn.js
1253lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/styles/default.js 1405lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/styles/default.js
1254lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/stylesheetparser/plugin.js 1406lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/stylesheetparser/plugin.js
1255lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/dialogs/table.js 1407lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/dialogs/table.js
1256lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tableresize/plugin.js 1408lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tableresize/plugin.js
1257lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tabletools/dialogs/tableCell.js 1409lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tabletools/dialogs/tableCell.js
1258lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/dialogs/templates.js 1410lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/dialogs/templates.js
1259lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/default.js 1411lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/default.js
1260lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template1.gif 1412lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template1.gif
1261lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template2.gif 1413lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template2.gif
1262lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template3.gif 1414lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template3.gif
1263lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/dialogs/uicolor.js 1415lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/dialogs/uicolor.js
 1416lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/_translationstatus.txt
 1417lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/bg.js
 1418lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/cs.js
 1419lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/cy.js
 1420lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/da.js
 1421lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/de.js
 1422lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/el.js
1264lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/en.js 1423lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/en.js
 1424lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/eo.js
 1425lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/et.js
 1426lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/fa.js
 1427lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/fi.js
 1428lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/fr.js
1265lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/he.js 1429lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/he.js
 1430lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/hr.js
 1431lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/it.js
 1432lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/mk.js
 1433lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/nb.js
 1434lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/nl.js
 1435lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/no.js
 1436lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/pl.js
 1437lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/pt-br.js
 1438lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/tr.js
 1439lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/ug.js
 1440lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/uk.js
 1441lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/vi.js
 1442lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/zh-cn.js
1266lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/plugin.js 1443lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/plugin.js
1267lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/uicolor.gif 1444lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/uicolor.gif
1268lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_bg.png 1445lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
1269lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png 1446lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
1270lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_mask.png 1447lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
1271lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png 1448lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
1272lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/yui.css 1449lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/yui.css
1273lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/yui.js 1450lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/yui.js
1274lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/ciframe.html 1451lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/ciframe.html
1275lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/tmpFrameset.html 1452lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
1276lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.css 1453lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.css
1277lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.js 1454lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.js
1278lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/xml/plugin.js 1455lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/xml/plugin.js
@@ -1310,57 +1487,62 @@ lib/GNUstep/SOGo/WebServerResources/cked @@ -1310,57 +1487,62 @@ lib/GNUstep/SOGo/WebServerResources/cked
1310lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.gif 1487lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.gif
1311lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.png 1488lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.png
1312lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides_rtl.png 1489lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides_rtl.png
1313lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/mini.gif 1490lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/mini.gif
1314lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/noimage.png 1491lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/noimage.png
1315lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites.png 1492lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites.png
1316lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites_ie6.png 1493lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites_ie6.png
1317lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/toolbar_start.gif 1494lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/toolbar_start.gif
1318lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/skin.js 1495lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/skin.js
1319lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/templates.css 1496lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/templates.css
1320lib/GNUstep/SOGo/WebServerResources/ckeditor/themes/default/theme.js 1497lib/GNUstep/SOGo/WebServerResources/ckeditor/themes/default/theme.js
1321lib/GNUstep/SOGo/WebServerResources/confidential.png 1498lib/GNUstep/SOGo/WebServerResources/confidential.png
1322lib/GNUstep/SOGo/WebServerResources/create-account.png 1499lib/GNUstep/SOGo/WebServerResources/create-account.png
 1500lib/GNUstep/SOGo/WebServerResources/datepicker.css
 1501lib/GNUstep/SOGo/WebServerResources/datepicker.js
1323lib/GNUstep/SOGo/WebServerResources/day-view-multicolumn.png 1502lib/GNUstep/SOGo/WebServerResources/day-view-multicolumn.png
1324lib/GNUstep/SOGo/WebServerResources/day-view.png 1503lib/GNUstep/SOGo/WebServerResources/day-view.png
1325lib/GNUstep/SOGo/WebServerResources/dialog-left.png 1504lib/GNUstep/SOGo/WebServerResources/dialog-left.png
1326lib/GNUstep/SOGo/WebServerResources/dialog-right.png 1505lib/GNUstep/SOGo/WebServerResources/dialog-right.png
1327lib/GNUstep/SOGo/WebServerResources/dialog-top.png 1506lib/GNUstep/SOGo/WebServerResources/dialog-top.png
1328lib/GNUstep/SOGo/WebServerResources/dot.png 1507lib/GNUstep/SOGo/WebServerResources/dot.png
1329lib/GNUstep/SOGo/WebServerResources/down-icon.png 1508lib/GNUstep/SOGo/WebServerResources/down-icon.png
 1509lib/GNUstep/SOGo/WebServerResources/dragdot.png
1330lib/GNUstep/SOGo/WebServerResources/dtree.css 1510lib/GNUstep/SOGo/WebServerResources/dtree.css
1331lib/GNUstep/SOGo/WebServerResources/dtree.js 1511lib/GNUstep/SOGo/WebServerResources/dtree.js
1332lib/GNUstep/SOGo/WebServerResources/edit.png 1512lib/GNUstep/SOGo/WebServerResources/edit.png
1333lib/GNUstep/SOGo/WebServerResources/empty.gif 1513lib/GNUstep/SOGo/WebServerResources/empty.gif
1334lib/GNUstep/SOGo/WebServerResources/event-gradient.png 1514lib/GNUstep/SOGo/WebServerResources/event-gradient.png
1335lib/GNUstep/SOGo/WebServerResources/event-grippy-bottom.png 1515lib/GNUstep/SOGo/WebServerResources/event-grippy-bottom.png
1336lib/GNUstep/SOGo/WebServerResources/event-grippy-top.png 1516lib/GNUstep/SOGo/WebServerResources/event-grippy-top.png
1337lib/GNUstep/SOGo/WebServerResources/event-grippy-vertical.png 1517lib/GNUstep/SOGo/WebServerResources/event-grippy-vertical.png
1338lib/GNUstep/SOGo/WebServerResources/first.gif 1518lib/GNUstep/SOGo/WebServerResources/first.gif
1339lib/GNUstep/SOGo/WebServerResources/flag-col.png 1519lib/GNUstep/SOGo/WebServerResources/flag-col.png
1340lib/GNUstep/SOGo/WebServerResources/flag.png 1520lib/GNUstep/SOGo/WebServerResources/flag.png
1341lib/GNUstep/SOGo/WebServerResources/generic.css 1521lib/GNUstep/SOGo/WebServerResources/generic.css
1342lib/GNUstep/SOGo/WebServerResources/generic.js 1522lib/GNUstep/SOGo/WebServerResources/generic.js
1343lib/GNUstep/SOGo/WebServerResources/goto-today.png 1523lib/GNUstep/SOGo/WebServerResources/goto-today.png
1344lib/GNUstep/SOGo/WebServerResources/green_corner.gif 1524lib/GNUstep/SOGo/WebServerResources/green_corner.gif
1345lib/GNUstep/SOGo/WebServerResources/icon-deleted.png 1525lib/GNUstep/SOGo/WebServerResources/icon-deleted.png
1346lib/GNUstep/SOGo/WebServerResources/icon-forwarded-replied.png 1526lib/GNUstep/SOGo/WebServerResources/icon-forwarded-replied.png
1347lib/GNUstep/SOGo/WebServerResources/icon-forwarded.png 1527lib/GNUstep/SOGo/WebServerResources/icon-forwarded.png
1348lib/GNUstep/SOGo/WebServerResources/icon-new.png 1528lib/GNUstep/SOGo/WebServerResources/icon-new.png
1349lib/GNUstep/SOGo/WebServerResources/icon-replied.png 1529lib/GNUstep/SOGo/WebServerResources/icon-replied.png
1350lib/GNUstep/SOGo/WebServerResources/iefixes.css 1530lib/GNUstep/SOGo/WebServerResources/iefixes.css
1351lib/GNUstep/SOGo/WebServerResources/important.png 1531lib/GNUstep/SOGo/WebServerResources/important.png
1352lib/GNUstep/SOGo/WebServerResources/input_bg.gif 1532lib/GNUstep/SOGo/WebServerResources/input_bg.gif
1353lib/GNUstep/SOGo/WebServerResources/inverse.png 1533lib/GNUstep/SOGo/WebServerResources/inverse.png
 1534lib/GNUstep/SOGo/WebServerResources/jquery-ui.js
 1535lib/GNUstep/SOGo/WebServerResources/jquery.js
1354lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.css 1536lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.css
1355lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.js 1537lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.js
1356lib/GNUstep/SOGo/WebServerResources/last.gif 1538lib/GNUstep/SOGo/WebServerResources/last.gif
1357lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.js 1539lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.js
1358lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.txt 1540lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.txt
1359lib/GNUstep/SOGo/WebServerResources/lori_32x32.png 1541lib/GNUstep/SOGo/WebServerResources/lori_32x32.png
1360lib/GNUstep/SOGo/WebServerResources/manage-filters.png 1542lib/GNUstep/SOGo/WebServerResources/manage-filters.png
1361lib/GNUstep/SOGo/WebServerResources/manage-imap.png 1543lib/GNUstep/SOGo/WebServerResources/manage-imap.png
1362lib/GNUstep/SOGo/WebServerResources/menu-check-hover.gif 1544lib/GNUstep/SOGo/WebServerResources/menu-check-hover.gif
1363lib/GNUstep/SOGo/WebServerResources/menu-check.gif 1545lib/GNUstep/SOGo/WebServerResources/menu-check.gif
1364lib/GNUstep/SOGo/WebServerResources/menu-nocheck.gif 1546lib/GNUstep/SOGo/WebServerResources/menu-nocheck.gif
1365lib/GNUstep/SOGo/WebServerResources/message-copy.gif 1547lib/GNUstep/SOGo/WebServerResources/message-copy.gif
1366lib/GNUstep/SOGo/WebServerResources/message.gif 1548lib/GNUstep/SOGo/WebServerResources/message.gif
@@ -1526,40 +1708,29 @@ lib/GNUstep/SOGo/WebServerResources/prev @@ -1526,40 +1708,29 @@ lib/GNUstep/SOGo/WebServerResources/prev
1526lib/GNUstep/SOGo/WebServerResources/private.png 1708lib/GNUstep/SOGo/WebServerResources/private.png
1527lib/GNUstep/SOGo/WebServerResources/properties.png 1709lib/GNUstep/SOGo/WebServerResources/properties.png
1528lib/GNUstep/SOGo/WebServerResources/prototype.js 1710lib/GNUstep/SOGo/WebServerResources/prototype.js
1529lib/GNUstep/SOGo/WebServerResources/quota-level-alert.png 1711lib/GNUstep/SOGo/WebServerResources/quota-level-alert.png
1530lib/GNUstep/SOGo/WebServerResources/quota-level-ok.png 1712lib/GNUstep/SOGo/WebServerResources/quota-level-ok.png
1531lib/GNUstep/SOGo/WebServerResources/quota-level-warn.png 1713lib/GNUstep/SOGo/WebServerResources/quota-level-warn.png
1532lib/GNUstep/SOGo/WebServerResources/quota-level.png 1714lib/GNUstep/SOGo/WebServerResources/quota-level.png
1533lib/GNUstep/SOGo/WebServerResources/read-messages.png 1715lib/GNUstep/SOGo/WebServerResources/read-messages.png
1534lib/GNUstep/SOGo/WebServerResources/remote-addrbook.png 1716lib/GNUstep/SOGo/WebServerResources/remote-addrbook.png
1535lib/GNUstep/SOGo/WebServerResources/remove-addressbook.png 1717lib/GNUstep/SOGo/WebServerResources/remove-addressbook.png
1536lib/GNUstep/SOGo/WebServerResources/remove-calendar.png 1718lib/GNUstep/SOGo/WebServerResources/remove-calendar.png
1537lib/GNUstep/SOGo/WebServerResources/remove-contact.gif 1719lib/GNUstep/SOGo/WebServerResources/remove-contact.gif
1538lib/GNUstep/SOGo/WebServerResources/remove-icon.png 1720lib/GNUstep/SOGo/WebServerResources/remove-icon.png
1539lib/GNUstep/SOGo/WebServerResources/scriptaculous.js 
1540lib/GNUstep/SOGo/WebServerResources/scriptaculous/MIT-LICENSE 
1541lib/GNUstep/SOGo/WebServerResources/scriptaculous/builder.js 
1542lib/GNUstep/SOGo/WebServerResources/scriptaculous/controls.js 
1543lib/GNUstep/SOGo/WebServerResources/scriptaculous/dragdrop.js 
1544lib/GNUstep/SOGo/WebServerResources/scriptaculous/effects.js 
1545lib/GNUstep/SOGo/WebServerResources/scriptaculous/slider.js 
1546lib/GNUstep/SOGo/WebServerResources/scriptaculous/sound.js 
1547lib/GNUstep/SOGo/WebServerResources/scriptaculous/unittest.js 
1548lib/GNUstep/SOGo/WebServerResources/search-messages.png 1721lib/GNUstep/SOGo/WebServerResources/search-messages.png
1549lib/GNUstep/SOGo/WebServerResources/signature-not-ok.png 1722lib/GNUstep/SOGo/WebServerResources/signature-not-ok.png
1550lib/GNUstep/SOGo/WebServerResources/signature-ok.png 1723lib/GNUstep/SOGo/WebServerResources/signature-ok.png
1551lib/GNUstep/SOGo/WebServerResources/skycalendar.html 
1552lib/GNUstep/SOGo/WebServerResources/skycalendar.js 
1553lib/GNUstep/SOGo/WebServerResources/slider_handle.gif 1724lib/GNUstep/SOGo/WebServerResources/slider_handle.gif
1554lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_a_bg.png 1725lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_a_bg.png
1555lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_span_bg.png 1726lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_span_bg.png
1556lib/GNUstep/SOGo/WebServerResources/sogo-logo.png 1727lib/GNUstep/SOGo/WebServerResources/sogo-logo.png
1557lib/GNUstep/SOGo/WebServerResources/sogo.ico 1728lib/GNUstep/SOGo/WebServerResources/sogo.ico
1558lib/GNUstep/SOGo/WebServerResources/status.vacation-msg.png 1729lib/GNUstep/SOGo/WebServerResources/status.vacation-msg.png
1559lib/GNUstep/SOGo/WebServerResources/submenu-active.gif 1730lib/GNUstep/SOGo/WebServerResources/submenu-active.gif
1560lib/GNUstep/SOGo/WebServerResources/submenu-disabled.gif 1731lib/GNUstep/SOGo/WebServerResources/submenu-disabled.gif
1561lib/GNUstep/SOGo/WebServerResources/submenu.gif 1732lib/GNUstep/SOGo/WebServerResources/submenu.gif
1562lib/GNUstep/SOGo/WebServerResources/tab_a_active_bg.png 1733lib/GNUstep/SOGo/WebServerResources/tab_a_active_bg.png
1563lib/GNUstep/SOGo/WebServerResources/tab_a_inactive_bg.png 1734lib/GNUstep/SOGo/WebServerResources/tab_a_inactive_bg.png
1564lib/GNUstep/SOGo/WebServerResources/tab_left_active.gif 1735lib/GNUstep/SOGo/WebServerResources/tab_left_active.gif
1565lib/GNUstep/SOGo/WebServerResources/tab_left_inactive.gif 1736lib/GNUstep/SOGo/WebServerResources/tab_left_inactive.gif
@@ -1579,36 +1750,36 @@ lib/GNUstep/SOGo/WebServerResources/tb-c @@ -1579,36 +1750,36 @@ lib/GNUstep/SOGo/WebServerResources/tb-c
1579lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-16x16.png 1750lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-16x16.png
1580lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-24x24.png 1751lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-24x24.png
1581lib/GNUstep/SOGo/WebServerResources/tb-mail-delete-flat-24x24.png 1752lib/GNUstep/SOGo/WebServerResources/tb-mail-delete-flat-24x24.png
1582lib/GNUstep/SOGo/WebServerResources/tb-mail-file-flat-24x24.png 1753lib/GNUstep/SOGo/WebServerResources/tb-mail-file-flat-24x24.png
1583lib/GNUstep/SOGo/WebServerResources/tb-mail-forward-flat-24x24.png 1754lib/GNUstep/SOGo/WebServerResources/tb-mail-forward-flat-24x24.png
1584lib/GNUstep/SOGo/WebServerResources/tb-mail-getmail-flat-24x24.png 1755lib/GNUstep/SOGo/WebServerResources/tb-mail-getmail-flat-24x24.png
1585lib/GNUstep/SOGo/WebServerResources/tb-mail-junk-flat-24x24.png 1756lib/GNUstep/SOGo/WebServerResources/tb-mail-junk-flat-24x24.png
1586lib/GNUstep/SOGo/WebServerResources/tb-mail-print-flat-24x24.png 1757lib/GNUstep/SOGo/WebServerResources/tb-mail-print-flat-24x24.png
1587lib/GNUstep/SOGo/WebServerResources/tb-mail-reply-flat-24x24.png 1758lib/GNUstep/SOGo/WebServerResources/tb-mail-reply-flat-24x24.png
1588lib/GNUstep/SOGo/WebServerResources/tb-mail-replyall-flat-24x24.png 1759lib/GNUstep/SOGo/WebServerResources/tb-mail-replyall-flat-24x24.png
1589lib/GNUstep/SOGo/WebServerResources/tb-mail-stop-flat-24x24.png 1760lib/GNUstep/SOGo/WebServerResources/tb-mail-stop-flat-24x24.png
1590lib/GNUstep/SOGo/WebServerResources/tb-mail-write-flat-24x24.png 1761lib/GNUstep/SOGo/WebServerResources/tb-mail-write-flat-24x24.png
1591lib/GNUstep/SOGo/WebServerResources/tbtv_account_17x17.png 1762lib/GNUstep/SOGo/WebServerResources/tbtv_account_17x17.png
1592lib/GNUstep/SOGo/WebServerResources/tbtv_corner_17x17.gif 1763lib/GNUstep/SOGo/WebServerResources/tbtv_corner_17x22.png
1593lib/GNUstep/SOGo/WebServerResources/tbtv_corner_minus_17x17.gif 1764lib/GNUstep/SOGo/WebServerResources/tbtv_corner_minus_17x22.png
1594lib/GNUstep/SOGo/WebServerResources/tbtv_corner_plus_17x17.gif 1765lib/GNUstep/SOGo/WebServerResources/tbtv_corner_plus_17x22.png
1595lib/GNUstep/SOGo/WebServerResources/tbtv_drafts_17x17.png 1766lib/GNUstep/SOGo/WebServerResources/tbtv_drafts_17x17.png
1596lib/GNUstep/SOGo/WebServerResources/tbtv_inbox_17x17.png 1767lib/GNUstep/SOGo/WebServerResources/tbtv_inbox_17x17.png
1597lib/GNUstep/SOGo/WebServerResources/tbtv_junction_17x17.gif 1768lib/GNUstep/SOGo/WebServerResources/tbtv_junction_17x22.png
1598lib/GNUstep/SOGo/WebServerResources/tbtv_leaf_corner_17x17.png 1769lib/GNUstep/SOGo/WebServerResources/tbtv_leaf_corner_17x17.png
1599lib/GNUstep/SOGo/WebServerResources/tbtv_line_17x17.gif 1770lib/GNUstep/SOGo/WebServerResources/tbtv_line_17x22.png
1600lib/GNUstep/SOGo/WebServerResources/tbtv_minus_17x17.gif 1771lib/GNUstep/SOGo/WebServerResources/tbtv_minus_17x22.png
1601lib/GNUstep/SOGo/WebServerResources/tbtv_plus_17x17.gif 1772lib/GNUstep/SOGo/WebServerResources/tbtv_plus_17x22.png
1602lib/GNUstep/SOGo/WebServerResources/tbtv_sent_17x17.png 1773lib/GNUstep/SOGo/WebServerResources/tbtv_sent_17x17.png
1603lib/GNUstep/SOGo/WebServerResources/tbtv_trash_17x17.png 1774lib/GNUstep/SOGo/WebServerResources/tbtv_trash_17x17.png
1604lib/GNUstep/SOGo/WebServerResources/tentative.png 1775lib/GNUstep/SOGo/WebServerResources/tentative.png
1605lib/GNUstep/SOGo/WebServerResources/thead_bg.png 1776lib/GNUstep/SOGo/WebServerResources/thead_bg.png
1606lib/GNUstep/SOGo/WebServerResources/title_attachment_14x14.png 1777lib/GNUstep/SOGo/WebServerResources/title_attachment_14x14.png
1607lib/GNUstep/SOGo/WebServerResources/title_read_14x14.png 1778lib/GNUstep/SOGo/WebServerResources/title_read_14x14.png
1608lib/GNUstep/SOGo/WebServerResources/title_sortdown_12x12.png 1779lib/GNUstep/SOGo/WebServerResources/title_sortdown_12x12.png
1609lib/GNUstep/SOGo/WebServerResources/title_sortup_12x12.png 1780lib/GNUstep/SOGo/WebServerResources/title_sortup_12x12.png
1610lib/GNUstep/SOGo/WebServerResources/toolbarbtn_a_bg.png 1781lib/GNUstep/SOGo/WebServerResources/toolbarbtn_a_bg.png
1611lib/GNUstep/SOGo/WebServerResources/toolbarbtn_span_bg.png 1782lib/GNUstep/SOGo/WebServerResources/toolbarbtn_span_bg.png
1612lib/GNUstep/SOGo/WebServerResources/unread.png 1783lib/GNUstep/SOGo/WebServerResources/unread.png
1613lib/GNUstep/SOGo/WebServerResources/up-icon.png 1784lib/GNUstep/SOGo/WebServerResources/up-icon.png
1614lib/GNUstep/SOGo/WebServerResources/week-view.png 1785lib/GNUstep/SOGo/WebServerResources/week-view.png
@@ -1621,23 +1792,23 @@ lib/GNUstep/SaxDrivers-4.9/versitCardsSa @@ -1621,23 +1792,23 @@ lib/GNUstep/SaxDrivers-4.9/versitCardsSa
1621lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/versitCardsSaxDriver 1792lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/versitCardsSaxDriver
1622lib/GNUstep/SaxMappings/NGCards.xmap 1793lib/GNUstep/SaxMappings/NGCards.xmap
1623lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/Resources/Info-gnustep.plist 1794lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/Resources/Info-gnustep.plist
1624lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/SOGoElements 1795lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/SOGoElements
1625lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/bundle-info.plist 1796lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/bundle-info.plist
1626lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/stamp.make 1797lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/stamp.make
1627lib/libGDLContentStore.so 1798lib/libGDLContentStore.so
1628lib/libGDLContentStore.so.4.9.0 1799lib/libGDLContentStore.so.4.9.0
1629lib/libNGCards.so 1800lib/libNGCards.so
1630lib/libNGCards.so.4.9.0 1801lib/libNGCards.so.4.9.0
1631lib/libOGoContentStore.so 1802lib/libOGoContentStore.so
1632lib/libOGoContentStore.so.0.9.0 1803lib/libOGoContentStore.so.0.9.0
1633lib/libSOGo.so 1804lib/libSOGo.so
1634lib/libSOGo.so.2.0.0 1805lib/libSOGo.so.2.0.2
1635lib/libSOGoUI.so 1806lib/libSOGoUI.so
1636lib/libSOGoUI.so.2.0.0 1807lib/libSOGoUI.so.2.0.0
1637sbin/sogo-ealarms-notify 1808sbin/sogo-ealarms-notify
1638sbin/sogo-slapd-sockd 1809sbin/sogo-slapd-sockd
1639sbin/sogo-tool 1810sbin/sogo-tool
1640sbin/sogod 1811sbin/sogod
1641share/examples/SOGo/SOGo.conf 1812share/examples/SOGo/SOGo.conf
1642share/examples/SOGo/sogo-conf.sh 1813share/examples/SOGo/sogo-conf.sh
1643share/examples/rc.d/sogod 1814share/examples/rc.d/sogod

cvs diff -r1.5 -r1.6 pkgsrc/www/SOGo/distinfo (expand / switch to unified diff)

--- pkgsrc/www/SOGo/distinfo 2011/12/15 12:55:16 1.5
+++ pkgsrc/www/SOGo/distinfo 2012/11/24 14:06:44 1.6
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.5 2011/12/15 12:55:16 dholland Exp $ 1$NetBSD: distinfo,v 1.6 2012/11/24 14:06:44 manu Exp $
2 2
3SHA1 (SOGo-2.0.0b3.tar.gz) = 3da9fc968842c521cabb3277017f9e128b3c16c6 3SHA1 (SOGo-2.0.2a.tar.gz) = 0e722b8530465463560c2c9a2c45f748979d8674
4RMD160 (SOGo-2.0.0b3.tar.gz) = 711cd54c4b5cbb7481142c0600131579344cbdbb 4RMD160 (SOGo-2.0.2a.tar.gz) = dd1fc7764e9aa151ed8a64307d75d8130f05a810
5Size (SOGo-2.0.0b3.tar.gz) = 3801713 bytes 5Size (SOGo-2.0.2a.tar.gz) = 6700117 bytes
6SHA1 (patch-SoObjects_SOGo_NSString+Utilities.m) = 003d015629adff3b0f2bee165518fa549840901b 6SHA1 (patch-SoObjects_SOGo_GNUmakefile.preamble) = ae129e2a04ab2e43d58c29c2db0a950881305fb1
7SHA1 (patch-aa) = d5f7c3caea148b6b5f872fb0561d14ec15312c90 7SHA1 (patch-SoObjects_SOGo_NSData+Crypto.m) = 259be0979fbbc61194a0fbccd34d81dee3659186

File Added: pkgsrc/www/SOGo/patches/Attic/patch-SoObjects_SOGo_GNUmakefile.preamble
$NetBSD: patch-SoObjects_SOGo_GNUmakefile.preamble,v 1.1 2012/11/24 14:06:44 manu Exp $
--- ./SoObjects/SOGo/GNUmakefile.preamble.orig	2012-11-23 16:15:38.000000000 +0100
+++ ./SoObjects/SOGo/GNUmakefile.preamble	2012-11-23 16:15:43.000000000 +0100
@@ -23,9 +23,9 @@
 	-lNGMime		\
 	-lNGStreams -lNGExtensions -lEOControl \
 	-lDOM -lSaxObjC \
 	-lNGLdap -lSBJson \
-        -lGDLContentStore -lgnustep-base -lobjc -ldl
+        -lGDLContentStore -lgnustep-base -lobjc 
 
 ifeq ($(HAS_LIBRARY_gnutls),yes)
 ADDITIONAL_CPPFLAGS += -DHAVE_GNUTLS=1
 SOGo_LIBRARIES_DEPEND_UPON += -lgnutls

File Added: pkgsrc/www/SOGo/patches/patch-SoObjects_SOGo_NSData+Crypto.m
$NetBSD: patch-SoObjects_SOGo_NSData+Crypto.m,v 1.1 2012/11/24 14:06:44 manu Exp $

--- SoObjects/SOGo/NSData+Crypto.m.orig	2012-11-22 18:43:09.000000000 +0100
+++ SoObjects/SOGo/NSData+Crypto.m	2012-11-22 18:43:47.000000000 +0100
@@ -22,9 +22,9 @@
  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
 
-#ifndef __OpenBSD__
+#ifdef __sun
 #include <crypt.h>
 #endif
 
 #include <sys/types.h>

File Deleted: pkgsrc/www/SOGo/patches/patch-SoObjects_SOGo_NSString+Utilities.m

File Deleted: pkgsrc/www/SOGo/patches/Attic/patch-aa