Do not always ask for migration to maildir

One can downgrade GConf key /apps/evolution/last_version to something
below 2.92.0 and he/she will be asked again.
This commit is contained in:
Milan Crha
2010-12-02 13:56:49 +01:00
parent cda5e5498b
commit 4ab4abecde

View File

@ -1165,8 +1165,10 @@ e_mail_migrate (EShellBackend *shell_backend,
em_ensure_proxy_ignore_hosts_being_list ();
}
if (!migrate_local_store (shell_backend))
return FALSE;
if (major < 2 || (major == 2 && minor < 92)) {
if (!migrate_local_store (shell_backend))
return FALSE;
}
return TRUE;
}