How to sync Evolution with Google's PIM apps


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News How to sync Evolution with Google's PIM apps
# 1  
Old 12-12-2008
How to sync Evolution with Google's PIM apps

12-12-2008 02:00 AM
While I'm a die-hard Google user -- especially the PIM apps -- I still appreciate offline applications for the integration with the desktop, speed, and features they sport. The Evolution contact and calendaring application is a great example: it's as feature-packed as Microsoft Outlook, but with GNOME integration, and it's fast. Gmail, by comparison, is slow and lacks any desktop integration. In a perfect world, Evolution would sync with Google's PIM apps. Unfortunately, there aren't any good, easy-to-use, comprehensive guides for setting up Evolution to sync with all of these apps -- until now.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Red Hat

program about evolution

Our company use Microsoft exchange server ,My mail client is evolution.When i set up the evolution .It appears this picture.How should i do? Please help me! (0 Replies)
Discussion started by: fang_xiaoan
0 Replies

2. Web Development

Helpful Tip: Forcing Google to www.google.com

Helpful Tip! Sometimes when we are in another country, Google redirects our request for www.google.com to: www.google.co.in or to: www.google.co.th If you want to force Google to go to the US site, use: www.google.com/webhp (1 Reply)
Discussion started by: Neo
1 Replies

3. Solaris

Sync to Green vs. Separate Sync

Hi all....I have a Sun Ultra2 that I want to use with my PC monitor. I have purchased an adapter that does not work and I was told I need to change my video card setting (if I can) to Separate Sync.....my Monitor product number ends in 1343......I am running SunOS 5.7 ......anyone have any ideas? ... (0 Replies)
Discussion started by: psantinello
0 Replies

4. Linux

evolution authentication

We are using fedora 8 on my system in that we are using evolution for checking mail we have configured mail server on fedora 8 in another system earlier when i was open the evolution it was asking password for authentication from last two days whenever i open the evolution it was not asking... (1 Reply)
Discussion started by: ambavaram
1 Replies

5. UNIX for Advanced & Expert Users

implementation of pim and mospf protocole in unix

hello is there any implementation of msopf and pim protocoles in unix? :confused: (1 Reply)
Discussion started by: jalil smail
1 Replies

6. Linux

Evolution 1.4 error after configuration

After configuring Evolution 1.4, I get an error. I went through all the settings, and I dont have what it says in the error anywhere. I am posting an image so if anyone knows where to change this I would appreciate it. This pops up when sending email. The SMTP server is set correctly i.e.... (10 Replies)
Discussion started by: the_chameleon
10 Replies
Login or Register to Ask a Question
Net::Google::Code(3pm)					User Contributed Perl Documentation				    Net::Google::Code(3pm)

NAME
Net::Google::Code - a simple client library for google code SYNOPSIS
use Net::Google::Code; my $project = Net::Google::Code->new( project => 'net-google-code' ); $project->load; # load its metadata, e.g. summary, owners, members, etc. print join(', ', @{ $project->owners } ); # return a Net::Google::Code::Issue object, of which the id is 30 $project->issue( id => 30 ); # return a Net::Google::Code::Download object, of which the file name is # 'FooBar-0.01.tar.gz' $project->download( name => 'FooBar-0.01.tar.gz' ); # return a Net::Google::Code::Wiki object, of which the page name is 'Test' $project->wiki( name => 'Test' ); # loads all the downloads $project->load_downloads; my $downloads = $project->downloads; # loads all the wikis $project->load_wikis; my $wikis = $project->wikis; DESCRIPTION
Net::Google::Code is a simple client library for projects hosted in Google Code. Since 0.15, Net::Google::Code offers google's official issues api support. Besides the new "Net::Google::Code::Issue::list", "Net::Google::Code::Issue::Comment::list" and <Net::Googlel::Code::Issue::load_comments> methods, which use the api from start, you can set $Net::Google::Code::Issue::USE_HYBRID to true to load, create and update issue with the api too. But the official api is not function complete yet( e.g. no attachment support, can't merge, etc. ), Net::Google::Code will back to the scraping way to accomplish those stuff. ATTRIBUTES
project the project name email, password user's email and password, used to authenticate base_url the project homepage base_svn_url the project svn url (without trunk) base_feeds_url the project feeds url summary description labels owners members INTERFACE
load load project's home page, and parse its metadata parse acturally do the parse job, for load(); load_downloads load all the downloads, and store them as an arrayref in $self->downloads load_wikis load all the wikis, and store them as an arrayref in $self->wikis issue return a new Net::Google::Code::Issue object, arguments will be passed to Net::Google::Code::Issue's new method. download return a new Net::Google::Code::Download object, arguments will be passed to Net::Google::Code::Download's new method. wiki return a new Net::Google::Code::Wiki object, arguments will be passed to Net::Google::Code::Wiki's new method. DEPENDENCIES
Any::Moose, HTML::TreeBuilder, WWW::Mechanize, Params::Validate XML::FeedPP, DateTime, JSON, URI::Escape, MIME::Types, File::MMagic INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. This project is very very young, and api is not stable yet, so don't use this in production, at least for now. AUTHOR
sunnavy "<sunnavy@bestpractical.com>" Fayland Lam "<fayland@gmail.com>" LICENCE AND COPYRIGHT
Copyright 2008-2010 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-26 Net::Google::Code(3pm)