Existe uma maneira de fazer backup de e-mails do OWA

2

Estou usando o OWA no IE8 e não tenho nenhum cliente de email como o Outlook instalado. Nós apenas acessamos o e-mail no navegador usando o OWA.
Existe um script (talvez um scraper) que faça o backup dos emails?

Como faço para escrever um script desse tipo? Existe uma API do OWA?

Eu pesquisei muito no Google, mas cada solução primeiro sincroniza o OWA para trocar ou o Outlook ou algum outro cliente de email e, em seguida, faz o backup. Eu não tenho esse luxo.

Eu tenho python instalado, portanto, um simples script de cliente de e-mail escrito em python também pode ser útil, se puder ser configurado para logar e-mails do OWA.

Obrigado!

    
por Kang 05.06.2012 / 10:22

1 resposta

1

Você pode pesquisar o pacote do weboutlook da Holovaty. Eu não tentei, mas aqui está: link

"""
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.
"""
    
por 30.01.2015 / 08:58