You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DMARC.jl is a specialized Julia package designed to processes DMARC aggregate reports, typically in XML format, transforming them into a more human-readable and interpretable format. This transformation allows users to efficiently analyze and gain valuable insights into their domain's email activity, ultimately helping them take proactive steps to ensure email security and prevent malicious activities.
23
+
## What is DMARCParser.jl?
24
+
`DMARCParser.jl` is a specialized Julia package designed to processes DMARC aggregate reports, typically in XML format, transforming them into a more human-readable and interpretable format. This transformation allows users to efficiently analyze and gain valuable insights into their domain's email activity, ultimately helping them take proactive steps to ensure email security and prevent malicious activities.
25
25
26
26
<br />
27
27
28
28
## Functions available in DMARC.jl
29
-
The following table provides an overview of the functions that can be used in DMARC.jl.
29
+
The following table provides an overview of the functions that can be used in DMARCParser.jl.
30
30
31
31
| Function | Description |
32
32
| ------------- | ------------- |
@@ -36,27 +36,27 @@ The following table provides an overview of the functions that can be used in DM
36
36
37
37
<br />
38
38
39
-
## How to use DMARC.jl
39
+
## How to use DMARCParser.jl
40
40
41
41
### Installation
42
-
You can install the latest **DMARC.jl** release with Julia's package manager:
42
+
You can install the latest **DMARCParser.jl** release with Julia's package manager:
43
43
44
44
```julia-repl
45
45
]
46
-
add DMARC
46
+
add DMARCParser
47
47
```
48
48
49
49
or
50
50
51
51
```julia
52
52
using Pkg
53
-
Pkg.add("DMARC")
53
+
Pkg.add("DMARCParser")
54
54
```
55
55
56
56
### Usage
57
-
DMARC.jl can be executed with just three lines of code.
57
+
DMARCParser.jl can be executed with just three lines of code.
@@ -118,15 +118,15 @@ Here's what each of the tags means in your provided DMARC report
118
118
119
119
<br />
120
120
121
-
## DMARC compatible formats
121
+
## DMARCParser compatible formats
122
122
The DMARC Aggregare Reports sent from the following domains (or their associated organizations) have been thoroughly tested to work with the DMARC.jl package:
123
123
- google.com
124
124
- Outlook.com
125
125
- Mail.Ru
126
126
- zoho.com
127
127
- iphmx.com
128
128
129
-
However, DMARC.jl is robust enough to work with any other properly formatted DMARC XML files.
129
+
DMARCParser.jl is robust enough to work with any other properly formatted DMARC XML files.
130
130
131
131
<br />
132
132
@@ -138,11 +138,11 @@ However, DMARC.jl is robust enough to work with any other properly formatted DMA
138
138
139
139
## Licensing
140
140
141
-
``DMARC.jl`` is released under the terms of the MIT License. Please refer to the <ahref="https://github.com/analyticsinmotion/DMARC.jl/blob/main/LICENSE">LICENSE</a> file for full details.
141
+
``DMARCParser.jl`` is released under the terms of the MIT License. Please refer to the <ahref="https://github.com/analyticsinmotion/DMARCParser.jl/blob/main/LICENSE">LICENSE</a> file for full details.
142
142
143
143
This project also includes third-party packages distributed under the MIT license, including XML.jl and DataFrames.jl.
144
144
145
-
The full NumPy and Pandas licenses can be found directly in the following source codes:
145
+
The full XML.jl and DataFrames.jl licenses can be found directly in the following source codes:
0 commit comments