| Path: | lib/mail/parsers/content_location.treetop |
| Last Update: | 2010-03-02 23:35:02 +0100 |
module Mail
grammar ContentLocation
include RFC2822
include RFC2045
rule primary
CFWS location CFWS
end
rule location
quoted_string {
def text_value
quoted_content.text_value
end
} / (token / [\x3d])+
end
end
end