| 8 | === complicated but correct IMAP scheme === |
| 9 | |
| 10 | The uri scheme for IMAP e-mails is defined in RFC 2192 |
| 11 | * http://www.networksorcery.com/enp/rfc/rfc2192.txt |
| 12 | |
| 13 | some 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 | |
| 19 | Code to create uris: |
| 20 | * https://gnowsis.opendfki.de/browser/trunk/gnowsis_email/WEB-INF/src/org/gnowsis/email/config/StoreConfig.java |
| 21 | Code to parse uris: |
| 22 | * https://gnowsis.opendfki.de/browser/trunk/gnowsis_email/WEB-INF/src/org/gnowsis/email/config/UrlParser.java |
| 23 | |
| 24 | '''Troubles''': |