diff --git a/Source/Additions/GSMime.m b/Source/Additions/GSMime.m index 29e80b461..2b83292f8 100644 --- a/Source/Additions/GSMime.m +++ b/Source/Additions/GSMime.m @@ -662,6 +662,11 @@ wordData(NSString *word) * [GSMimeParser-mimeDocument] method returns the * resulting parsed document. *
+ *If you need to parse faulty documents (eg where a faulty mail client + * has produced an email which does not conform to the MIME standards), you + * should look at the -setBuggyQotes: and -setDefaultCharset: methods, which + * are designed to cope with the most common faults. + *
*/ @implementation GSMimeParser @@ -2212,10 +2217,15 @@ NSDebugMLLog(@"GSMime", @"Header parsed - %@", info); } } -/** - * Method to inform the parser that body parts with no content-type +/** This is a method to inform the parser that body parts with no content-type * header (which are treated as text/plain) should use the specified - * characterset rather than the default (us-ascii) + * characterset rather than the default (us-ascii).