We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da438f2 commit d3f9fd8Copy full SHA for d3f9fd8
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "simple-dmarc-parser"
3
-version = "1.0.1"
+version = "1.0.2"
4
description = "A Python script that processes DMARC reports from a mailbox and gives a basic summary."
5
authors = ["FrostTheFox <python@frostthefox.pw>"]
6
keywords = ["dmarc", "rua"]
simple_dmarc_parser/dmarc_parser.py
@@ -124,7 +124,8 @@ def main():
124
125
# If we didn't get anything from the IMAP server, exit.
126
if not os.path.isdir(directory):
127
- print('No reports found, exiting.')
+ if not silent:
128
+ print('No reports found, exiting.')
129
sys.exit()
130
131
for file in os.listdir(directory):
0 commit comments