Skip to content

Commit

Permalink
Merge pull request #441 from TeamMsgExtractor/next-release
Browse files Browse the repository at this point in the history
Version 0.51.0
  • Loading branch information
TheElementalOfDestruction authored Oct 11, 2024
2 parents 35512ec + a652fe0 commit fa902fc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**v0.51.0**
* [[TeamMsgExtractor #401](https://github.com/TeamMsgExtractor/msg-extractor/issues/401)] Add basic support for MSG class type `IPM.SkypeTeams.Message`.

**v0.50.1**
* [[TeamMsgExtractor #434](https://github.com/TeamMsgExtractor/msg-extractor/issues/434)] Fix bug introduced in previous version.

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
:target: LICENSE.txt

.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.50.1-blue.svg
:target: https://pypi.org/project/extract-msg/0.50.1/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.51.0-blue.svg
:target: https://pypi.org/project/extract-msg/0.51.0 /

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3810/
Expand All @@ -271,7 +271,7 @@ your access to the newest major version of extract-msg.
:alt: Documentation Status

.. _Matthew Walker: https://github.com/mattgwwalker
.. _Destiny Peterson (The Elemental of Destruction): https://github.com/TheElementalOfDestruction
.. _Destiny Peterson: https://github.com/TheElementalOfDestruction
.. _JP Bourget: https://github.com/punkrokk
.. _Philippe Lagadec: https://github.com/decalage2
.. _Dean Malmgren: https://github.com/deanmalmgren
Expand Down
6 changes: 3 additions & 3 deletions extract_msg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__author__ = 'Destiny Peterson & Matthew Walker'
__date__ = '2024-10-08'
__version__ = '0.50.1'
__date__ = '2024-10-11'
__version__ = '0.51.0'

__all__ = [
# Modules:
Expand Down Expand Up @@ -68,4 +68,4 @@
from .ole_writer import OleWriter
from .open_msg import openMsg, openMsgBulk
from .properties import Named, NamedProperties, PropertiesStore
from .recipient import Recipient
from .recipient import Recipient
2 changes: 1 addition & 1 deletion extract_msg/open_msg.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def openMsg(path, **kwargs) -> MSGFile:
return msg
classType = ct.lower()
# Put the message class first as it is most common.
if classType.startswith('ipm.note') or classType.startswith('report'):
if classType.startswith('ipm.note') or classType.startswith('report') or classType.startswith('ipm.skypeteams.message'):
msg.close()
if classType.endswith('smime.multipartsigned') or classType.endswith('smime'):
return MessageSigned(path, **kwargs)
Expand Down

0 comments on commit fa902fc

Please sign in to comment.