-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Include MTA-STS and BIMI results in CSV output - Renamed `include_dmarc_tag_descriptions` parameter in `checkdmarc.check_domains()` to `include_tag_descriptions` - Added the `include_tag_descriptions` parameter to `checkdmarc.bimi.check_bimi()` - Ignore encoding value when checking the `Content-Type` header during the MTA-STS policy download - Added the exception class `MTASTSPolicyDownloadError` - Update documentation
- Loading branch information
1 parent
655234b
commit 69386f6
Showing
10 changed files
with
143 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ | |
"maxdepth", | ||
"mcsv", | ||
"modindex", | ||
"MTASTS", | ||
"NAMESERVER", | ||
"nojekyll", | ||
"nonauth", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,57 @@ | ||
# API | ||
|
||
## checkdmarc | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc | ||
:members: | ||
:undoc-members: | ||
``` | ||
|
||
## checkdmarc.bimi | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.bimi | ||
:members: | ||
``` | ||
|
||
## checkdmarc.dmarc | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.dmarc | ||
:members: | ||
``` | ||
|
||
## checkdmarc.dnssec | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.dnssec | ||
:members: | ||
``` | ||
|
||
## checkdmarc.mta_sts | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.mta_sts | ||
:members: | ||
``` | ||
|
||
## checkdmarc.smtp | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.smtp | ||
:members: | ||
``` | ||
|
||
## checkdmarc.spf | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.spf | ||
:members: | ||
``` | ||
|
||
## checkdmarc.utils | ||
|
||
```{eval-rst} | ||
.. automodule:: checkdmarc.utils | ||
:members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
```{toctree} | ||
--- | ||
maxdepth: 2 | ||
maxdepth: 1 | ||
--- | ||
installation | ||
api | ||
|