Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-parser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTechSneeze <dave@techsneeze.com>2020-10-02 10:01:21 +0300
committerGitHub <noreply@github.com>2020-10-02 10:01:21 +0300
commit1091421fe9235256e05b61884c081eb21076b093 (patch)
tree916a7da5f74453570dab32e6c10af1a76e297446
parent88e2f55dcaabb99f12c8ba418a6f4e53ca640800 (diff)
Update dmarcts-report-parser.pl
Attempting to make the the multipart detection more inclusive, to resolve the issue reported in #77
-rwxr-xr-xdmarcts-report-parser.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmarcts-report-parser.pl b/dmarcts-report-parser.pl
index a8f4072..1af6445 100755
--- a/dmarcts-report-parser.pl
+++ b/dmarcts-report-parser.pl
@@ -523,7 +523,7 @@ sub getXMLFromMessage {
$location = $body->path;
$isgzip = 1;
- } elsif (lc $mtype eq "multipart/mixed") {
+ } elsif (lc $mtype =~ "multipart/") {
# At the moment, nease.net messages are multi-part, so we need
# to breakdown the attachments and find the zip.
if ($debug) {