-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#212 WIP fix Office identification, add outlook mail parser
- Loading branch information
1 parent
bf9b4bc
commit cbe54c1
Showing
4 changed files
with
47 additions
and
10 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from .submodule_base import SubmoduleBaseclass | ||
|
||
|
||
class OutlookSubmodule(SubmoduleBaseclass): | ||
"""This is just for showing how to include a submodule. No real functionality here.""" | ||
|
||
def __init__(self): | ||
SubmoduleBaseclass.__init__(self) | ||
self.name = 'Outlook mail Information' | ||
|
||
def check_file(self, **kwargs): | ||
if kwargs.get('filetype') == 'GZIP': | ||
return True | ||
return False | ||
|
||
def analyze_file(self, path): | ||
self.add_result_subsection('TEST', {}) | ||
return self.resul |
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