OWAからメールをバックアップする方法はありますか

OWAからメールをバックアップする方法はありますか

私は IE8 で OWA を使用しており、Outlook などの電子メール クライアントはインストールしていません。OWA を使用してブラウザーで電子メールにアクセスするだけです。
電子メールをバックアップするスクリプト (スクレーパーなど) はありますか?

このようなスクリプトを記述するにはどうすればよいですか? OWA API はありますか?

グーグルでいろいろ検索しましたが、どのソリューションもまず OWA を Exchange や Outlook、その他のメール クライアントに同期してからバックアップします。私にはそんな余裕はありません。

私は Python をインストールしているので、Python で書かれたシンプルな電子メール クライアント スクリプトも、何らかの方法でログインして OWA から電子メールを読み取るように構成できれば役立ちます。

ありがとう !

答え1

Holovaty の weboutlook パッケージを調べることもできます。私は試していませんが、ここにあります:https://code.google.com/p/weboutlook/source/browse/trunk/weboutlook/scraper.py?r=2

"""
Microsoft Outlook Web Access scraper

Retrieves full, raw e-mails from Microsoft Outlook Web Access by
screen scraping. Can do the following:

* Log into a Microsoft Outlook Web Access account with a given username
  and password.
* Retrieve all e-mail IDs from the first page of your Inbox.
* Retrieve the full, raw source of the e-mail with a given ID.
* Delete an e-mail with a given ID (technically, move it to the "Deleted
  Items" folder).

The main class you use is OutlookWebScraper. See the docstrings in the code
and the "sample usage" section below.

This module does no caching. Each time you retrieve something, it does a fresh
HTTP request. It does cache your session, though, so that you only have to log
in once.
"""

関連情報