Changeset 2432
- Timestamp:
- 07/09/07 13:17:41
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/camel-service.c (modified) (2 diffs)
- trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-provider.c (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-account.c (modified) (2 diffs)
- trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2431 r2432 3 3 * Changed the cache-dir locations to ones that are more suitable for 4 4 mor types of filesystems 5 * Added the user to IMAP cache-dir locations 5 6 6 7 2007-07-09 Javier Fernández García-Boente <jfernandez@igalia.com> trunk/libtinymail-camel/camel-lite/camel/camel-service.c
r2431 r2432 557 557 if (CAMEL_PROVIDER_ALLOWS (prov, CAMEL_URL_PART_USER)) { 558 558 if (CAMEL_PROVIDER_ALLOWS (prov, CAMEL_URL_PART_HOST)) { 559 g_string_append_printf (gpath, "/%s_ %s",559 g_string_append_printf (gpath, "/%s__%s", 560 560 url->user ? url->user : "", 561 561 url->host ? url->host : ""); … … 565 565 } else { 566 566 g_string_append_printf (gpath, "/%s%s", url->user ? url->user : "", 567 CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_USER) ? "" : "_ ");567 CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_USER) ? "" : "__"); 568 568 } 569 569 } else if (CAMEL_PROVIDER_ALLOWS (prov, CAMEL_URL_PART_HOST)) { 570 570 g_string_append_printf (gpath, "/%s%s", 571 CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_HOST) ? "" : "_ ",571 CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_HOST) ? "" : "__", 572 572 url->host ? url->host : ""); 573 573 trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-provider.c
r1943 r2432 88 88 CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_SUPPORTS_SSL, 89 89 90 /* CAMEL_URL_NEED_USER | */CAMEL_URL_NEED_HOST | CAMEL_URL_ALLOW_AUTH,90 CAMEL_URL_ALLOW_USER | CAMEL_URL_NEED_HOST | CAMEL_URL_ALLOW_AUTH, 91 91 92 92 imap_conf_entries, trunk/libtinymail-camel/tny-camel-account.c
r2420 r2432 672 672 _tny_session_camel_add_account (session, self); 673 673 674 TNY_CAMEL_ACCOUNT_GET_CLASS (self)->prepare_func (self, TRUE, TRUE);674 TNY_CAMEL_ACCOUNT_GET_CLASS (self)->prepare_func (self, FALSE, FALSE); 675 675 676 676 g_static_rec_mutex_unlock (priv->service_lock); … … 745 745 priv->proto = g_strdup (proto); 746 746 747 TNY_CAMEL_ACCOUNT_GET_CLASS (self)->prepare_func (TNY_CAMEL_ACCOUNT (self), TRUE, TRUE);747 TNY_CAMEL_ACCOUNT_GET_CLASS (self)->prepare_func (TNY_CAMEL_ACCOUNT (self), TRUE, FALSE); 748 748 749 749 g_static_rec_mutex_unlock (priv->service_lock); trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c
r2154 r2432 312 312 tny_account_set_forget_pass_func (TNY_ACCOUNT (account), 313 313 per_account_forget_pass_func); 314 315 314 tny_account_set_pass_func (TNY_ACCOUNT (account), 316 315 per_account_get_pass_func);
