File tree 4 files changed +10
-7
lines changed
4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
4
** v0.50.1**
2
5
* [[ TeamMsgExtractor #434 ] ( https://github.com/TeamMsgExtractor/msg-extractor/issues/434 )] Fix bug introduced in previous version.
3
6
Original file line number Diff line number Diff line change @@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
260
260
.. |License: GPL v3 | image :: https://img.shields.io/badge/License-GPLv3-blue.svg
261
261
:target: LICENSE.txt
262
262
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 /
265
265
266
266
.. |PyPI2 | image :: https://img.shields.io/badge/python-3.8+-brightgreen.svg
267
267
:target: https://www.python.org/downloads/release/python-3810/
@@ -271,7 +271,7 @@ your access to the newest major version of extract-msg.
271
271
:alt: Documentation Status
272
272
273
273
.. _Matthew Walker : https://github.com/mattgwwalker
274
- .. _Destiny Peterson (The Elemental of Destruction) : https://github.com/TheElementalOfDestruction
274
+ .. _Destiny Peterson : https://github.com/TheElementalOfDestruction
275
275
.. _JP Bourget : https://github.com/punkrokk
276
276
.. _Philippe Lagadec : https://github.com/decalage2
277
277
.. _Dean Malmgren : https://github.com/deanmalmgren
Original file line number Diff line number Diff line change 27
27
# along with this program. If not, see <http://www.gnu.org/licenses/>.
28
28
29
29
__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 '
32
32
33
33
__all__ = [
34
34
# Modules:
68
68
from .ole_writer import OleWriter
69
69
from .open_msg import openMsg , openMsgBulk
70
70
from .properties import Named , NamedProperties , PropertiesStore
71
- from .recipient import Recipient
71
+ from .recipient import Recipient
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def openMsg(path, **kwargs) -> MSGFile:
116
116
return msg
117
117
classType = ct .lower ()
118
118
# 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' ) :
120
120
msg .close ()
121
121
if classType .endswith ('smime.multipartsigned' ) or classType .endswith ('smime' ):
122
122
return MessageSigned (path , ** kwargs )
You can’t perform that action at this time.
0 commit comments