diff options
author | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
commit | 10879641c56c013ef82b321032dd85d34021f501 (patch) | |
tree | 1ccf57237d944e7088bd598f9ab0c5f6f859be2d /camel/README | |
parent | d9c655cd489e0c2989669005b5fa5415c92f8097 (diff) | |
download | gsoc2013-evolution-CHECKPOINT.tar gsoc2013-evolution-CHECKPOINT.tar.gz gsoc2013-evolution-CHECKPOINT.tar.bz2 gsoc2013-evolution-CHECKPOINT.tar.lz gsoc2013-evolution-CHECKPOINT.tar.xz gsoc2013-evolution-CHECKPOINT.tar.zst gsoc2013-evolution-CHECKPOINT.zip |
This commit was manufactured by cvs2svn to create tag 'CHECKPOINT'.CHECKPOINT
svn path=/tags/CHECKPOINT/; revision=1466
Diffstat (limited to 'camel/README')
-rw-r--r-- | camel/README | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/camel/README b/camel/README deleted file mode 100644 index 44f93fa6d8..0000000000 --- a/camel/README +++ /dev/null @@ -1,57 +0,0 @@ - - CAMEL - - - A generic Messaging Library - - - ---- - - -Introduction: -------------- - -Camel will be a generic messaging library. It will evntually support -the standard messaging system for receiving and sending messages. -It aims at being the backend for the future gnome-mailer system. - -The name "camel" stands for ... nothing. Open area of developpement there. -You know, that "bazaar" thing. Maybe could we organize a big contest on -gnome-list to find the best signification :) - -Camel draws heacily from JavaMail and the IMAP4rev1 RFC. -people wanting to hack on a provider are recommended to read the JavaMail -API specification but CMC and MAPI are of interest too. - -Please, before starting anything, wait for me to finish the abstract classes. -Some parts are not definitive yet. - - -Organization: -------------- - -The library is roughly a set of abstract classes, some kind of generic -"interfaces" (idl interfaces, not java interfaces ). - -Particular implementations are called providers. - -Here are the basic objects: - -* CamelService : an abstract class representing an access to a server. -Handles the connection and authentication to any server. - -* CamelStore (CamelService): A hierarchy of folders on a server. - -* CamelFolder : An object containing messages. A folder is always associated -to a store. - -* CamelMessage : An object contained in folders. Is defined by a set of -attribute and a content. (Attributes are generally: The date it was received, -the sender address, .....) - -* CamelTransport (CamelService): A way to send messages. - -.... -... - - |