| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-27 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (cp): Removed unneeded debug printfs.
* em-folder-tree.c (tree_drag_data_received): Use
gtk_tree_view_get_dest_row_at_pos() instead of
gtk_tree_view_get_path_at_pos() since this is what Nautilus
uses. Unfortunately, it still gives us back the wrong GtkTreePath
so it looks to me like Gtk+ is borked. Apparently you need the
latest and greatest gtk+-2.3.x cvs snapshot for this to work.
svn path=/trunk/; revision=24482
|
|
|
|
|
|
|
|
|
| |
2004-01-27 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_imap_caches_1_4): Copy the imap cache
into the right place. Duh.
svn path=/trunk/; revision=24470
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-27 Not Zed <NotZed@Ximian.com>
** See bug #53084 and others.
* em-migrate.c (em_migrate): remove the vfolder_revert hack.
* em-composer-utils.c (ask_confirm_for_only_bcc): removed unused
vars.
* mail-tools.c (mail_tool_get_local_inbox): removed, handled by
mail_component_get_folder now.
* mail-component.c (mail_component_*): Changed the api slightly.
Using NULL as the component argument automatically implies you
want the default component.
(em_uri_from_camel, em_uri_to_camel): moved to em-utils.[ch]. Ok
so it isn't namespaced right ... *shrug*.
(mail_component_get_local_inbox): removed.
(mail_component_get_folder): single entry point for getting
standard folders. This is MT-Safe.
(mail_component_get_folder_uri): single entry point for getting
standard folder uri's. This is MT-Safe.
(add_store): removed, moved to mail_component_add_store.
(mail_component_load_store_by_uri): call mail_component_add_store
directly rather than copying its code.
(default_*_folder*): Removed, use accessor methods instead, fixed
all callers.
(setup_local_store): renamed to mc_setup_local_store, use proper
url encoding too. make run-once and thread-safe.
(MailComponentPrivate): Added a lock.
(mail_control_new): exported properly to kill warnings.
(mail_component_init): dont setup_local_store or add accounts
here.
(impl_createControls): setup local store/accounts here.
(mail_component_peek): dont setup vfolder storage here.
(mc_startup): internal function to startup stuff needed for gui
operation.
(setup_search_context): make run-once.
(mail_component_peek_search_context): call setup_search_context
incase it isn't setup yet.
(impl_upgradeFromVersion): remove the local store setup hack.
svn path=/trunk/; revision=24462
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-26 Jeffrey Stedfast <fejj@ximian.com>
Fixes for bug #53251.
* mail-account-gui.c (mail_account_gui_new): Convert the account
drafts/sent folder uris to camel uris.
(mail_account_gui_save): Convert drafts/sent camel uris into
mailer uris when setting them on the account. Also, don't compare
against file: anymore since those uris don't exist anymore.
* em-migrate.c (em_upgrade_accounts_1_4): Update the drafts/sent
folder uris.
svn path=/trunk/; revision=24452
|
|
|
|
|
|
|
|
|
|
| |
2004-01-23 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (upgrade_xml_uris_1_4): Handle where the file: url
is roken (ie, points to a location out of the evolution
namespace).
svn path=/trunk/; revision=24388
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-21 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_1_4): Migrate the ETree expanded state
files as well as the GalView files.
* message-list.c: s/hide_save_state/save_hide_state/g and
s/hide_load_state/load_hide_state/g to be more consistant with the
other state saving function names.
svn path=/trunk/; revision=24356
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-21 Not Zed <NotZed@Ximian.com>
* em-migrate.c (cp_r): use camel_mkdir(0777) rather than 0777 &
st.st_mode which isn't set anyway.
(cp): use simple 0666 for the mode open, and then chmod after.
(cp): check the return code of close, not just fsync.
(cp): dont use fd[0] and fd[1] when we really just want simple
variables, rename to readfd and writefd.
svn path=/trunk/; revision=24347
|
|
|
|
| |
svn path=/trunk/; revision=24335
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-20 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_imap_caches_1_4): New function to
migrate the imap cache.
(em_migrate_1_4): Migrate the IMAP cache. Fixes bug #52985.
(em_migrate_1_4): Copy over the searches.xml file. Fixes bug
#52980.
svn path=/trunk/; revision=24332
|
|
|
|
| |
svn path=/trunk/; revision=24331
|
|
|
|
|
|
|
|
|
|
| |
2004-01-20 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_imap_caches_1_4): New function to
migrate the imap cache.
(em_migrate_1_4): Migrate the IMAP cache. Fixes bug #52985.
svn path=/trunk/; revision=24330
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-20 Not Zed <NotZed@Ximian.com>
* em-folder-view.c (EMFolderView): Make displayed_uid public.
* em-folder-browser.c (em_folder_browser_show_preview): use
em_folder_view_set_message rather than message_list_select_uid.
When clearing, clear view->displayed_uid too.
2004-01-20 Not Zed <NotZed@Ximian.com>
** See bug #52965.
* mail-component.c (mail_component_init): removed an epfixme, it
already is an object.
(impl_upgradeFromVersion): call mail_note_store after running the
upgrade for local folders.
* em-migrate.c (em_migrate): revert the vfolders.xml after we've
imported them.
* mail-vfolder.c (vfolder_revert): new api to re-load the vfolders
file.
svn path=/trunk/; revision=24322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-19 Not Zed <NotZed@Ximian.com>
* em-migrate.c (em_upgrade_pop_uid_caches_1_4): if we can't open
the pop3 cache dir, because it doesn't exist, it is not an error.
** See bug #52983.
* mail-component.c (em_uri_from_camel, em_uri_to_camel): Handle
vfolder: uri's properly. And make sure local uri's are properly
encoded.
(mail_component_get_folder_from_evomail_uri)
(mail_component_evomail_uri_from_folder): removed, no longer used.
(em_uri_from_camel): don't leak the camelurl.
(d): disable debug
* mail-vfolder.c (vfolder_load_storage): move the vfolder storage
location to ~/.evolution/mail/vfolder rather than
~/.evolution/mail (this is currently unused anyway).
(uri_is_ignore): short-circuit exit if we find a match.
(mail_vfolder_add_uri): dont exit immediately if we have a vfolder
uri, but don't add it to local/remove either.
(mail_vfolder_delete_uri): remove any uri from the local/remote
source list while we're at it.
svn path=/trunk/; revision=24300
|
|
|
|
|
|
|
|
|
| |
2004-01-16 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (cp): Oops, still need to stat() the src file so we
can report what percentage of the file has been completed so far.
svn path=/trunk/; revision=24274
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-16 Not Zed <NotZed@Ximian.com>
* default/C/Inbox:
* default/C/Makefile.am:
* default/Makefile.am: Startup files/folders.
* em-migrate.c (emm_setup_initial): initial implementation of
startup setup.
(cp): Fix the test, we want exists AND size>0, not exists OR
size>0.
(cp): Fix the open, we can't use O_EXCL with empty, but present
files. Another hack fix for #52880.
** See bug #52896.
* em-format-html-display.c (efhd_html_button_press_event): do this
based on get_object_at rather than get_point_at, so we get the
offset properly.
svn path=/trunk/; revision=24261
|
|
|
|
| |
svn path=/trunk/; revision=24259
|
|
|
|
| |
svn path=/trunk/; revision=24258
|
|
|
|
| |
svn path=/trunk/; revision=24253
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-15 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (cp): Only abort the copy if the dest folder both
exists and contains data. Fixes bug #52880.
(em_migrate): Abort if config.xmldb cannot be loaded. Fixes bug
#52886.
svn path=/trunk/; revision=24251
|
|
|
|
|
|
|
|
|
| |
2004-01-15 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (cp): Only abort the copy if the dest folder both
exists and contains data. Fixes bug #52880.
svn path=/trunk/; revision=24250
|
|
|
|
|
|
|
|
|
| |
2004-01-14 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c: Split out the remapping code into
e-util/e-bconf-map.[c,h] to be shared among components.
svn path=/trunk/; revision=24221
|
|
|
|
| |
svn path=/trunk/; revision=24207
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-13 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate): Handle upgrading from 1.0.x and 1.2.x
(code basically moved verbatim from e_config_upgrade).
* mail-component.c (impl_upgradeFromVersion): Move all the
major/minor/revision logic into em_migrate().
svn path=/trunk/; revision=24206
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-11 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (cp): Don't O_TRUNC the dest file, instead use
O_EXC and don't do anything if the dest file already exists (this
way we don't re-migrate an mbox or corrupt any summary/ibex/meta
files).
svn path=/trunk/; revision=24165
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-01-07 Jeffrey Stedfast <fejj@ximian.com>
* mail-component.c (mail_component_init): Don't migrate stuff here
anymore.
* mail-ops.c (uid_cachename_hack): Removed a hack that checked for
the really old uid cache location and make the uid cache live in a
better location (why have mail/pop/<account> and
mail/pop3/cache-<account>? simply put the cache file in
mail/pop/<account>/uid-cache).
* em-migrate.c (em_migrate_dir): When copying over mbox folders,
don't abort if we fail to copy over a summary file (big
whoop). Also, if indexing was turned on in the evolution 1.4
version of the folder, turn on indexing for that folder in the
migrated mbox folder as well.
(em_migrate_pop_uid_caches): Migrate the pop3 uid-cache
files. Fixes bug #52464.
(em_migrate): Call em_migrate_pop_uid_caches().
svn path=/trunk/; revision=24094
|
|
|
|
|
|
|
|
|
|
| |
2003-12-10 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_dir): Modified to simply copy mbox
files from one place to another (and the summary files) rather
than going thru camel so as to bypass the need for parsing MIME.
svn path=/trunk/; revision=23919
|
|
|
|
|
|
|
|
|
|
| |
2003-12-10 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (get_local_store): Fixed a leak.
* mail-component.c (impl_upgradeFromVersion): Implemented.
svn path=/trunk/; revision=23914
|
|
|
|
| |
svn path=/trunk/; revision=23599
|
|
|
|
|
|
|
|
| |
2003-11-18 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_dir): Don't leak the message objects.
svn path=/trunk/; revision=23428
|
|
|
|
|
|
|
|
|
|
|
|
| |
2003-11-06 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.c (em_migrate_filter_file): Call em_migrate_uri()
instead of em_uri_from_camel().
(em_migrate_uri): Special-case file: uri's by converting them into
email://local@local/ uri's since these folders will have been
migrated to the newer mbox tree structure.
svn path=/trunk/; revision=23203
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2003-11-06 Jeffrey Stedfast <fejj@ximian.com>
* mail-vfolder.c (mail_vfolder_delete_uri): User vfolder rules
should be in ${evolution_dir}/mail/vfolders.xml rather than
${evolution_dir}/vfolders.xml
(mail_vfolder_rename_uri): Same.
(store_folder_deleted): Here too.
(store_folder_renamed): And here.
(vfolder_load_storage): Again here.
(vfolder_editor_response): Same.
(edit_rule_response): And here.
(new_rule_clicked): Here too.
* mail-session.c (main_get_filter_driver): User filter rules
should be in ${evolution_dir}/mail/filters.xml rather than
${evolution_dir}/filters.xml
* mail-autofilter.c (filter_gui_add_from_message): Same.
(mail_filter_rename_uri): And here.
(mail_filter_delete_uri): Here too.
* em-utils.c (filter_editor_response): Again here.
(em_utils_edit_filters): Same.
* em-migrate.c (em_migrate_filter_file): Same (also for
vfolders.xml)
2003-11-05 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.[c,h]: New source files to migrate from the old mail
directory to the new mail directory.
* mail-component.c (mail_component_init): Changed to use
~/.evolution and added code to migrate the old mail folders over
if ~/.evolution/mail does not yet exist.
svn path=/trunk/; revision=23201
|
|
2003-11-05 Jeffrey Stedfast <fejj@ximian.com>
* em-migrate.[c,h]: New source files to migrate from the old mail
directory to the new mail directory.
* mail-component.c (mail_component_init): Changed to use
~/.evolution and added code to migrate the old mail folders over
if ~/.evolution/mail does not yet exist.
svn path=/trunk/; revision=23193
|