| Line 1: | Line 1: | ||
EMailFactory will be a dbus daemon, that runs camel session. The camel session controls the providers of IMAP/POP/Exchange/* and keeps checking emails, and serves CamelStore/CamelFolder/CamelMimeMessage/* over DBUS to its clients. Below is a high level architecture diagram of how the various pieces fit together, displayed below. | EMailFactory will be a dbus daemon, that runs camel session. The camel session controls the providers of IMAP/POP/Exchange/* and keeps checking emails, and serves CamelStore/CamelFolder/CamelMimeMessage/* over DBUS to its clients. Below is a high level architecture diagram of how the various pieces fit together, displayed below. | ||
| - | [[File:Email-daemon-design-complete.png]] | + | [[File:Email-daemon-design-complete-1.png]] |
EMailFactory will be a dbus daemon, that runs camel session. The camel session controls the providers of IMAP/POP/Exchange/* and keeps checking emails, and serves CamelStore/CamelFolder/CamelMimeMessage/* over DBUS to its clients. Below is a high level architecture diagram of how the various pieces fit together, displayed below.
The Camel Daemon code is now in gnome git, in the email-factory branch.
http://git.gnome.org/browse/evolution-data-server/log/?h=email-factory has the code the for the daemon:
The DBus API currently provided by the Daemon is below. In a high level, it is a async wrapper around the camel's session/folder/store API.
http://git.gnome.org/browse/evolution-data-server/tree/mail/daemon/e-mail-data-folder.xml?h=email-factory
http://git.gnome.org/browse/evolution-data-server/tree/mail/daemon/e-mail-data-store.xml?h=email-factory
http://git.gnome.org/browse/evolution-data-server/tree/mail/daemon/e-mail-data-session.xml?h=email-factory
Camel Daemon (The EMail factory) is a process that runs camel session. A high level picture of the daemon is below:
It could be a challenge to verify accounts. As Evolution doesn't do that yet. It runs accounts and reports error if its not right.
Have the working C++ dbus interface for the Camel daemon, created working instances & marshaling code etc. Moved away the base objects of
folderlistmodel, emailaccountlistmodel and emailmessagelist model from QMF baseclass to QAbstract*Model.
Implemented these models to pick up data from Camel daemon. Modified a bit of QML set the folder/account correctly. Pending: - Modify EmailAgent, in a way it send/receives mails to Camel - Modify EMailFeedModel to handle EmailMessage creation from Camel. - Integrate CamelMimeMessage & mime part hierarchy for things like attachment handling, plain text and html body. - Composer integration & sending mails. - Mail operations handling: like create/delete mail/folder,
reply/forward, mark read/unread, sort, search.
Almost complete to suffice our need, have a test code that runs through all the APIs and work well so far.
Expect a few minor changes here & there on demand. - Write libcamelremote a wrapper around the DBus interface to provide sync/async apis for the camel Daemon.
Works mostly, and is pretty stable than expected. But should spend some time & check on the CPU usage,
dbus connection handling, and object clean ups. - DBus conneciton handling & object clean ups. - EMail preview support. Anjal used to extend evolution to add email preview of unquoted text. I should add
that bit to Camel so that it can be served to the tablet email app. - Gtk free the daemon. Specially the password dialog. Add signal to integrate with clients for password handling. Add better error handling and progress reporting.
Modify the QtMobility framework to communicate with the Camel daemon. 3rd party apps will use QtMobility to interface with email framework than the raw DBus apis.