~ubuntu-branches/ubuntu/utopic/dogtail/utopic

« back to all changes in this revision

Viewing changes to examples/evolution-test-configuring-exchange.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-12-21 13:33:47 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20061221133347-xo9jg11afp5plcka
Tags: upstream-0.6.1
ImportĀ upstreamĀ versionĀ 0.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# Dogtail demo script
3
 
__author__ = 'David Malcolm <dmalcolm@redhat.com>'
4
 
 
5
 
 
6
 
# Test configuring an account with the Exchange connector
7
 
#
8
 
# Assumes evolution is configured and is running
9
 
 
10
 
from dogtail.apps.wrappers.evolution import *
11
 
 
12
 
account = ExchangeAccount(fullName="John Doe",
13
 
                          emailAddress="jdoe@example.com",
14
 
                          windowsUsername=r'EXAMPLE\jdoe',
15
 
                          server='192.168.0.1',
16
 
                          urlForOWA='http://192.168.0.1',
17
 
                          password="password")
18
 
evo = EvolutionApp()
19
 
evo.createAccount(account, "test Exchange account")