1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
|
<chapter id="usage-exchange">
<title>The Ximian Connector for Microsoft Exchange</title>
<para>
The Ximian Connector for Microsoft Exchange allows Ximian
Evolution clients to access accounts on Microsoft Exchange 2000
servers. It is available through Ximian Red Carpet in its own
channel, but cannot be used without a license file. The license
file may be purchased from the Ximian online store at <ulink
url="http://store.ximian.com">store.ximian.com</ulink>. Unlike the
regular Ximian Evolution client, the Ximian Connector for
Microsoft Exchange is proprietary software and source code is not
available.
</para>
<warning id="licensing">
<title>Requirements</title>
<para>
Ximian Connector works only with Exchange 2000, and requires
that Outlook Web Access be enabled. Each user will need a
valid Microsoft Exchange 2000 server account, including license.
</para>
</warning>
<sect1 id="new-in-connector">
<title>What's New in Connector &appversion;</title>
<para>
Ximian Connector &appversion; has added the <guilabel>Out of
Office</guilabel> feature and an automatic configuration tool for
large Exchange deployments.
</para>
<para>
Previous versions of Ximian Connector for Microsoft Exchange added
support for the <guibutton>Flag for Followup</guibutton> feature,
public folders, delegation, direct booking, and more. For
information on setting up delegation, see <xref
linkend="exchange-delegate" />.
</para>
</sect1>
<sect1 id="features">
<title>Connector Features</title>
<para>
In addition to the features listed above, <application>Ximian
Connector</application> supports the following basic
<application>Microsoft Exchange</application> features:
<itemizedlist>
<listitem>
<para>
General
</para>
<variablelist>
<varlistentry>
<term>Remote <application>Exchange</application> Information Store</term>
<listitem>
<para>
Allows you to access mail, address book (including
Global Address List folder), and calendars, and task
folders on an Exchange 2000 server from Evolution.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Palm synchronization</term>
<listitem>
<para>
Supported for Contacts and Calendars on Exchange.
</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
<listitem>
<para>
Mail
</para>
<variablelist>
<varlistentry>
<term>Viewing Mail in Exchange Folder</term>
<listitem>
<para></para>
</listitem>
</varlistentry>
<varlistentry>
<term>Sending Email via Exchange Protocols</term>
<listitem>
<para>
You may use the Microsoft Exchange mail transport
protocol to send email. Make sure that the address
you have entered as your email address is exactly
the one that the Exchange server has on file. This
may be "yourname@exchange-server.ximian.com" rather
than "yourname@ximian.com."
</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
<listitem>
<para>
Calendar
</para>
<variablelist>
<varlistentry>
<term>Meeting Request/Proposal</term>
<listitem>
<para>
Allows Evolution users to
schedule meetings and view attendee availability for
other users (Evolution or
Outlook users) on
Exchange.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Adding iCalendar Meeting Requests to Calendar</term>
<listitem>
<para>
If you receive an iCalendar meeting request and add it
to your calendar, it will be saved to your
Exchange calendar.
</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
<listitem>
<para>
Contacts
</para>
<variablelist>
<varlistentry>
<term>Address Completion</term>
<listitem>
<para>
Supported for your Exchange
Contacts folder. Not yet supported for the Global
Address List.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Adding VCards to Address Book</term>
<listitem>
<para>
If you receive a VCard attachment and click
<guibutton>Save in Address Book</guibutton>, it will
be saved to your Exchange address book.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>New Address Book entries can be created on
Exchange from received email
messages with a single click</term>
<listitem>
<para>
</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
</itemizedlist>
</para>
<para>
There are, however, some features which are not available:
<itemizedlist>
<listitem>
<para>
Work Offline (disconnected mode).
</para>
</listitem>
<listitem>
<para>
"Recall Message" function.
</para>
</listitem>
</itemizedlist>
</para>
</sect1>
<sect1 id="install">
<title>Installing the Connector</title>
<para>
To install the Ximian Connector, run Ximian Red Carpet by
selecting <menuchoice><guimenu>System</guimenu><guimenuitem>Get
Software</guimenuitem></menuchoice>. Subscribe to the Ximian
Connector for Microsoft Exchange channel, select the Ximian
Connector for Microsoft
Exchange2000, and click the
<guibutton>Install</guibutton> button. You can also install
the Connector by downloading the individual packages from
ftp.ximian.com if you wish.
</para>
<para>
Once you have installed the software, you will also need to
install a license file. The license file is the verification
that you have paid for a license to use the Ximian
Connector. You can get the license file from the the Ximian
online store at <ulink
url="http://store.ximian.com">store.ximian.com</ulink>. You
will need a browser with strong (128-bit or greater) encryption
to access the store. When you purchase a Ximian Connector
license, the store will mail you the license file with
instructions for installation. Once installed, the license file
unlocks the Ximian Connector functionality and you may connect
to an Exchange server.
</para>
</sect1>
<sect1 id="exchange-configure">
<title>Adding your Exchange Account in Ximian Evolution</title>
<para>
Once you have installed the Connector, you need to set up access
for your Exchange account on both the
Exchange server and within Evolution.
</para>
<sect2 id="config-server">
<title>Exchange Server Settings</title>
<para>
Check with your system administrator to ensure that:
<itemizedlist>
<listitem>
<para>
You have a valid account on the Exchange server.
</para>
</listitem>
<listitem>
<para> You are permitted to access the account with
WebDAV. This is the default setting for the
Exchange server, so unless
your system administrator has specifically turned it
off, no changes should be necessary.
</para>
</listitem>
</itemizedlist>
</para>
<para>
The Ximian website knowledge base, at <ulink type="http"
url="http://support.ximian.com">support.ximian.com</ulink>,
has additional information about checking to make sure that
your Exchange server will accept
connections from Ximian Evolution.
</para>
</sect2>
<sect2 id="config-client">
<title>Standard Configuration Tool for Ximian Connector</title>
<para>
Once you know that your server is ready for you to connect,
you are ready to add your Exchange account to Ximian Connector.
</para>
<sect3 id="config-easy">
<title>Simple Configuration Tool for Ximian Connector</title>
<para>
Ximian Connector 1.4 comes with a simple account creation tool
for some installations. Other installations will require
the standard account tool described in <xref
linkend="config-client" /> below.
</para>
<para>
The simple assistant works in the following cases:
<itemizedlist>
<listitem>
<para>
If you receive your license key in Ximian Evolution, the
simple assistant will start when you click the
license file attachment and choose <guibutton>Open in
Ximian Connector</guibutton>.
</para>
</listitem>
<listitem>
<para>
If you have no accounts configured, and your system
administrator has preinstalled a license key file,
the simple assistant will start when you start Ximian
Evolution. It asks only for the name of your Outlook
Web Access server, and your username and password. Ximian
Connector will determine the remaining information on its own.
</para>
</listitem>
</itemizedlist>
</para>
<para>
If the simple account tool does not run automatically, create
an account as described below.
</para>
</sect3>
<sect3 id="config-exchange-new-account">
<title>Creating a New Exchange Account</title>
<para>
If you would like to create a new account for your Exchange
server, select <menuchoice>
<guimenu>Tools</guimenu>
<guimenuitem>Mail Settings</guimenuitem>
</menuchoice>
from any mail view. Then click the <guibutton>Add</guibutton>
button in the accounts list. The account creation assistant
will guide you through the process, which is also described in
<xref linkend="usage-mainwindow-starting"/>. If you're not
sure about any of the information you need, just ask your
system administrator.
</para>
<note id="license-file-issues">
<title>Installing the License File</title>
<para>
Your purchase email will contain instructions for installing
the license file: it may be opened with Ximian Evolution and
installed automatically that way, or placed in the
<systemitem>evolution</systemitem> directory in your home
directory.
</para>
<para>
Be aware that the <systemitem>evolution</systemitem> directory in
your home directory won't exist if you haven't already run
Ximian Evolution. If you have not
done so already, start Ximian
Evolution and configure an account as described
below. Then, quit the application and place the
<systemitem>connector-key.txt</systemitem> file in your
<systemitem>evolution</systemitem> directory. When you start
Evolution again, the license will
be verified and Ximian Connector will work properly.
</para>
</note>
<variablelist>
<varlistentry>
<term>Identity</term>
<listitem>
<para>Enter your name and email address. If you wish,
you may add your organization and the location of your
signature file. Only your name and email address are
required.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Receiving Mail</term>
<listitem>
<para>
In this step, you'll enter information about the way
you check mail:
<orderedlist>
<listitem>
<para>
First, select <guilabel>Microsoft
Exchange</guilabel> as your server type.
</para>
</listitem>
<listitem>
<para>
Enter the name of your Exchange email server, and
the user name you would use to log in to a
Windows workstation in your organization.
</para>
</listitem>
<listitem>
<para>
If you wish, select the box labeled
<guilabel>Use secure connection
(SSL)</guilabel>, to take advantage of a more
secure connection method. This may allow you to
connect to the server from outside your
firewall.
</para>
</listitem>
<listitem>
<para>
Select the kind of authentication your network
uses. You can click the <guibutton>Check for Supported
Types</guibutton> button to see which kinds will work.
</para>
</listitem>
<listitem>
<para>
If you would like Evolution to
remember your password, check the box labeled
<guilabel>Remember this password</guilabel>.
</para>
</listitem>
</orderedlist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Receiving Mail, Step Two</term>
<listitem>
<para>There are a few additional options in this step:
<orderedlist>
<listitem>
<para>
Checking for New Mail: If you would like to
check for new mail automatically, click the
checkbox and enter an interval in minutes.
</para>
</listitem>
<listitem>
<para>
Global Address List/Active Directory: Enter the
name of your global catalog server (directory
server). This will allow you to use the Global
Address List (GAL). Normally,
Evolution will fetch
a maximum of 500 responses to any query, but you
may increase or decrease this number if you
wish. A lower number decreases load on the
server, and many servers will refuse to return
more than 1000 results, no matter how many you
ask for.
<note id="why-you-need-gal">
<title>The Global Catalog Server</title>
<para>
The Global Catalog server provides you with
access access to the Global Address List,
free/busy information, and folder delegation
features. These may not work properly if you do
not have a Global Catalog server.
</para>
</note>
</para>
</listitem>
<listitem>
<para>
Exchange Server: There are two options here:
<itemizedlist>
<listitem>
<para>
Exchange mailbox name: Enter your exchange
mailbox name. The suggested value is
probably correct.
</para>
</listitem>
<listitem>
<para>
Outlook Web Access (OWA) Path: In most cases,
the URL for Outlook Web Access is
"http://server.company.com/exchange." If your
system has a URL that does not end in
"/exchange," enter the custom path here.
</para>
</listitem>
<listitem>
<para>
Public Folder Server: Enter the name of
your public folder server here.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
Apply filters to new messages in Inbox on this
server: Check this box to filter messages in
this account.
</para>
</listitem>
</orderedlist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Sending Mail</term>
<listitem>
<para>Select <guilabel>Microsoft Exchange</guilabel> as
your email sending method. There is nothing else to do
in this step.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Account Management</term>
<listitem>
<para>Enter a name that you will use to remember this
account. "Exchange Account" is a good suggestion. Note
that you cannot have two accounts with the same name.
If you'd like to make this your default account for
sending email, check the <guilabel>Make this my default
account</guilabel> box.</para>
</listitem>
</varlistentry>
</variablelist>
<para>
You're done. Click <guibutton>Finish</guibutton> and
<guibutton>OK</guibutton>, then quit
Evolution and start it again. Now
you're ready to get to work on the Exchange server.
</para>
</sect3>
<sect3 id="config-exchange-existing-account">
<title>Changing an Existing Account to Work with Exchange</title>
<para>
If you have an existing email account, and want to convert it
to use for Exchange, select the account you want to convert
and click the <guibutton>Edit</guibutton> button. You'll want
to change settings in the following tabs of the account
dialog:
</para>
<figure>
<title>Exchange Account Settings: Identity</title>
<screenshot>
<screeninfo>Creating an Exchange Account, Step One: Identity</screeninfo>
<mediaobject><imageobject>
<imagedata format="PNG" fileref="figures/exchange-identity" srccredit="Aaron Weber"/>
</imageobject></mediaobject>
</screenshot>
</figure>
<variablelist>
<varlistentry>
<term>Identity</term>
<listitem>
<para>
If your email address will change because you are moving
to a new server, then change it in this tab. Otherwise,
move to the next tab.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Receiving Mail</term>
<listitem>
<para>
Select <guilabel>Microsoft Exchange</guilabel> as your
server type. Enter your name of your server next to
<guilabel>Host</guilabel>, and the user name for your
account next to <guilabel>Username</guilabel>. If your
server supports SSL (Secure Socket Layer) encryption, it
you can check the <guilabel>Use SSL</guilabel> box to
take advantage of more secure data transfers.
<figure>
<title>Exchange Account Settings: Receiving Mail</title>
<screenshot>
<screeninfo>Creating an Exchange Account, Step Two: Receiving Mail</screeninfo>
<mediaobject><imageobject>
<imagedata format="PNG" fileref="figures/exchange-receive" srccredit="Aaron Weber"/>
</imageobject></mediaobject>
</screenshot>
</figure>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Receiving Options</term>
<listitem>
<para>
Here, you'll find some additional settings:
<variablelist>
<varlistentry>
<term>Checking for New Mail</term>
<listitem>
<para>
Select whether you would like to check for
mail automatically, and if so, how often.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Global Address List/Active Directory</term>
<listitem>
<para>
The Global Address List (GAL) is an
addressbook for everyone represented in
your organization's Exchange deployment. To
use the GAL, click the tab labeled
<guilabel>Receiving Options</guilabel> and
enter the name of your Global Catalog
Server. The GAL is maintained by your
system administrator and you cannot add,
change, or remove items from it using
Ximian Evolution. However, you can use it
to invite people to meetings and to look up
addresses and other information.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Exchange Server</term>
<listitem>
<para>
If your Exchange server requires you to use a
different mailbox name from the name you use to
log in, select the second check-box and enter
the mailbox name. Check with your system
administrator to be sure.
</para>
<para>
In most cases, the URL for web access is
"http://server.company.com/exchange." If your
system has a path that is not "exchange," check
the box and enter the custom path here.
</para>
<para>
If your network uses a different server
for Public Folders than for personal
folders, enter its name here.
</para>
</listitem>
</varlistentry>
</variablelist>
<figure>
<title>Exchange Account Settings: Receiving Mail</title>
<screenshot>
<screeninfo>Creating an Exchange Account, Step Three: Mail Options</screeninfo>
<mediaobject><imageobject>
<imagedata format="PNG" fileref="figures/exchange-receive-options" srccredit="Aaron Weber"/>
</imageobject></mediaobject>
</screenshot>
</figure>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Sending Mail</term>
<listitem>
<para>
If you will use your Exchange server to send as well as
receive mail, select <guilabel>Microsoft
Exchange</guilabel> as your server type, and enter the
server name as the <guilabel>Host</guilabel>.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Once you have made those changes, click the
<guibutton>OK</guibutton> button.
</para>
<para>
Then, quit Evolution and start it
up again. Changes to the Ximian Connector accounts
configuration are not active until you have restarted the
application.
</para>
</sect3>
</sect2>
</sect1>
<sect1 id="access">
<title>Accessing the Exchange Server</title>
<para>
Like IMAP and LDAP data, information for
Exchange accounts is stored on the
server, not on your desktop computer. This means that you can
access it from multiple locations. It also means that your
Microsoft Exchange account information
is in a separate folder tree from the <guilabel>Local</guilabel>
tree in your folder bar. You'll see it below the local tree,
with the name you gave the account. If you have multiple
accounts, you will have multiple folder trees.
</para>
<para>
Click on any of the folder tree items to visit them; you may
have to enter your server password. You can now create contact
cards, send and receive email as you would normally. If there
are items in your local calendar or addressbook that you'd like
to add to your Exchange stores, you
can copy and paste them over, or just drag items from one folder
to another as you would with two local stores.
</para>
<note id="save-to-local-or-exchange">
<title>Saving Attached Addresses and Appointments</title>
<para>
If you are using both an Exchange account and a local mail
account, you should be aware that whenever you save an email
address or appointment from an email message, it will be
saved in your Exchange contacts list or calendar, rather
than in your local account. The same is true of
synchronization with Palm-OS devices: tasks, appointments,
and addresses from your Palm-OS device will be synchronized
with those in the Exchange folders rather than local
folders.
</para>
</note>
<tip id="gal-empty">
<title>The Global Address List Appears Empty At First</title>
<para>
To avoid unnecessary strain on the server, the GAL will
appear empty until you have searched for something in it.
If you want to display all the cards in the list, click in
the search box and press <keycap>Enter</keycap>. This
enters a blank search: since every card contains a blank in
it, every card will appear.
</para>
</tip>
</sect1>
<sect1 id="exchange-settings">
<title>Special Connector Only Settings</title>
<para>
There are two items in the Evolution preferences window that
are available only with Ximian Connector. The first is
delegation and permissions handling, and the second is the
creation of "Out of Office" messages.
</para>
<sect2 id="exchange-delegate">
<title>Access Delegation</title>
<para>
You can allow other people in your organization's Global
Address List to access your calendar, address
book, and messages, and they can let you manage theirs.
Delegation allows people to do anything from check on each
other's schedules to completely manage their personal
information.
</para>
<sect3 id="exchange-delegate-to-others">
<title>Delegating Access to Others</title>
<para>
To add someone to your list of delegates, click the
<guibutton>Add</guibutton> button and select them from the
Global Address List. When delegating you can grant different
levels of access to different types of data. You may also
decide whether the access you grant applies to items marked
<guilabel>Private</guilabel>, or only to public items.
</para>
<figure>
<title>Exchange Account Delegation</title>
<screenshot>
<screeninfo>Exchange Account Delegation Settings</screeninfo>
<mediaobject><imageobject>
<imagedata format="PNG" fileref="figures/exchange-delegation" srccredit="Aaron Weber"/>
</imageobject></mediaobject>
</screenshot>
</figure>
<para>
For each of the four types of folder, you may select one of
the following levels of access:
<variablelist>
<varlistentry>
<term>None</term>
<listitem>
<para>
Do not allow this person to access any folders of
this type.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Reviewer (read-only)</term>
<listitem>
<para>
Allow the person to see items in this type of
folder, but not create new items or edit existing
items.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Author (read, create)</term>
<listitem>
<para>
The delegate may view items in your folders, and may
create new items, but may not change any existing items.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Editor (read, create, edit)</term>
<listitem>
<para>
The delegate may view, create, and change items in
your folders.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</sect3>
<sect3 id="exchange-delegated-to-you">
<title>Acting as a Delegate for Others</title>
<para>
To see the list of people who have granted you access to
their folders, click the <guilabel>Acting as a
Delegate</guilabel> tab in the Exchange Delegation settings
window. If you plan to send email on behalf of someone,
click the checkbox next to their name, and an email identity
will be created. You can then select that identity in the
<guilabel>From</guilabel> list in your message composer.
</para>
<para>
To access the folders delegated to you, do the following:
<orderedlist>
<listitem>
<para>
Select
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Open Other User's Folder</guimenuitem>
</menuchoice>
</para>
</listitem>
<listitem>
<para>
Enter the email address of the user who
has delegated to you or click the
<guibutton>User</guibutton> button to select them from your
addressbook.
</para>
</listitem>
<listitem>
<para>
Select the folder you wish to open.
</para>
</listitem>
<listitem>
<para>
Click OK.
</para>
</listitem>
</orderedlist>
</para>
<para>
Folders delegated to you appear in your folder list inside a
folder labeled with the name of their owner. For example, if
Martha Thompson delegates folders to you, you will see a
folder called <guilabel>Martha Thompson's Folders</guilabel>
in the folder tree at the same level as your <guilabel>Personal
Folders</guilabel> and <guilabel>Public
Folders</guilabel>.
</para>
<note id="error">
<title>Error Messages</title>
<para>
If the folder fails to open properly, check with the
folder owner that you have been granted the correct access
permissions.
</para>
</note>
</sect3>
</sect2>
<sect2 id="exchange-out-of-office">
<title>Setting an Out of Office Message</title>
<para>
An <guilabel>Out of Office</guilabel> message is
an automatic reply that you can send to emails, explaining why
you aren't going to respond to their message. For example, if
you go on vacation for a week and will be away from email, you
can set an automatic reply so that people who write to you know
that you aren't ignoring them.
</para>
<para>
To create an <guilabel>Out of Office</guilabel> message,
select <menuchoice> <guimenu>Tools</guimenu>
<guimenuitem>Settings</guimenuitem>
</menuchoice> and then click the <guibutton>Out of
Office</guibutton> button.
</para>
<para>
Then, click <guilabel>I am currently
out of the office.</guilabel>. Then, enter a short message in
the text entry box. Click <guilabel>OK</guilabel>.
</para>
<para>
Your message will be sent automatically to
anyone who sends you mail until you return and click
<guilabel>I am currently in the office</guilabel>.
</para>
</sect2>
</sect1>
<sect1 id="full-advantage">
<title>Scheduling Appointments with Free/Busy</title>
<para>
When you schedule a meeting with your calendar on the
Exchange server, you can check when
other local Exchange users are busy according to their
Exchange calendars. To do so:
</para>
<figure>
<title>Scheduling With Free/Busy Information</title>
<screenshot>
<screeninfo>Using the Free/Busy Feature</screeninfo>
<mediaobject><imageobject>
<imagedata format="PNG" fileref="figures/schedule" srccredit="Aaron Weber"/>
</imageobject></mediaobject>
</screenshot>
</figure>
<note id="reminders-in-exchange">
<title>Reminders In Exchange</title>
<para>
Reminders for appointments in your Exchange calendar will
not work until you have run Evolution at least once after
logging in. This is different from locally stored reminders,
which will work from the moment you log in, regardless of
whether you have run Evolution in the session.
</para>
</note>
<orderedlist numeration="arabic">
<listitem>
<para>
Open a new appointment in the calendar.
</para>
</listitem>
<listitem>
<para> Choose <menuchoice> <guimenu>Actions</guimenu>
<guimenuitem>Schedule Meeting</guimenuitem>
</menuchoice> in the meeting editor window.
</para>
</listitem>
<listitem>
<para> Add attendees, either by entering their email
addresses into the list, or by clicking the
<guibutton>Invite Others</guibutton> button. If you choose
to so, it's best to use the Global Address List (GAL).
Choose the GAL from the drop-down list of address sources
at the top of the dialog box.
</para>
</listitem>
<listitem>
<para>
Choose <guilabel>Options</guilabel> and then
<guilabel>Update Free/Busy</guilabel> to check participant
schedules and, if possible, update the meeting in all
participants' calendars.
</para>
</listitem>
</orderedlist>
<tip id="autopick">
<title>Using Autopick to Adjust Meeting Times</title>
<para>
If meeting attendees are not available during the times you
have scheduled a meeting, you can "nudge" the meeting forward
or backward to the nearest available time. To do so, just
click the arrows to the left or right of the
<guilabel>Autopick</guilabel> button. The Autopick tool will
move the meeting to the nearest time during which all
attendees are available. If you aren't satisfied with those
results, you can drag the edges of the meeting time to the
hours that you want to select.
</para>
</tip>
</sect1>
</chapter>
|