1

Is there any script in python where it is shown how to access zimbra webmail. My goal is to login and see if there is new email and if it exists then download textual content to text file in local directory and save it.

Thanx in advance

user1406647
  • 489
  • 1
  • 5
  • 17

1 Answers1

0

As it happens, I'm the maintainer of the Python zimbra library, that aids a developer to access the Zimbra-SOAP-API.

You should be able to get the current release candidate by running pip or easy_install.

For your purpose, I would recommend calling the GetMsgRequest-method

dploeger
  • 97
  • 1
  • 8
  • my problem is that i am not administrator, i want to connect as client or through web browser – user1406647 Oct 26 '14 at 18:15
  • That's no problem. You don't need to be an administrator to use python-zimbra. You can also use your normal username/password. – dploeger Oct 27 '14 at 10:08
  • is python zimbra installed on server side or i install it on my computer? – user1406647 Oct 28 '14 at 04:58
  • Zimbra can be installed on either your client or the server. In both cases you simply need the URL to the SOAP-Service of Zimbra, which usually is https:///service/soap – Dennis Plöger Oct 28 '14 at 14:02