package = "org.conman.parsers.email" version = "1.0.1-0" source = { url = "https://raw.github.com/spc476/LPeg-Parsers/email-1.0.1/email.lua", } description = { homepage = "https://github.com/spc476/LPeg-Parsers", maintainer = "Sean Conner ", license = "LGPL", summary = "Parse RFC-5322 based email messages", detailed = [[ Return a Lua table with the email headers parsed into individual fields. Any fields not defined are returned in a field called 'generic'; the name is the raw header name, with the value the raw value found. This will also return the character position past the email headers to facility reading in the body, if one exists. ]] } dependencies = { "lua", "lpeg >= 0.10" } build = { type = "none", copy_directories = {}, install = { lua = { ['org.conman.parsers.email'] = "email.lua" } } }