aboutsummaryrefslogtreecommitdiffstats
path: root/devel-docs
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-09-06 01:48:59 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-09-06 01:48:59 +0800
commit1ee21a1820a06e6512eb82e17f75894d252a7257 (patch)
tree0f22a4f901cb3faab656464f11325b5e6b50584c /devel-docs
parente716a2ed8bb0e9caed9af80152a40aad24629266 (diff)
downloadgsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar.gz
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar.bz2
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar.lz
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar.xz
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.tar.zst
gsoc2013-evolution-1ee21a1820a06e6512eb82e17f75894d252a7257.zip
New revision. Some fixes.
1999-09-05 bertrand <Bertrand.Guiheneuf@aful.org> * devel-docs/misc/ref_and_id_proposition.txt: New revision. Some fixes. * camel/camel-folder.h (struct _CamelFolder): added uid_capability field. * started to work on UIDs svn path=/trunk/; revision=1180
Diffstat (limited to 'devel-docs')
-rw-r--r--devel-docs/misc/ref_and_id_proposition.txt19
1 files changed, 10 insertions, 9 deletions
diff --git a/devel-docs/misc/ref_and_id_proposition.txt b/devel-docs/misc/ref_and_id_proposition.txt
index 961cdfb872..2127b45a57 100644
--- a/devel-docs/misc/ref_and_id_proposition.txt
+++ b/devel-docs/misc/ref_and_id_proposition.txt
@@ -1,6 +1,7 @@
Author: Bertrand Guiheneuf <Bertrand.Guiheneuf@aful.org>
Date: August 9th 1999
-Version: 0.1
+Last revision date : September 3rd 1999
+Version: 0.2
The last version of this document is always available in gnome CVS in
the gnome-mailer module: devel-docs/misc/ref_and_id_proposition.txt
@@ -19,7 +20,7 @@ where number is an integer representing the message rank within its
parent folder.
This is a traditional method (JavaMail, MAPI) and it is very useful
-because this is often the only way to get a identify message in a
+because this is often the only way to get a message in from a
classical store (pop3 for example).
Moreover, various documents ([1], [2]) proposed to generalize the URL
@@ -80,9 +81,9 @@ Basically, we have two choices:
Method (1) already exists in IMAP.
It is quite simple to define on local stores (MH, mbox, ....) but it
may not resist to message modification by other MUA.
-Methods based on Message-id matching or message content-checksum seem
-to be the best one. Using an "X-" header is another possibility on
-non-read only headers. A combination of these three methods may be the
+Methods based on Message-id matching or message content checksum seem
+to be the best one. Using an "X-" header is another possibility for
+non read-only folders. A combination of these three methods may be the
most reliable solution.
The UID is impossible to implement in a POP3 store provider.
@@ -96,7 +97,7 @@ The M-ID is also impossible to implement in a POP3 store provider.
We may not rely on external MUA and MTA to guarentee the uniqueness of
-the identifier . We may lose messages by never being able to read them
+the identifier . We may loose messages by never being able to read them
if two had the same uid. It would be possible to find workarounds, but
it could make Camel use a bit tricky.
@@ -121,7 +122,7 @@ gchar * camel_folder_get_message_uid (CamelFolder *folder, CamelMimeMessage *mes
CamelMimeMessage *camel_folder_get_message_by_uid (CamelFolder *folder, gchar *uid)
return the message which uid is %uid
-In addition, the CamelFolder Class will have a new public method
+In addition, the CamelMessage Class will have a new public method
gchar * camel_mime_message_get_uid (CamelMimeMessage *message)
return the uid associated to the message in its physical parent
@@ -134,7 +135,7 @@ B) Handling message references in (v)folders.
We want the future Gnome mailer to be able to build (virtual) folders
-holding references to messages located physically in other
+holding references to messages physically located in other
folders. More generally, we would like folders to be able to hold:
1) messages
@@ -145,7 +146,7 @@ folders. More generally, we would like folders to be able to hold:
can hold messages and/or subfolders.
(3) is a different issue, because no existing mail store can currently
-hold within folders references to messages in other folders.
+hold, within folders, references to messages in other folders.
It will thus be a specific gnome-mailer extension.