Google: don't use SSL, libsoup doesn't support it yet (Bugzilla #4551)

Couldn't get libsoup to accept the Google certificate, so as a workaround
I'm disabling the use of https for Google. Hopefully we can get this
fixed before the next major release, if not, it has to stay turned off.
This commit is contained in:
Patrick Ohly 2009-07-21 19:21:49 +02:00
parent a70efb2bf2
commit c7bd14e729
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ boost::shared_ptr<EvolutionSyncConfig> EvolutionSyncConfig::createServerTemplate
source = config->getSyncSourceConfig("memo");
source->setURI("note");
} else if (boost::iequals(server, "google")) {
config->setSyncURL("https://m.google.com/syncml");
config->setSyncURL("http://m.google.com/syncml");
config->setWebURL("http://m.google.com/sync");
config->setClientAuthType("syncml:auth-basic");
config->setWBXML(true);