OBS User unknown 2008-10-06 17:15:52 +00:00 committed by Git OBS Bridge
parent e54e567194
commit df145fc0a1
7 changed files with 199 additions and 34814 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d1b841d7deb9303022011df87ede06c89fd09a3f9bf9f5832f451ed7cdb45bc
size 7864941

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26a3d7a2e00df0a889dc8531ab9712cd18097c786b13a9cb788464f53b656f26
size 7860772

View File

@ -1,22 +0,0 @@
diff --git a/camel/camel-db.c b/camel/camel-db.c
index b76775c..95a9289 100644
--- a/camel/camel-db.c
+++ b/camel/camel-db.c
@@ -1088,6 +1088,8 @@ camel_db_get_column_name (const char *raw_name)
return g_strdup ("deleted");
else if (!g_ascii_strcasecmp (raw_name, "junk"))
return g_strdup ("junk");
+ else if (!g_ascii_strcasecmp (raw_name, "Answered"))
+ return g_strdup ("replied");
else if (!g_ascii_strcasecmp (raw_name, "Seen"))
return g_strdup ("read");
else if (!g_ascii_strcasecmp (raw_name, "user-tag"))
@@ -1096,6 +1098,8 @@ camel_db_get_column_name (const char *raw_name)
return g_strdup ("labels");
else if (!g_ascii_strcasecmp (raw_name, "Attachments"))
return g_strdup ("attachment");
+ else if (!g_ascii_strcasecmp (raw_name, "x-camel-mlist"))
+ return g_strdup ("mlist");
else {
/* Let it crash for all unknown columns for now.
We need to load the messages into memory and search etc.

View File

@ -0,0 +1,30 @@
camel/providers/groupwise/ChangeLog (working copy)
2008-09-24 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #337479
* camel-groupwise-store.c: (groupwise_auth_loop):
Do not use uninitialized variables.
Index: camel/providers/groupwise/camel-groupwise-store.c
===================================================================
--- camel/providers/groupwise/camel-groupwise-store.c (revision 9597)
+++ camel/providers/groupwise/camel-groupwise-store.c (working copy)
@@ -180,7 +180,7 @@ groupwise_auth_loop (CamelService *servi
CamelGroupwiseStorePrivate *priv = groupwise_store->priv;
gboolean authenticated = FALSE;
char *uri;
- EGwConnectionErrors errors;
+ EGwConnectionErrors errors = {E_GW_CONNECTION_STATUS_INVALID_OBJECT, NULL};
if (priv->use_ssl && !g_str_equal (priv->use_ssl, "never"))
uri = g_strconcat ("https://", priv->server_name, ":", priv->port, "/soap", NULL);
@@ -222,7 +222,7 @@ groupwise_auth_loop (CamelService *servi
service->url->passwd = NULL;
camel_exception_clear (ex);
} else {
- camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, g_strdup (errors.description));
+ camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, errors.description ? errors.description : _("You must be working online to complete this operation"));
return FALSE;
}
} else

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Fri Oct 3 22:01:46 WST 2008 - mboman@suse.de
- Update to version 2.24.0:
+ Google Contacts Backend
+ WebDAV Contacts Backend
+ Sqlite based on-disk summary for Camel
+ Quota support for IMAP
+ bnc#418080: Match contains using %like%
+ bgo#551805: Honour return data type
+ bgo#552724: Remove a while space following trailing backslash.
+ bgo#552729: Adds support for x-camel-mlist & Answered flag to
search/vfolders.
+ Translation updates
- Remove evolution-data-server-updates.patch. Fixed upstream
- Remove evolution-data-server-db-fixes.patch. Fixed upstream
-------------------------------------------------------------------
Fri Oct 3 11:17:03 CEST 2008 - sragavan@suse.de
- Make sure that Evolution/friends use evoldap2-client
-------------------------------------------------------------------
Wed Sep 24 19:01:26 CEST 2008 - sbrabec@suse.cz
- Fixed GroupWise crash if network is down (bgo#337479).
-------------------------------------------------------------------
Wed Sep 17 11:20:37 CDT 2008 - maw@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package evolution-data-server (Version 2.23.92)
# spec file for package evolution-data-server (Version 2.24.0)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -34,7 +34,7 @@ BuildRequires: libgnome-devel
BuildRequires: libidl-devel
BuildRequires: libsoup-devel
BuildRequires: mozilla-nss-devel
BuildRequires: openldap2-devel
BuildRequires: evoldap2-devel
BuildRequires: perl-XML-Parser
BuildRequires: python-devel
BuildRequires: sgml-skel
@ -43,8 +43,8 @@ License: GPL v2 or later
Group: Development/Libraries/GNOME
AutoReqProv: on
Summary: Evolution Data Server
Version: 2.23.92
Release: 4
Version: 2.24.0
Release: 1
Source0: ftp://ftp.gnome.org/pub/gnome/sources/evolution-data-server/2.22/%{name}-%{version}.tar.bz2
Patch0: evolution-data-server-configure.patch
# PATCH-NEEDS-REBASE bnc-164367-gw-attachments-appts-throw-error.patch bnc164367 -- was PATCH-FIX-UPSTREAM, and may be droppable
@ -57,10 +57,8 @@ Patch4: bnc-304835-ex-crash-after-restart.patch
Patch5: bnc-307861-calendar-auth.diff
# PATCH-FIX-UPSTREAM bgo-530514-check-to-handle-specific-server-response.diff bgo530514 psankar@suse.de -- Fix is in upstream svn from 2.22.2
Patch9: bgo-530514-check-to-handle-specific-server-response.diff
# PATCH-FIX-UPSTREAM evolution-data-server-updates.patch maw@novell.com -- will go away when we update to 2.24.0.
Patch12: evolution-data-server-updates.patch
# PATCH-FIX-UPSTREAM evolution-data-server-db-fixes.patch maw@novell.com -- courtesy of sragavan@novell.com; should go away in 2.24.0
Patch13: evolution-data-server-db-fixes.patch
# PATCH-FIX-UPSTREAM evolution-data-server-gw-no-network.patch bgo337479 sbrabec@suse.cz -- GroupWise crashes if network is down
Patch14: evolution-data-server-gw-no-network.patch
# Change patch below if we move away from /opt/gnome
# PATCH-FIX-OPENSUSE libgnomeui-dep.patch -- It avoids a build dependency on libgnomeui to speed up bootstrap
Patch99: libgnomeui-dep.patch
@ -80,7 +78,7 @@ License: GPL v2 or later
Summary: Evolution Data Server Development Files
Group: Development/Libraries/GNOME
Requires: evolution-data-server = %{?epoch:}%{version}-%{release}
Requires: libgpg-error-devel libsoup-devel libbonobo-devel libgnome-devel gnome-vfs2-devel libxml2-devel orbit2-devel openldap2-devel libglade2-devel
Requires: libgpg-error-devel libsoup-devel libbonobo-devel libgnome-devel gnome-vfs2-devel libxml2-devel orbit2-devel evoldap2-devel libglade2-devel
Requires: gtk2-devel gconf2-devel glib2-devel gnome-keyring-devel gnome-certauth-devel
Requires: sqlite3-devel
%if %suse_version >= 930
@ -120,8 +118,7 @@ documentation.
###%patch4
###%patch5
%patch9
%patch12 -p1
%patch13 -p1
%patch14
%patch99
%build
@ -137,7 +134,7 @@ autoheader
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
%configure \
--libexecdir=%{_prefix}/lib/evolution-data-server \
--with-openldap \
--with-openldap=/usr/lib/evoldap \
--with-krb5=/usr \
--with-krb4=/usr \
--enable-gnome-keyring \
@ -183,38 +180,56 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/*
%changelog
* Wed Sep 17 2008 maw@suse.de
* Sat Oct 04 2008 mboman@suse.de
- Update to version 2.24.0:
+ Google Contacts Backend
+ WebDAV Contacts Backend
+ Sqlite based on-disk summary for Camel
+ Quota support for IMAP
+ bnc#418080: Match contains using %%like%
+ bgo#551805: Honour return data type
+ bgo#552724: Remove a while space following trailing backslash.
+ bgo#552729: Adds support for x-camel-mlist & Answered flag to
search/vfolders.
+ Translation updates
- Remove evolution-data-server-updates.patch. Fixed upstream
- Remove evolution-data-server-db-fixes.patch. Fixed upstream
* Fri Oct 03 2008 sragavan@suse.de
- Make sure that Evolution/friends use evoldap2-client
* Thu Sep 25 2008 sbrabec@suse.cz
- Fixed GroupWise crash if network is down (bgo#337479).
* Thu Sep 18 2008 maw@suse.de
- Add evolution-data-server-db-fixes.patch.
* Tue Sep 16 2008 maw@suse.de
* Wed Sep 17 2008 maw@suse.de
- Add evolution-data-server-updates.patch, which comprises the
diff between r9505 and r9557 in GNOME SVN
- Drop evolution-data-server-show-sexp.patch and
evolution-data-server-sql-percents.patch.
* Tue Sep 09 2008 maw@suse.de
* Wed Sep 10 2008 maw@suse.de
- Add evolution-data-server-sql-percents.patch (even more work on
bnc#418080).
* Tue Sep 09 2008 maw@suse.de
* Wed Sep 10 2008 maw@suse.de
- Build with evolution-data-server-show-sexp.patch.
* Mon Sep 08 2008 maw@suse.de
* Tue Sep 09 2008 maw@suse.de
- Update to version 2.23.92:
+ More work on bnc#418080, improvements in the sexp/sql machinery
+ Bugs fixed: bgo#547884, bgo#548343, and bgo#550412
+ Updated translations
- Drop evolution-data-server-sexp-to-sql-fixes.patch, which has
been upstreamed.
* Wed Sep 03 2008 maw@suse.de
* Thu Sep 04 2008 maw@suse.de
- Add evolution-data-server-sexp-to-sql-fixes.patch (more work
on bnc#418080).
* Tue Sep 02 2008 maw@suse.de
* Wed Sep 03 2008 maw@suse.de
- Update to version 2.23.91:
+ Bugs fixed: bgo#213072, bnc#391936, bnc#418080 (more work),
bgo#466754, bgo#518728, bgo#546926, bgo#548331, bgo#548565,
bgo#548865, and bgo#550072
+ Updated translations.
* Thu Aug 21 2008 maw@suse.de
* Fri Aug 22 2008 maw@suse.de
- Update to version 2.23.90.1:
+ Bugs fixed: bgo#548331 and possibly bnc#418080.
* Mon Aug 18 2008 maw@suse.de
* Tue Aug 19 2008 maw@suse.de
- Update to version 2.23.90:
+ Bugs fixed, bgo#207728, bgo#324203, bgo#327851, bgo#337503,
bgo#510949, bgo#510949, bgo#523103, bgo#531930, bgo#535745,
@ -222,7 +237,7 @@ rm -rf $RPM_BUILD_ROOT
bgo#546544, bgo#546613, bgo#547256, bgo#547308, bgo#547389,
bgo#547469, bgo#547786, bgo#547952, and bgo#548059
+ Updated translations.
* Tue Aug 05 2008 maw@suse.de
* Wed Aug 06 2008 maw@suse.de
- Update to version 2.23.6:
+ Camel DB Summary support; rewrite camel search by converting
sexp to sql (Srinivasa Ragavan)
@ -240,7 +255,7 @@ rm -rf $RPM_BUILD_ROOT
bgo#544825, bgo#544963, bgo#545022, bgo#545081, bgo#545082,
bgo#545099, bgo#545103, and bgo#545558
+ Updated translations.
* Fri Jun 20 2008 maw@suse.de
* Sat Jun 21 2008 maw@suse.de
- Update to version 2.23.4:
+ Configurable proxy settings
+ Quota support for IMAP
@ -279,12 +294,12 @@ rm -rf $RPM_BUILD_ROOT
* Mon Jun 02 2008 abharath@suse.de
- Added
+ bnc#394654 - bnc-394654-eds-crasher.patch: EDS crasher (Chenthill)
* Tue May 20 2008 msuman@suse.de
* Wed May 21 2008 msuman@suse.de
- Added
+ bgo-530514-check-to-handle-specific-server-response.diff (Sankar P)
+ bgo-530543-leak-while-syncing-mails-for-offline.diff (Sankar P)
+ bgo-531009-right-iterator-to-prevent-crash-in-offline-mail.diff (Sankar P)
* Tue May 13 2008 psankar@suse.de
* Wed May 14 2008 psankar@suse.de
- Removed: bnc-152070-eds-crash.patch
- Removed: eds-compiler-warning.patch
- Removed: evolution-data-server-abuild.patch
@ -318,9 +333,9 @@ rm -rf $RPM_BUILD_ROOT
[#530323]: Don't free the same variable twice (Sebastien Bacher)
Load addressbook conditionally (Srinivasa Ragavan)
-------------------------------------------------------------------
* Wed May 07 2008 schwab@suse.de
* Thu May 08 2008 schwab@suse.de
- Use autoreconf.
* Thu Apr 10 2008 maw@suse.de
* Fri Apr 11 2008 maw@suse.de
- Update to version 2.22.1:
+ Bugs fixed: bgo#524704, bgo#521015, bgo#520526, bgo#522433,
bgo#525485, bgo#523528, bgo#372383, bgo#522389, bgo#500389,
@ -339,14 +354,14 @@ rm -rf $RPM_BUILD_ROOT
added patch includes those changes as well.
* Wed Mar 26 2008 sbrabec@suse.cz
- Fixed GroupWise attachment crash on x86_64 (bgo#522389).
* Thu Mar 13 2008 maw@suse.de
* Fri Mar 14 2008 maw@suse.de
- Update to versoin 2.22.0:
+ Bugs fixed: bgo#327851, bgo#518728, and bgo#520362
+ Minor API doc updates
+ Updated translations.
* Wed Mar 12 2008 pchenthill@suse.de
- Updated the tags in the spec file.
* Tue Mar 04 2008 maw@suse.de
* Wed Mar 05 2008 maw@suse.de
- Update to version 2.21.92:
+ Bugs fixed: bnc#163982, bnc#164140, bgo#167638, bnc#183819,
bgo#445489, bgo#459468, bgo#469119, bgo#489043, bgo#489810,
@ -357,13 +372,13 @@ rm -rf $RPM_BUILD_ROOT
- Drop evolution-data-server-decl.patch, eds-warnings.patch,
bnc-164140-eds-crash-evolution--offline.patch, bnc-167638.patch,
and bnc-183819-evo-crashed-closing-offline.patch.
* Tue Feb 19 2008 maw@suse.de
* Wed Feb 20 2008 maw@suse.de
- Update to version 2.21.91:
+ Bugs fixed: bnc#211353, bnc#324804, bnc#395939, bnc#505806,
bnc#509776, bnc#510949, bnc#511208, bnc#513389, bnc#513646,
bnc#514407, bnc#514487, bnc#514555, bnc#514682, and bnc#515054
+ Updated translations.
* Thu Jan 31 2008 maw@suse.de
* Fri Feb 01 2008 maw@suse.de
- Update to version 2.21.90:
+ Speed up spam filtering and spam whitelist implementation
+ Bugs fixed: bgo#213072, bgo#213072, bgo#300098, bgo#324168,
@ -380,16 +395,16 @@ rm -rf $RPM_BUILD_ROOT
- Remove libtool archives and static libraries
- Remove evolution-password-dialogs.patch which is no longer
necessary.
* Wed Jan 16 2008 maw@suse.de
* Thu Jan 17 2008 maw@suse.de
- Add evolution-password-dialogs.patch (bgo #509644).
* Mon Jan 14 2008 maw@suse.de
* Tue Jan 15 2008 maw@suse.de
- Update to version 2.21.5:
+ Improved MIME header decoding
+ Bugs (bugzilla.gnome.org) fixed: #224026, #327965, #329692,
[#339813], #341579, #348149, #361972, #379896, #405497, #474118,
[#500233], #503400, #504837, #506457, and #508438.
+ Updated translations.
* Tue Dec 18 2007 maw@suse.de
* Wed Dec 19 2007 maw@suse.de
- Update to version 2.21.4:
+ The large version bump is due to evolution and related packages
synchronizing their version numbers with those of GNOME
@ -405,30 +420,30 @@ rm -rf $RPM_BUILD_ROOT
+ Updated translations
+ Protect against a NULL subject string
- Remove old patches, and refresh and renumber the remaining ones.
* Tue Dec 04 2007 maw@suse.de
* Wed Dec 05 2007 maw@suse.de
- Don't require openldap2 to build.
* Thu Oct 11 2007 sbrabec@suse.cz
* Fri Oct 12 2007 sbrabec@suse.cz
- Removed bogus dependency on mDNSResponder.
* Mon Sep 17 2007 maw@suse.de
* Tue Sep 18 2007 maw@suse.de
- Update to version 1.12.0:
+ Bugs (bugzilla.gnome.org) fixed: #348149, #402506, #426421,
[#469007], and #473880
+ Bug (bugzilla.novell.com) fixed: #275990
+ Updated timezone info
+ Updated translations.
* Fri Sep 14 2007 maw@suse.de
* Sat Sep 15 2007 maw@suse.de
- Fix bnc-307861-calendar-auth.diff.
* Fri Sep 14 2007 pchenthill@novell.com
- evolution-data-server-1.11.5-cert-auth-complete.patch: Updated the
patch to fix bug 307861.
- bnc-307861-calendar-auth.diff: Prompt for password for all providers
excluding the providers which support smart card.
* Mon Sep 10 2007 maw@suse.de
* Tue Sep 11 2007 maw@suse.de
- Update to version 1.11.92:
+ Bugs (bugzilla.gnoem.org) fixedL #271841, #290330, #298095,
[#298788], #301263, #302038, #330185, #378759, and #470445
+ Updated translations.
* Mon Sep 03 2007 vvaradhan@novell.com
* Tue Sep 04 2007 vvaradhan@novell.com
- Fixes (BNC)
[#304835] - Exchange crashes when restart
(Fix introduces a bug when user is running in smart-card
@ -436,7 +451,7 @@ rm -rf $RPM_BUILD_ROOT
Without this fix, exchange is un-usable for all users (including
smart-card and non-smart-card users). Fix is being worked out
for this regression.
* Wed Aug 29 2007 maw@suse.de
* Thu Aug 30 2007 maw@suse.de
- Update to version 1.11.91:
+ New debugging framework which can be controlled during runtime
with the CALDAV_DEBUG environment variable
@ -448,17 +463,17 @@ rm -rf $RPM_BUILD_ROOT
[#458670], #460999, #461989, #464252, and #465419
+ Updated translations
- Remove upstreamed abuild.patch.
* Fri Aug 17 2007 jberkman@novell.com
* Sat Aug 18 2007 jberkman@novell.com
- add auth support for smartcards (bug #273869)
* Mon Aug 06 2007 maw@suse.de
* Tue Aug 07 2007 maw@suse.de
- Split out a -lang subpackage
- Don't package INSTALL.
* Wed Aug 01 2007 maw@suse.de
* Thu Aug 02 2007 maw@suse.de
- Use %%fdupes.
* Wed Aug 01 2007 mauro@suse.de
- Update to version 1.11.6.1
- bugzilla.gnome.org bugs #380534, #457523.
* Fri Jul 20 2007 maw@suse.de
* Sat Jul 21 2007 maw@suse.de
- Update to version 1.11.5
- bugzilla.gnome.org bugs:
[#307410], #311098, #352284, #364731, #394572, #410823, #412735, #434356,
@ -477,38 +492,38 @@ rm -rf $RPM_BUILD_ROOT
* Fri Jun 22 2007 sbrabec@suse.cz
- Fixed IMAP UID format string vulnerability (#284828,
GNOME#447414, CVE-2007-3257).
* Wed May 23 2007 ro@suse.de
* Thu May 24 2007 ro@suse.de
- added ldconfig to post scripts
* Wed Apr 11 2007 maw@suse.de
* Thu Apr 12 2007 maw@suse.de
- Update to version 1.10.1
- Correct the URL listed in Source:
- Fixes for bugzilla.gnome.org #425512, #388788, and #362726
- Updated translations for the eu and gl locales.
* Fri Mar 30 2007 aj@suse.de
- Add bison to BuildRequires.
* Thu Mar 22 2007 maw@suse.de
* Fri Mar 23 2007 maw@suse.de
- Update to version 1.10.0
- Bug fixes, including bugzilla.gnome.org 413173, 400169,
and 356177
- Remove evolution-fix-function-declarations.patch and
implicit-declaration.diff
- Fix bnc-183819-evo-crashed-closing-offline.patch.
* Mon Mar 12 2007 maw@suse.de
* Tue Mar 13 2007 maw@suse.de
- Update to version 1.9.91
- Refresh serveral patches
- Bug fixes, including bugzilla.gnome.org #359979, #384183,
[#362638], #351930, #356828, #336453, #340039.
* Fri Dec 29 2006 sbrabec@suse.cz
* Sat Dec 30 2006 sbrabec@suse.cz
- Use better libexecdir path.
- File list cleanup.
- Splitted evolution-data-server-doc from
evolution-data-server-devel.
* Fri Dec 29 2006 james@usr-local-bin.org
- Re-enable custom configure options.
* Wed Dec 13 2006 maw@suse.de
* Thu Dec 14 2006 maw@suse.de
- Move to /usr
- Do some specfile cleanup.
* Tue Nov 21 2006 sbrabec@suse.cz
* Wed Nov 22 2006 sbrabec@suse.cz
- Do not explicitly require mDNSResponder-lib blocking avahi compat
package.
* Mon Nov 20 2006 vvaradhan@novell.com
@ -522,14 +537,14 @@ rm -rf $RPM_BUILD_ROOT
- Removed upstreamed bgo-369168-buffer-overrun.patch
* Mon Nov 06 2006 kharish@novell.com
- Fix for (bnc) Bug 217142. Patch submitted by Hans Petter Jansson.
* Fri Oct 27 2006 vvaradhan@novell.com
* Sat Oct 28 2006 vvaradhan@novell.com
- Fixes (bnc)
Bug 208519 - evolution groupwise crashes on start
- Commented "bnc-164323-random-mark-unread.patch" (patch46)
as it is a "to-be" reverted patch.
* Wed Oct 18 2006 schwab@suse.de
- Fix missing declaration.
* Mon Oct 02 2006 jhargadon@suse.de
* Tue Oct 03 2006 jhargadon@suse.de
- update to version 1.8.1
- translation updates
- Bug fixes:
@ -538,11 +553,11 @@ rm -rf $RPM_BUILD_ROOT
- Do not require libgnomeui-devel for building.
* Tue Sep 12 2006 ro@suse.de
- fix two cases of missing return values (retval.patch)
* Mon Sep 04 2006 aj@suse.de
* Tue Sep 05 2006 aj@suse.de
- update to 1.8.0:
* updated translation
* bugfixes
* Fri Aug 18 2006 jhargadon@suse.de
* Sat Aug 19 2006 jhargadon@suse.de
- update to version 1.7.91
- Add filters to Groupwise SOAP calls so that each component
fetches items of its own type and none other
@ -558,7 +573,7 @@ rm -rf $RPM_BUILD_ROOT
* Thu Jul 20 2006 kharish@novell.com
- Patch to add alarms to GW meetings by default based on customer
preference. Fixes bnc 167330.
* Tue Jul 18 2006 kharish@novell.com
* Wed Jul 19 2006 kharish@novell.com
- Patch to correctly handle calendar attachment filenames that do
not require special characters handling. They were being parsed
incorrectly and ignored by clients.
@ -584,7 +599,7 @@ rm -rf $RPM_BUILD_ROOT
Fixes bnc #168013, #179622
* Fri Jun 09 2006 sdevashish@novell.com
- Added bnc-170052-eds-crash.patch.
* Thu Jun 08 2006 fejj@suse.de
* Fri Jun 09 2006 fejj@suse.de
- Added bnc-179350.patch which fixes a critical deadlock bug in the
GroupWise provider.
* Thu Jun 08 2006 sragavan@novell.com
@ -592,7 +607,7 @@ rm -rf $RPM_BUILD_ROOT
- Committed patch for bug 181906, which solves a exchange crash.
* Fri Jun 02 2006 sragavan@novell.com
- Updated German Translations.
* Wed May 31 2006 fejj@suse.de
* Thu Jun 01 2006 fejj@suse.de
- Added bnc-176277-2.patch which fixes a deadlock condition
* Mon May 29 2006 vvaradhan@novell.com
- Fixes (bnc)
@ -604,15 +619,15 @@ rm -rf $RPM_BUILD_ROOT
176615 - Added a new camel stream vfs for saving to remote shares.
* Tue May 23 2006 sragavan@novell.com
- Updated translations (Srini)
* Mon May 22 2006 fejj@suse.de
* Tue May 23 2006 fejj@suse.de
- Added bnc-177394.patch to fix a crasher when an IMAP server replies
that the size of a literal is negative.
* Fri May 19 2006 fejj@suse.de
* Sat May 20 2006 fejj@suse.de
- Added imap-locking.patch which fixes bug #171502 and bug #176277
which are both deadlock conditions in the imap code.
* Thu May 18 2006 sragavan@novell.com
- gw-trash-fix.diff: Show trash folder contents to user. (Sankar)
* Tue May 16 2006 fejj@suse.de
* Wed May 17 2006 fejj@suse.de
- Added bnc-173454.patch: Fixes double-base64 encoding of non-7bit MIME
part data.
* Thu May 11 2006 sragavan@novell.com
@ -623,14 +638,14 @@ rm -rf $RPM_BUILD_ROOT
- Fixes (bnc)
169034 - Fixed the failure to download exchange public folder.
- Removed gw-force-use-imap.patch as it was decided to default to soap.
* Tue May 02 2006 fejj@suse.de
* Wed May 03 2006 fejj@suse.de
- Added bnc-167638.patch: Fixes long shutdown times due to the imap/gw providers trying to sync data at exit time.
* Mon May 01 2006 fejj@suse.de
* Tue May 02 2006 fejj@suse.de
- Added bgo-315976-INBOX-not-shown-when-override-namespace.patch
* Tue Apr 25 2006 sragavan@novell.com
* Wed Apr 26 2006 sragavan@novell.com
- Fixes (bnc)
169228 - Retract GNOME Keyring Integration from the build (Srini)
* Mon Apr 24 2006 fejj@suse.de
* Tue Apr 25 2006 fejj@suse.de
- bgo-321797: Fix SSL/TLS options to not be able to fallback to
cleartext connections on failure to connect via encrypted channels.
* Mon Apr 24 2006 sragavan@novell.com
@ -658,7 +673,7 @@ rm -rf $RPM_BUILD_ROOT
- Fixes (bnc)
1643232 - Randomly marking read messages as unread - Sankar
- Fix to make groupwise use IMAP as default for mails (Harish)
* Sun Apr 16 2006 vvaradhan@novell.com
* Mon Apr 17 2006 vvaradhan@novell.com
- Fixes (bnc)
152070 evolution-data-server-1.6 crash - Devashish
160915 Evolution crashed when clicked on 'Goto' date in
@ -691,11 +706,11 @@ rm -rf $RPM_BUILD_ROOT
160889 Evolution shows summary folders in tree
* Tue Mar 28 2006 ro@suse.de
- replace mDNSResponder by mDNSResponder-devel in BuildReq
* Mon Mar 27 2006 vvaradhan@novell.com
* Tue Mar 28 2006 vvaradhan@novell.com
- Fixes (bnc)
160147 Can't delete calendar accounts once they are created
158107 No notification of cancelled meetings
* Mon Mar 27 2006 vvaradhan@novell.com
* Tue Mar 28 2006 vvaradhan@novell.com
- Fixes (bgo)
334416 Evolution crashed while traversing mails
(crash-while-browsing-through-mails.patch)
@ -717,13 +732,13 @@ rm -rf $RPM_BUILD_ROOT
152062 Evolution won't show an attachment
158093 Evolution: Groupwise "Sent Items" folder should have a
"To:" column instead of a "From:" column
* Wed Mar 15 2006 vvaradhan@novell.com
* Thu Mar 16 2006 vvaradhan@novell.com
- Fixes (bnc)
157323 Messages deleted from Groupwise folder remain in Evo.
156559 Evolution won't show me 827 messages
153522 Evolution doesn't update message status if two clients
are running against the same account
* Mon Mar 13 2006 vvaradhan@novell.com
* Tue Mar 14 2006 vvaradhan@novell.com
- Fixes (bnc)
137357 Configur groupwise account 'You must be working in
online ...' message displayed
@ -749,7 +764,7 @@ rm -rf $RPM_BUILD_ROOT
- Fixes #155362 - No symbol table information in the generated
debuginfo packages.
Remove '-g0' from CFLAGS in evolution-data-server.spec
* Mon Feb 27 2006 vvaradhan@novell.com
* Tue Feb 28 2006 vvaradhan@novell.com
- Update to version 1.5.92
- Fixes: (in bgo)
327413: Crash when evolution shuts down
@ -773,158 +788,158 @@ rm -rf $RPM_BUILD_ROOT
- Update to version 1.5.90
* Tue Jan 31 2006 ro@suse.de
- reduced BuildRequires
* Wed Jan 25 2006 mls@suse.de
* Thu Jan 26 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Mon Dec 12 2005 sbrabec@suse.cz
- Fixed devel dependencies for older products.
* Tue Dec 06 2005 sbrabec@suse.cz
* Wed Dec 07 2005 sbrabec@suse.cz
- Degrade to version 1.4.1.1.
http://bugzilla.gnome.org/show_bug.cgi?id=323106
- Fixed devel dependencies.
* Thu Dec 01 2005 gekker@suse.de
* Fri Dec 02 2005 gekker@suse.de
- Update to version 1.4.2.1
* Wed Nov 02 2005 dmueller@suse.de
* Thu Nov 03 2005 dmueller@suse.de
- don't build as root
* Thu Oct 13 2005 gekker@suse.de
* Fri Oct 14 2005 gekker@suse.de
- Update to version 1.4.1
- Fix more warnings
* Sun Sep 25 2005 ro@suse.de
* Mon Sep 26 2005 ro@suse.de
- added LDAP_DEPRECATED to CFLAGS
* Fri Sep 09 2005 aj@suse.de
* Sat Sep 10 2005 aj@suse.de
- Change last patch.
* Wed Sep 07 2005 schwab@suse.de
- Fix missing declarations.
* Mon Sep 05 2005 rodrigo@suse.de
- Update to version 1.4.0
- Removed upstreamed patches
* Wed Aug 24 2005 gekker@suse.de
* Thu Aug 25 2005 gekker@suse.de
- Update to version 1.3.8
- Fix brokeness inlibical
* Sat Aug 13 2005 aj@suse.de
- Add lzo and lzo-devel to nfb.
* Thu Aug 11 2005 gekker@suse.de
* Fri Aug 12 2005 gekker@suse.de
- Update to version 1.3.7
* Mon Aug 01 2005 gekker@suse.de
* Tue Aug 02 2005 gekker@suse.de
- Update to version 1.3.6.1
* Fri Jul 29 2005 sbrabec@suse.cz
- Require mozilla-nss (#98002).
* Tue Jul 26 2005 ro@suse.de
* Wed Jul 27 2005 ro@suse.de
- fix typo in specfile
* Mon Jul 25 2005 gekker@suse.de
* Tue Jul 26 2005 gekker@suse.de
- Update to version 1.3.5
* Thu Jul 14 2005 schwab@suse.de
- Fix missing declarations again.
* Fri Jul 01 2005 gekker@suse.de
* Sat Jul 02 2005 gekker@suse.de
- Update to version 1.3.3
- Remove upstreamed patches
- Fix compiler warnings
* Tue Jun 21 2005 schwab@suse.de
- Fix missing declarations.
* Fri Jun 10 2005 sbrabec@suse.cz
* Sat Jun 11 2005 sbrabec@suse.cz
- Build with system nspr and nss libraries.
- Build with Kerberos 5 support.
- Build documentation.
* Fri Jun 10 2005 sbrabec@suse.cz
- Build with mozilla-nss.
* Wed Jun 01 2005 sbrabec@suse.cz
* Thu Jun 02 2005 sbrabec@suse.cz
- Fixed devel requirements.
* Wed May 18 2005 ro@suse.de
* Thu May 19 2005 ro@suse.de
- fix build with current pkgconfig
* Fri Apr 29 2005 sbrabec@suse.cz
- Yet another mail crasher fix (#66996).
http://bugzilla.gnome.org/show_bug.cgi?id=273945
* Thu Apr 14 2005 sbrabec@suse.cz
- Fixed serious GCC 4 warnings.
* Sat Mar 19 2005 clahey@suse.de
* Sun Mar 20 2005 clahey@suse.de
- Fixes 72916.
* Fri Mar 18 2005 gekker@suse.de
* Sat Mar 19 2005 gekker@suse.de
- Fix x-evolution-header (x73401).
* Wed Mar 16 2005 gekker@suse.de
- Update to version 1.2.1
- Add 64bit-warn.patch
* Tue Mar 08 2005 gekker@suse.de
* Wed Mar 09 2005 gekker@suse.de
- Update to version 1.2.0 (GNOME 2.10)
- remove upstreamed dest.patch
* Wed Mar 02 2005 gekker@suse.de
* Thu Mar 03 2005 gekker@suse.de
- add dest.patch
* Wed Mar 02 2005 gekker@suse.de
* Thu Mar 03 2005 gekker@suse.de
- update to version 1.1.6
* Sun Feb 27 2005 ro@suse.de
* Mon Feb 28 2005 ro@suse.de
- fix build on lib64
* Fri Feb 25 2005 gekker@suse.de
* Sat Feb 26 2005 gekker@suse.de
- fix libexecdir, so that e-d-s will actually get launched
- enable ssl support now that camel has been moved to e-d-s
* Wed Feb 09 2005 gekker@suse.de
* Thu Feb 10 2005 gekker@suse.de
- Update to version 1.1.5
- Remove upstreamed patch.
* Sat Feb 05 2005 gekker@suse.de
* Sun Feb 06 2005 gekker@suse.de
- Update to version 1.1.4.2
- Remove upsteamed patches, including security fix mentioned below.
* Mon Jan 24 2005 sbrabec@suse.cz
* Tue Jan 25 2005 sbrabec@suse.cz
- Fixed integer overflow (arbitrary code execution with elevated
privileges) in lock helper (CAN-2005-0102, #50116).
* Mon Jan 24 2005 meissner@suse.de
- Fixed some gcc 4 warnings/error that show code problems.
* Fri Jan 14 2005 clahey@suse.de
* Sat Jan 15 2005 clahey@suse.de
- Update to version 1.1.3.
* Thu Jan 06 2005 gekker@suse.de
* Fri Jan 07 2005 gekker@suse.de
- Update to version 1.1.2
* Tue Dec 07 2004 gekker@suse.de
* Wed Dec 08 2004 gekker@suse.de
- Update to version 1.0.3 (Ximian 70057)
* Tue Nov 30 2004 ro@suse.de
- re-diffed libdb.patch
* Mon Nov 29 2004 gekker@suse.de
* Tue Nov 30 2004 gekker@suse.de
- Update to version 1.0.2
- Removed patches included in this update
* Fri Nov 12 2004 sbrabec@suse.cz
* Sat Nov 13 2004 sbrabec@suse.cz
- Fixed libdb on x86_64 (broken local contacts in Evolution, #46845).
http://bugzilla.ximian.com/show_bug.cgi?id=67600
* Tue Nov 02 2004 ro@suse.de
* Wed Nov 03 2004 ro@suse.de
- locale rename: no -> nb
* Thu Sep 30 2004 dobey@suse.de
* Fri Oct 01 2004 dobey@suse.de
- Add patch to fix bug 66368 in bugzilla.ximian.com
* Wed Sep 29 2004 dobey@suse.de
* Thu Sep 30 2004 dobey@suse.de
- Add patch to fix bug 66230 in bugzilla.ximian.com
* Fri Sep 24 2004 dobey@suse.de
* Sat Sep 25 2004 dobey@suse.de
- Updated to version 1.0.1
- Removed evolution-data-server-0.0.99.dif which is in upstream source
* Thu Sep 16 2004 ro@suse.de
* Fri Sep 17 2004 ro@suse.de
- readd evolution-data-server-0.0.99.dif to fix parallel build
* Mon Sep 13 2004 dobey@suse.de
* Tue Sep 14 2004 dobey@suse.de
- Updated to version 1.0.0
- Removed evolution-data-server-0.0.99.dif which was not changelogged,
and seems to not actually change anything
* Sat Sep 04 2004 coolo@suse.de
- use %%jobs (OOo is waiting on it)
* Fri Aug 27 2004 dobey@suse.de
* Sat Aug 28 2004 dobey@suse.de
- Update to version 0.0.99
* Wed Aug 18 2004 dobey@suse.de
* Thu Aug 19 2004 dobey@suse.de
- Fix LDAP support and remove unused configure options
* Fri Aug 13 2004 dobey@suse.de
* Sat Aug 14 2004 dobey@suse.de
- Update to version 0.0.98
- Add dependencies to the evolution-data-server-devel package
* Thu Aug 05 2004 dobey@suse.de
* Fri Aug 06 2004 dobey@suse.de
- Add build deps for gnutls libs from libsoup
* Tue Aug 03 2004 dobey@suse.de
* Wed Aug 04 2004 dobey@suse.de
- Don't run any autotools when building with no patches
* Tue Aug 03 2004 dobey@suse.de
* Wed Aug 04 2004 dobey@suse.de
- Patch is in tarball for gnome_segv2 now
- Updated to version 0.0.97
* Thu Jul 29 2004 dobey@suse.de
* Fri Jul 30 2004 dobey@suse.de
- Add patch from CVS to detect path to gnome_segv2 better
* Wed Jul 28 2004 dobey@suse.de
* Thu Jul 29 2004 dobey@suse.de
- Updated to version 0.0.96
* Tue Jul 13 2004 clahey@suse.de
* Wed Jul 14 2004 clahey@suse.de
- Updated to version 0.0.95.
* Mon Jun 21 2004 clahey@suse.de
* Tue Jun 22 2004 clahey@suse.de
- Updated to version 0.0.94.1.
* Thu Jun 03 2004 mibarra@suse.de
* Fri Jun 04 2004 mibarra@suse.de
- Updated to version 0.0.94.
* Mon May 24 2004 ro@suse.de
* Tue May 25 2004 ro@suse.de
- fix lib64 issue
* Fri May 21 2004 mibarra@suse.de
* Sat May 22 2004 mibarra@suse.de
- Updated to 0.0.93.
* Tue May 18 2004 clahey@suse.de
* Wed May 19 2004 clahey@suse.de
- Don't install to /opt/gnome/libexec
* Mon May 17 2004 clahey@suse.de
* Tue May 18 2004 clahey@suse.de
- Initial import of evolution-data-server.