platform/upstream/evolution-data-server.git
12 years agoEDS: memory leak fixes
Patrick Ohly [Wed, 7 Mar 2012 16:07:33 +0000 (16:07 +0000)]
EDS: memory leak fixes

All of these leaks were found with valgrind when testing
in combination with SyncEvolution. The fixed code passes
the same tests without issues (in particular no double frees).

The only non-obvious leak is the one of "muid" after
e_gdbus_cal_call_create_object_sync() apparently a string
is returned even if the call itself fails.

12 years ago[l10n] Updated German translation
Mario Blättermann [Wed, 7 Mar 2012 21:33:26 +0000 (22:33 +0100)]
[l10n] Updated German translation

12 years agoUpdate store<=>folder summaries connection on folder rename
Milan Crha [Wed, 7 Mar 2012 19:17:33 +0000 (20:17 +0100)]
Update store<=>folder summaries connection on folder rename

12 years agoBug #664186 - Maildir scan checks incorrectly for folder name prefix
Milan Crha [Wed, 7 Mar 2012 18:30:54 +0000 (19:30 +0100)]
Bug #664186 - Maildir scan checks incorrectly for folder name prefix

12 years agoCamelIMAPXServer: Avoid crashing in cancel_all_jobs().
Matthew Barnes [Wed, 7 Mar 2012 18:23:50 +0000 (13:23 -0500)]
CamelIMAPXServer: Avoid crashing in cancel_all_jobs().

This is a workaround.  I don't know why some CamelIMAPXCommands are bad.

12 years agocamel-local-provider.c: Remove superfluous conf entries.
Matthew Barnes [Wed, 7 Mar 2012 16:42:10 +0000 (11:42 -0500)]
camel-local-provider.c: Remove superfluous conf entries.

12 years agoFix compiler format warnings in IMAPX code
Milan Crha [Wed, 7 Mar 2012 10:17:50 +0000 (11:17 +0100)]
Fix compiler format warnings in IMAPX code

12 years agoBug #671470 - Mail search on body doesn't work (local mail)
Milan Crha [Wed, 7 Mar 2012 10:07:18 +0000 (11:07 +0100)]
Bug #671470 - Mail search on body doesn't work (local mail)

This contains also an interim "solution", till body indexing for
maildir folders is properly fixed.

12 years agoTry to RC2047-decode address-only string when parsing email addresses
Milan Crha [Wed, 7 Mar 2012 07:28:31 +0000 (08:28 +0100)]
Try to RC2047-decode address-only string when parsing email addresses

This is for cases when email address consists only of an encoded string,
with no SMTP part. That way the encoded string was treated as email address
and is never decoded, which was shown in the UI.

12 years agoSuppress deprecation warnings.
Matthew Barnes [Tue, 6 Mar 2012 15:10:19 +0000 (10:10 -0500)]
Suppress deprecation warnings.

Suppress deprecated declaration warnings, particularly from GTK+, until
we're ready to care again.  Once we require GTK+ 3.4 we can start using
the new deprecation min/max macros.

12 years agoAssamese translation completed
Nilamdyuti Goswami [Tue, 6 Mar 2012 07:58:28 +0000 (13:28 +0530)]
Assamese translation completed

12 years agoAssamese translation completed
Nilamdyuti Goswami [Tue, 6 Mar 2012 07:53:17 +0000 (13:23 +0530)]
Assamese translation completed

12 years agoPost-release version bump.
Matthew Barnes [Mon, 5 Mar 2012 22:08:14 +0000 (17:08 -0500)]
Post-release version bump.

12 years agoNEWS update for 3.3.91 release.
Matthew Barnes [Mon, 5 Mar 2012 15:08:23 +0000 (10:08 -0500)]
NEWS update for 3.3.91 release.

12 years agoRevert "ECalBackendCalDAV: Fix a "pointer-sign" compiler warning."
Matthew Barnes [Mon, 5 Mar 2012 14:22:42 +0000 (09:22 -0500)]
Revert "ECalBackendCalDAV: Fix a "pointer-sign" compiler warning."

This reverts commit 34038e9275f476c4e79405937f8a6e7533e92434.

icalattach_new_from_data() changed its function signature some time
between 0.44 and 0.48.  Apparently I was using the older version.

12 years agoEContact: fix "parse vcard + update contact + commit"
Patrick Ohly [Mon, 5 Mar 2012 07:19:41 +0000 (08:19 +0100)]
EContact: fix "parse vcard + update contact + commit"

The commit which introduced vCard 2.1 encoding support (cca25e)
removed the "evc->priv->attributes" check. Without that check
the encoder will always return a cached vCard, even if the
EContact was modified in the meantime.

Found when updating of a contact with SyncEvolution's --update
operation failed because the UID set after parsing the vCard was
ignored and thus committing the update wasn't possible. Might also
break quite a lot of other functionality!

Fixed by addding the "evc->priv->attributes" in both cases (vCard 2.1
and 3.0).

12 years agoUpdated Slovenian translation
Martin Srebotnjak [Sun, 4 Mar 2012 20:51:48 +0000 (21:51 +0100)]
Updated Slovenian translation

12 years agoUpdated Korean translation
Changwoo Ryu [Sun, 4 Mar 2012 09:01:29 +0000 (18:01 +0900)]
Updated Korean translation

12 years agoECalBackendCalDAV: Fix a "pointer-sign" compiler warning.
Matthew Barnes [Sat, 3 Mar 2012 16:34:13 +0000 (11:34 -0500)]
ECalBackendCalDAV: Fix a "pointer-sign" compiler warning.

12 years agoEBookBackendFile: Fix a warning caused by Berkeley DB v5.
Matthew Barnes [Sat, 3 Mar 2012 16:30:27 +0000 (11:30 -0500)]
EBookBackendFile: Fix a warning caused by Berkeley DB v5.

Our preprocessor macro was only checking for:

   #if DB_VERSION_MAJOR == 4 && DB_VERSION_MAJOR > 3
       /* use new function signature */
   #else
       /* use old function signature */
   #endif

12 years agoCamelVeeFolder: Silence a compiler warning.
Matthew Barnes [Sat, 3 Mar 2012 16:25:13 +0000 (11:25 -0500)]
CamelVeeFolder: Silence a compiler warning.

I think it was just a false positive, but better safe than sorry.

12 years agoUpdated Basque language
Inaki Larranaga Murgoitio [Sat, 3 Mar 2012 10:46:39 +0000 (11:46 +0100)]
Updated Basque language

12 years agoProvide at least some NSPR error text, rather than cryptic error code
Milan Crha [Fri, 2 Mar 2012 11:19:23 +0000 (12:19 +0100)]
Provide at least some NSPR error text, rather than cryptic error code

12 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Fri, 2 Mar 2012 09:11:40 +0000 (12:11 +0300)]
Updated Belarusian translation.

12 years agoBug #658742 - Gettext messages require translator comments
Milan Crha [Fri, 2 Mar 2012 08:53:10 +0000 (09:53 +0100)]
Bug #658742 - Gettext messages require translator comments

12 years agoUpdated Slovenian translation
Matej Urbančič [Thu, 1 Mar 2012 20:43:43 +0000 (21:43 +0100)]
Updated Slovenian translation

12 years agoUpdated Vietnamese translation
Nguyễn Thái Ngọc Duy [Thu, 1 Mar 2012 07:16:33 +0000 (14:16 +0700)]
Updated Vietnamese translation

12 years agoUpdated Brazilian Portuguese translation
Jonh Wendell [Wed, 29 Feb 2012 19:24:01 +0000 (16:24 -0300)]
Updated Brazilian Portuguese translation

12 years agoBug 670938: e_cal_client_generate_instances_for_object() returns invalid instances
Christophe Dumez [Tue, 28 Feb 2012 07:40:36 +0000 (09:40 +0200)]
Bug 670938: e_cal_client_generate_instances_for_object() returns invalid instances

Make sure the DTSTART / DTEND is properly set for the instances returned
by e_cal_client_generate_instances_for_object().

12 years agoUpdated Russian translation
Yuri Myasoedov [Tue, 28 Feb 2012 11:47:54 +0000 (15:47 +0400)]
Updated Russian translation

12 years agoBug 670887: e_cal_client_generate_instances_for_object returns instances in reverse...
Christophe Dumez [Mon, 27 Feb 2012 14:05:34 +0000 (16:05 +0200)]
Bug 670887: e_cal_client_generate_instances_for_object returns instances in reverse order

12 years agoFix nasty typos from recent whitespace cleanup commit
Milan Crha [Mon, 27 Feb 2012 18:59:35 +0000 (19:59 +0100)]
Fix nasty typos from recent whitespace cleanup commit

12 years agoUpdate Czech translation
Petr Kovar [Mon, 27 Feb 2012 15:04:58 +0000 (16:04 +0100)]
Update Czech translation

12 years agoBug #663224 - Deleted message not deleted on other machine
Milan Crha [Mon, 27 Feb 2012 14:48:53 +0000 (15:48 +0100)]
Bug #663224 - Deleted message not deleted on other machine

12 years agoUpdated Uyghur translation
Gheyret Kenji [Sun, 26 Feb 2012 02:08:28 +0000 (11:08 +0900)]
Updated Uyghur translation

12 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Sat, 25 Feb 2012 19:45:07 +0000 (22:45 +0300)]
Updated Belarusian translation.

12 years agoCamelSession: Add a default method for get_socks_proxy().
Matthew Barnes [Sat, 25 Feb 2012 17:56:29 +0000 (12:56 -0500)]
CamelSession: Add a default method for get_socks_proxy().

Does nothing but fill the "out" arguments with (NULL, 0).

12 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Sat, 25 Feb 2012 02:31:05 +0000 (10:31 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

12 years agoInitialize EGdbusTemplates main thread in book/calendar factories
Milan Crha [Thu, 23 Feb 2012 12:41:48 +0000 (13:41 +0100)]
Initialize EGdbusTemplates main thread in book/calendar factories

This is needed for 'contacts' calendar backend, to not call main
context iteration when it is run in a dedicated thread, but call
it in both factories, just in case.

12 years agoBug #610988 - Filter can't set labels on IMAP messages
Milan Crha [Tue, 21 Feb 2012 14:26:01 +0000 (15:26 +0100)]
Bug #610988 - Filter can't set labels on IMAP messages

12 years agoBug #668639 - Sexps on VEVENT / VJOURNAL statuses are not supported
Christophe Dumez [Wed, 25 Jan 2012 07:23:13 +0000 (09:23 +0200)]
Bug #668639 - Sexps on VEVENT / VJOURNAL statuses are not supported

Sexps such as (contains? "status" "CONFIRMED") did not work before
this fix.

12 years agoManual Refresh on a CalDAV calendar does not work
Milan Crha [Mon, 20 Feb 2012 18:04:11 +0000 (19:04 +0100)]
Manual Refresh on a CalDAV calendar does not work

Found as part of bug #661265

12 years agoCoding style and whitespace cleanup.
Matthew Barnes [Wed, 7 Sep 2011 13:52:25 +0000 (09:52 -0400)]
Coding style and whitespace cleanup.

12 years agoAdd untracked ".valid" files to CLEANFILES.
Matthew Barnes [Mon, 20 Feb 2012 14:18:51 +0000 (09:18 -0500)]
Add untracked ".valid" files to CLEANFILES.

12 years agoUpdate API documentation.
Matthew Barnes [Mon, 20 Feb 2012 14:16:42 +0000 (09:16 -0500)]
Update API documentation.

12 years agopost release version bump
Chenthill Palanisamy [Mon, 20 Feb 2012 10:26:02 +0000 (15:56 +0530)]
post release version bump

12 years agoNews update for 3.3.90 release
Chenthill Palanisamy [Mon, 20 Feb 2012 09:47:53 +0000 (15:17 +0530)]
News update for 3.3.90 release

12 years agoUpdated Serbian translation
Мирослав Николић [Mon, 20 Feb 2012 09:49:30 +0000 (10:49 +0100)]
Updated Serbian translation

12 years agoUpdated Bulgarian translation
Krasimir Chonov [Mon, 20 Feb 2012 05:21:59 +0000 (07:21 +0200)]
Updated Bulgarian translation

12 years agoUpdated Galician translations
Fran Diéguez [Sun, 19 Feb 2012 22:18:14 +0000 (23:18 +0100)]
Updated Galician translations

12 years agoUpdated Swedish translation
Daniel Nylander [Sun, 19 Feb 2012 20:11:59 +0000 (21:11 +0100)]
Updated Swedish translation

12 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Sun, 19 Feb 2012 14:14:03 +0000 (15:14 +0100)]
Updated Norwegian bokmål translation

12 years agoUpdated Lithuanian translation
Aurimas Černius [Sat, 18 Feb 2012 22:18:11 +0000 (00:18 +0200)]
Updated Lithuanian translation

12 years agoUpdated Spanish translation
Daniel Mustieles [Fri, 17 Feb 2012 16:16:52 +0000 (17:16 +0100)]
Updated Spanish translation

12 years agoUse GSettings for EProxy
Milan Crha [Fri, 17 Feb 2012 15:26:45 +0000 (16:26 +0100)]
Use GSettings for EProxy

12 years agoBug #662920 - Creates MH folders, but needs restart to update folder list
Milan Crha [Thu, 16 Feb 2012 18:23:39 +0000 (19:23 +0100)]
Bug #662920 - Creates MH folders, but needs restart to update folder list

12 years agoUpdated Spanish translation
Daniel Mustieles [Thu, 16 Feb 2012 16:28:24 +0000 (17:28 +0100)]
Updated Spanish translation

12 years agoBug #658348 - Harmonize wording for "Check new messages in INBOX"
Milan Crha [Thu, 16 Feb 2012 09:27:22 +0000 (10:27 +0100)]
Bug #658348 - Harmonize wording for "Check new messages in INBOX"

12 years agoBug #658347 - Harmonize mnemonic for "Check new messages for Junk contents"
Milan Crha [Thu, 16 Feb 2012 09:23:06 +0000 (10:23 +0100)]
Bug #658347 - Harmonize mnemonic for "Check new messages for Junk contents"

12 years agoBug #637200 - Add mnemonics to Folder Properties dialog checkboxes
Milan Crha [Wed, 15 Feb 2012 18:34:56 +0000 (19:34 +0100)]
Bug #637200 - Add mnemonics to Folder Properties dialog checkboxes

12 years agoRevert one change from the previous commit, it emitted incorrect warnings
Milan Crha [Tue, 14 Feb 2012 12:10:34 +0000 (13:10 +0100)]
Revert one change from the previous commit, it emitted incorrect warnings

12 years agoFix issues found by Coverity Scan
Milan Crha [Tue, 14 Feb 2012 09:32:05 +0000 (10:32 +0100)]
Fix issues found by Coverity Scan

12 years agoUpdated Russian translation
Yuri Myasoedov [Tue, 14 Feb 2012 06:37:50 +0000 (10:37 +0400)]
Updated Russian translation

12 years agoUpdated Serbian translation
Мирослав Николић [Sun, 12 Feb 2012 15:43:45 +0000 (16:43 +0100)]
Updated Serbian translation

12 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Sat, 11 Feb 2012 20:03:55 +0000 (23:03 +0300)]
Updated Belarusian translation.

12 years agoUpdated Serbian translation
Мирослав Николић [Sat, 11 Feb 2012 09:51:29 +0000 (10:51 +0100)]
Updated Serbian translation

12 years agoUpdated Spanish translation
Daniel Mustieles [Fri, 10 Feb 2012 13:57:03 +0000 (14:57 +0100)]
Updated Spanish translation

12 years agoBug #669341 - Plural forms in imapx
Milan Crha [Thu, 9 Feb 2012 16:36:43 +0000 (17:36 +0100)]
Bug #669341 - Plural forms in imapx

12 years agoCrash on message send, under check_header_in_message_info()
Milan Crha [Wed, 8 Feb 2012 08:24:02 +0000 (09:24 +0100)]
Crash on message send, under check_header_in_message_info()

12 years agoBug #391472 - Add ability to match headers by words
Milan Crha [Tue, 7 Feb 2012 17:41:12 +0000 (18:41 +0100)]
Bug #391472 - Add ability to match headers by words

12 years agoUpdated Spanish translation
Daniel Mustieles [Tue, 7 Feb 2012 16:57:52 +0000 (17:57 +0100)]
Updated Spanish translation

12 years agoBug 669847 - Fix up online notification (part 2)
Alexander Larsson [Tue, 7 Feb 2012 15:28:56 +0000 (09:28 -0600)]
Bug 669847 - Fix up online notification (part 2)

Use GNetworkMonitor (in GLib 2.31) for offline detection if available.

12 years agoBug 669487 - Fix up online notification (part 1)
Alexander Larsson [Tue, 7 Feb 2012 15:21:01 +0000 (09:21 -0600)]
Bug 669487 - Fix up online notification (part 1)

Make E-D-S listen to the "start-offline" GSettings key (not GConf),
since Evolution no longer sets the GConf key.

Unfortunately we can't rely on the schema from Evolution, so we install
our own minimal schema that refers to the same DConf path as the
Evolution one.  This allows us to share state with no dependency issues.

This is a temporary solution for 3.4 only, to be removed in 3.5.

12 years agoBug #535978 - Filtering on IMAP accounts causes message to be downloaded
Milan Crha [Tue, 7 Feb 2012 14:15:35 +0000 (15:15 +0100)]
Bug #535978 - Filtering on IMAP accounts causes message to be downloaded

12 years agoBug #553796 - Unable to Reset Message Color
Milan Crha [Tue, 7 Feb 2012 13:35:17 +0000 (14:35 +0100)]
Bug #553796 - Unable to Reset Message Color

12 years agoBug #485283 - Filter is not working for mix letter case
Milan Crha [Tue, 7 Feb 2012 12:46:09 +0000 (13:46 +0100)]
Bug #485283 - Filter is not working for mix letter case

12 years agoBug #309945 - Ability to filter folders other than INBOX too
Milan Crha [Tue, 7 Feb 2012 11:55:59 +0000 (12:55 +0100)]
Bug #309945 - Ability to filter folders other than INBOX too

12 years agoFix google contacts going online after being offline
Alexander Larsson [Tue, 7 Feb 2012 11:26:52 +0000 (12:26 +0100)]
Fix google contacts going online after being offline

The google contacts backend has another error similar to bug 658911,
if it goes offline and then goes online it does request_auth(), but in
the case of existing GOA authentication that will never recieve the
authentication callback, so we never go !readonly.

This patch fixes that, and also fixes an issue in the fix in
bug 658911, where if its offline at startup it should not claim to be
!readonly.

https://bugzilla.gnome.org/show_bug.cgi?id=669557

12 years agoBug #669545 - Crash invoking filters in IMAP folder
Milan Crha [Tue, 7 Feb 2012 10:04:14 +0000 (11:04 +0100)]
Bug #669545 - Crash invoking filters in IMAP folder

12 years agoUpdated Galician translations
Fran Diéguez [Sun, 5 Feb 2012 21:50:48 +0000 (22:50 +0100)]
Updated Galician translations

12 years agoFix version bump, next is 3.3.90.
Matthew Barnes [Sun, 5 Feb 2012 16:55:28 +0000 (11:55 -0500)]
Fix version bump, next is 3.3.90.

12 years agoPost-release version bump.
Matthew Barnes [Sun, 5 Feb 2012 15:53:30 +0000 (10:53 -0500)]
Post-release version bump.

12 years agoNEWS update for 3.3.5 release.
Matthew Barnes [Sun, 5 Feb 2012 15:47:01 +0000 (10:47 -0500)]
NEWS update for 3.3.5 release.

12 years agoFix a typo where instead of saving the cache, uid is saved.
Srinivasa Ragavan [Fri, 3 Feb 2012 11:13:48 +0000 (16:43 +0530)]
Fix a typo where instead of saving the cache, uid is saved.

12 years agoAdd a few missing return. On first time startup, latest id wont be
Srinivasa Ragavan [Fri, 3 Feb 2012 10:41:39 +0000 (16:11 +0530)]
Add a few missing return. On first time startup, latest id wont be
there. Handle the case to avoid a crash. Fixes bug #669293

12 years agoUpdated Spanish translation
Daniel Mustieles [Fri, 3 Feb 2012 09:27:17 +0000 (10:27 +0100)]
Updated Spanish translation

12 years agoBug #669238 Warning while creating appointments/meetings
Punit Jain [Fri, 3 Feb 2012 07:02:56 +0000 (12:32 +0530)]
Bug #669238 Warning while creating appointments/meetings

12 years agoUpdated Slovenian translation
Matej Urbančič [Thu, 2 Feb 2012 20:00:09 +0000 (21:00 +0100)]
Updated Slovenian translation

12 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Thu, 2 Feb 2012 12:01:19 +0000 (13:01 +0100)]
Updated Norwegian bokmål translation

12 years agoFix typo in localized string
Kjartan Maraas [Thu, 2 Feb 2012 12:00:23 +0000 (13:00 +0100)]
Fix typo in localized string

12 years agoUpdated Spanish translation
Daniel Mustieles [Thu, 2 Feb 2012 11:23:24 +0000 (12:23 +0100)]
Updated Spanish translation

12 years agoAdd some doc to the API.
Srinivasa Ragavan [Thu, 2 Feb 2012 11:00:00 +0000 (16:30 +0530)]
Add some doc to the API.

12 years agoFix a few compilation errors on merge.
Srinivasa Ragavan [Thu, 2 Feb 2012 10:53:40 +0000 (16:23 +0530)]
Fix a few compilation errors on merge.

12 years agoFix a crash while fetching old messages.
Srinivasa Ragavan [Thu, 26 Jan 2012 13:09:43 +0000 (18:39 +0530)]
Fix a crash while fetching old messages.

12 years agoFix a bug where mobile mode downloads all mails.
Srinivasa Ragavan [Thu, 26 Jan 2012 05:57:50 +0000 (11:27 +0530)]
Fix a bug where mobile mode downloads all mails.

12 years agoAdd mobile support to POP and fix a bug where uids are duplicated.
Srinivasa Ragavan [Thu, 12 Jan 2012 14:26:32 +0000 (19:56 +0530)]
Add mobile support to POP and fix a bug where uids are duplicated.

12 years agoSome disk I/O optimization.
Srinivasa Ragavan [Thu, 12 Jan 2012 14:25:29 +0000 (19:55 +0530)]
Some disk I/O optimization.

12 years agoMake Local store work if GetFolderInfo is asked for a specific subtree.
Srinivasa Ragavan [Thu, 12 Jan 2012 14:21:34 +0000 (19:51 +0530)]
Make Local store work if GetFolderInfo is asked for a specific subtree.

12 years agoDecided return type based on the fetch type.
Srinivasa Ragavan [Thu, 12 Jan 2012 10:17:22 +0000 (15:47 +0530)]
Decided return type based on the fetch type.

12 years agoAdd mobile mode settings to POP3.
Srinivasa Ragavan [Thu, 12 Jan 2012 09:01:22 +0000 (14:31 +0530)]
Add mobile mode settings to POP3.