Changes between Version 2 and Version 3 of EmailDeveloping


Ignore:
Timestamp:
06/19/06 14:13:41 (18 years ago)
Author:
sauermann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • EmailDeveloping

    v2 v3  
    33== URIS of e-mails == 
    44 
     5=== dumb emai:scheme === 
    56E-mails can be identified using the uri scheme email:<messageid>. 
    67 
     8=== complicated but correct IMAP scheme === 
     9 
     10The uri scheme for IMAP e-mails is defined in RFC 2192 
     11 * http://www.networksorcery.com/enp/rfc/rfc2192.txt 
     12 
     13some examples: 
     14 * imap://michael@minbari.org/users.*;type=list 
     15 * imap://sauermann@example.com/INBOX/  - a folder 
     16 * imap://sauermann@example.com/INBOX/;UID=234  - an e-mail 
     17 * imap://sauermann@example.com/INBOX/;UID=234/;SECTION=1.1 - a mime-part within an e-mail  
     18  
     19Code to create uris: 
     20 * https://gnowsis.opendfki.de/browser/trunk/gnowsis_email/WEB-INF/src/org/gnowsis/email/config/StoreConfig.java 
     21Code to parse uris: 
     22 * https://gnowsis.opendfki.de/browser/trunk/gnowsis_email/WEB-INF/src/org/gnowsis/email/config/UrlParser.java 
     23 
     24'''Troubles''': 
    725If we Use IMAP URIS, then we have a lot of trouble: 
    826The IMAP Uris seem to be UTF7-IMAP encoded, a weird encoding scheme for that purpose. Only I cannot get the corresponding decoder to run, it is the XPCOM class @mozilla.org/intl/unicode/decoder;1?charset=x-imap4-modified-utf7