aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Oliver Rickard <ocrickard@gmail.com>2013-05-23 09:44:06 -0700
committerGravatar Oliver Rickard <ocrickard@gmail.com>2013-05-23 09:44:06 -0700
commit3901e7a6a25bba23907346f490888a320f0d20e6 (patch)
treefcf3ff8ff658cbd679d5404a66b28a839f45f5c1
parent05e91b3e41106f3d3458fc89f3d916805e3730ed (diff)
Fixed layout of RFC list
-rw-r--r--QUICKSTART.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/QUICKSTART.md b/QUICKSTART.md
index 5068327e..4284e0c2 100644
--- a/QUICKSTART.md
+++ b/QUICKSTART.md
@@ -67,14 +67,14 @@ In this sample, we retrieved and printed a list of email headers from an IMAP se
### Anatomy of a Message ###
Background Reading:
- * [RFC821](http://tools.ietf.org/html/rfc821)
- * [RFC822](http://tools.ietf.org/html/rfc822)
- * [RFC5322](http://tools.ietf.org/html/rfc5322)
- * [RFC2045](http://tools.ietf.org/html/rfc2045)
- * [RFC2046](http://tools.ietf.org/html/rfc2046)
- * [RFC2047](http://tools.ietf.org/html/rfc2047)
- * [RFC2048](http://tools.ietf.org/html/rfc2048)
- * [RFC2049](http://tools.ietf.org/html/rfc2049)
+* [RFC821](http://tools.ietf.org/html/rfc821)
+* [RFC822](http://tools.ietf.org/html/rfc822)
+* [RFC5322](http://tools.ietf.org/html/rfc5322)
+* [RFC2045](http://tools.ietf.org/html/rfc2045)
+* [RFC2046](http://tools.ietf.org/html/rfc2046)
+* [RFC2047](http://tools.ietf.org/html/rfc2047)
+* [RFC2048](http://tools.ietf.org/html/rfc2048)
+* [RFC2049](http://tools.ietf.org/html/rfc2049)
MailCore 2 has a new message structure that more closely mimics the structure of raw emails. This gives you as the user a lot of power, but can also be a little bewildering at first. When a fetch request completes and returns its results to your block, you will get an array of `MCOIMAPMessage` objects. Depending on what `kind` the fetch was made with, this message object can be only partially loaded from IMAP. In our example above, we used the `MCOIMAPMessagesRequestKindHeaders` as our `requestKind`. So we won't find any fields outside of the `header` filled out in the returned messages array. If you need more data, you can combine the `MCOIMAPMessagesRequestKind` bit masks: