Skip to content

Commit fa902fc

Browse files
Merge pull request #441 from TeamMsgExtractor/next-release
Version 0.51.0
2 parents 35512ec + a652fe0 commit fa902fc

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v0.51.0**
2+
* [[TeamMsgExtractor #401](https://github.com/TeamMsgExtractor/msg-extractor/issues/401)] Add basic support for MSG class type `IPM.SkypeTeams.Message`.
3+
14
**v0.50.1**
25
* [[TeamMsgExtractor #434](https://github.com/TeamMsgExtractor/msg-extractor/issues/434)] Fix bug introduced in previous version.
36

Diff for: README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
260260
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
261261
:target: LICENSE.txt
262262

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

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

273273
.. _Matthew Walker: https://github.com/mattgwwalker
274-
.. _Destiny Peterson (The Elemental of Destruction): https://github.com/TheElementalOfDestruction
274+
.. _Destiny Peterson: https://github.com/TheElementalOfDestruction
275275
.. _JP Bourget: https://github.com/punkrokk
276276
.. _Philippe Lagadec: https://github.com/decalage2
277277
.. _Dean Malmgren: https://github.com/deanmalmgren

Diff for: extract_msg/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2828

2929
__author__ = 'Destiny Peterson & Matthew Walker'
30-
__date__ = '2024-10-08'
31-
__version__ = '0.50.1'
30+
__date__ = '2024-10-11'
31+
__version__ = '0.51.0'
3232

3333
__all__ = [
3434
# Modules:
@@ -68,4 +68,4 @@
6868
from .ole_writer import OleWriter
6969
from .open_msg import openMsg, openMsgBulk
7070
from .properties import Named, NamedProperties, PropertiesStore
71-
from .recipient import Recipient
71+
from .recipient import Recipient

Diff for: extract_msg/open_msg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def openMsg(path, **kwargs) -> MSGFile:
116116
return msg
117117
classType = ct.lower()
118118
# Put the message class first as it is most common.
119-
if classType.startswith('ipm.note') or classType.startswith('report'):
119+
if classType.startswith('ipm.note') or classType.startswith('report') or classType.startswith('ipm.skypeteams.message'):
120120
msg.close()
121121
if classType.endswith('smime.multipartsigned') or classType.endswith('smime'):
122122
return MessageSigned(path, **kwargs)

0 commit comments

Comments
 (0)