8f0fabf9dc
This change adds a parser to parse raw emails received by either POP3 or IMAP into a MailMessage. It adds a dependency to Apache Mime4j to handle the mime message parsing and tests. Change-Id: I97ead9615ffcd0a7839ae1aa1581be4005cf67f1
14 lines
307 B
Python
14 lines
307 B
Python
java_library(
|
|
name = "core",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@mime4j_core//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "dom",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@mime4j_dom//jar"],
|
|
)
|