Ensim WEBppliance TM Pro for Windows 2000 Mail Server API

Size: px
Start display at page:

Download "Ensim WEBppliance TM Pro for Windows 2000 Mail Server API"

Transcription

1 Ensim WEBppliance TM Pro for Windows 2000 Mail Server API September 17, 2003 Introduction Ensim WEBppliance TM Pro for Windows 2000 defines a fixed set of -related tasks that you can perform using the control panel at each level of administration. Each task maps to one or more mail server backend API (application programming interface) calls. WEBppliance Pro for Windows 2000 calls the API at appropriate times. Each API should be implemented as a VBScript (Visual Basic Scripting Edition). Each script has the following semantics: APIcommand.vbs <parameter1_value> <parameter2_value>... where APIcommand.vbs is the name of the script that implements the API call, <parameter1_value> is the value of the first parameter for the script, <parameter2_value> is the value of the second parameter for the script, and so on. Note: Any additional capabilities provided by your mail server are independent and will not be reflected in the WEBppliance Pro for Windows 2000 control panel. Ensim offers two API calls to help you integrate your mail server into the existing WEBppliance Pro for Windows 2000 setup: Mail Server API and Registration API. Mail Server API. This is a backend API used by WEBppliance Pro for Windows 2000 to carry out various actions on the underlying mail server. This API is called whenever you perform any action on the mail server through the WEBppliance Pro for Windows 2000 control panel. Registration API. This API is used by you to register your mail server add-on with WEBppliance Pro for Windows As part of the registration process, the mail server backend API that you provide gets plugged into WEBppliance Pro for Windows ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 1

2 This document defines the semantics of all the API calls. Topics in this document include: Before you start on page 2 Mail Server API calls on page 2 Registration API calls on page 24 Feedback and support on page 25 Legal and copyright notice on page 25 Before you start Before you start integrating the API calls, you may find it helpful to review the following list of rules. You must provide implementation for all the APIs described in this document. The server backend API calls use a script written in the Visual Basic Scripting Edition (VBScript). This script returns 0 on success and 1 on failure. Based on the result code, the output of the script is interpreted by WEBppliance Pro for Windows 2000 either as an output from the command or the error returned by the backend call. Each backend API implementation performs an input parameter validation and fails the call if any invalid parameters are passed to it. If you want to write the mail server backend API call in a programming language of your choice and not as VBScript, you can write placeholder VBScripts that just call down to the API. If certain functionality exposed by the WEBppliance Pro for Windows 2000 control panel is not supported by your mail server, you should provide a placeholder implementation for the API and fail the API call by returning 1 and printing the appropriate error message: This functionality is not provided by <xxx> mail server. Mail Server API calls The APIs in this section include: Add mail domain on page 4 Edit mail domain on page 4 Suspend mail domain on page 5 Resume mail domain on page 5 Delete mail domain on page 6 Get mail domain list on page 6 Add mail domain alias on page 7 ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 2

3 Delete mail domain alias on page 7 Get mail domain alias list on page 8 Add mail domain user on page 8 Edit mail domain user on page 9 Delete mail domain user on page 10 Get mail domain user list on page 10 Get mail domain user information on page 11 Authenticate mail domain user on page 12 Add mail domain user alias on page 12 Delete mail domain user alias on page 12 Get mail domain user alias list on page 13 Add mail domain user forward on page 14 Delete mail domain user forward on page 14 Get mail domain user forward list on page 15 Set up autoresponder for mail domain user on page 16 Get autoresponder record for mail domain user on page 16 Delete autoresponder record for mail domain user on page 17 Add spam filter for mail domain on page 17 Delete spam filter for mail domain on page 18 Get spam filter list on page 19 Get Web interface URL on page 19 Set Web interface URL on page 20 Delete Web interface URL on page 20 Start mail server on page 20 Stop mail server on page 21 Get mail server status on page 21 Check presence of mail server on page 21 Configure mail server on page 22 Back up mail server on page 22 Change domain IP address on page 23 Change network settings on page 23 ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 3

4 Add mail domain EAddDomain.vbs IpAddress - IP address for the mail domain. MailBoxDirectory - Full path to the directory where the mails for this mail domain should be stored. MaxMailBoxes - Maximum number of mail boxes allowed for this mail domain. MailDomainOwner - Owner of this mail domain. This user is same as the site administrator. MailDomainOwnerPassword - Plain text password for the owner of the mail domain specified by MailDomainOwner parameter. The API will add the mail domain, add the user specified by MailDomainOwner on the domain, and set the catchrest alias for the domain to point to this user. Edit mail domain EEditDomain.vbs MaxMailBoxes - Maximum number of mail boxes allowed for this mail domain. The API will verify whether the existing number of users on the mail domain is already above MaxMailBoxes. In such cases, the API will fail the call with the appropriate error message. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 4

5 Suspend mail domain ESuspendDomain.vbs If your mail server does not support suspending a mail domain, the API will provide a placeholder implementation. The placeholder implementation will simply return a success. Resume mail domain EResumeDomain.vbs If your mail server does not support suspending and resuming a mail domain, the API will provide a placeholder implementation. The placeholder implementation will simply return a success. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 5

6 Delete mail domain EDeleteDomain.vbs The API will delete all the information associated with the mail domain including its users, domain aliases, user forwards, and aliases. Note: WEBppliance Pro for Windows 2000 will not make any additional backend calls to clean the delete process. Get mail domain list EGetDomainList.vbs None The API will print a line per mail domain on the standard output. Each line will display five fields separated by spaces ( ) name of the mail domain, IP address of the mail domain, path of the directory where the messages are stored, maximum number of mailboxes, and number of users/mailboxes hosted on the mail domain. Example: foo.com c:\webppliance\conf\domains\foo\mail 20 5 ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 6

7 Add mail domain alias EAddDomainAlias.vbs DomainAlias - Name of the domain alias. The API will add a new mail domain alias. Note: WEBppliance Pro for Windows 2000 does not expect the API to add the necessary DNS records. You can choose to add the necessary DNS records on your own. Delete mail domain alias EDeleteDomainAlias.vbs DomainAlias - Name of the domain alias. The API will delete the specified mail domain alias. Note: WEBppliance Pro for Windows 2000 does not expect the API to remove the necessary DNS records. You can choose to remove the necessary DNS records on your own. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 7

8 Get mail domain alias list EGetDomainAliasList.vbs The API will print all domain aliases for mail domain specified by DomainName on standard output. Each domain alias name will be printed on a separate line. Add mail domain user EAddUser.vbs UserName - Name of the mail domain user. Password - Plain text password for the mail domain user. FirstName - First name of the user. MiddleName - Middle name of the user. LastName - Last name of the user. The API will add all the information associated with the mail domain user. Note: If your mail server stores the mail user display name as a single field instead of separate fields for FirstName, MiddleName, LastName, the API will covert these fields to form a single full name and store it on the mail server. Since WEBppliance Pro for Windows 2000 treats the display name as separate fields, the API implementation will return it back as separate fields when WEBppliance Pro for Windows 2000 asks for these fields in other APIs. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 8

9 Edit mail domain user EEditUser.vbs UserName - Name of the mail domain user. Password - Plain text password for the mail domain user. FirstName - First name of the user. MiddleName - Middle name of the user. LastName - Last name of the user. The API will modify all the information associated with the mail domain user. Note: If your mail server stores the mail user display name as a single field instead of separate fields for FirstName, MiddleName, LastName, the API will covert these fields to form a single full name and store it on the mail server. Since WEBppliance Pro for Windows 2000 treats the display name as separate fields, the API implementation will return it back as separate fields when WEBppliance Pro for Windows 2000 asks for these fields in other APIs. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 9

10 Delete mail domain user EDeleteUser.vbs UserName - Name of the mail domain user. The API will delete all the information associated with the mail domain user including aliases, forwards, and autoresponders associated with this user. It will also clean up the mail storage used by this user. Note: WEBppliance Pro for Windows 2000 will not make any additional backend calls to clean this up. Get mail domain user list EGetUserList.vbs The API will print a line per mail domain user on the standard output. Each line will have seven fields separated by colons (:) user name, password, first name, middle name, last name, 1/0 based on whether this user has forwarding set and 1/0 based on whether this user has autoresponders set. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 10

11 Example: There are two users, u1 (John B. Teddy) and u2 (Robert S. Smith) with the password ensim hosted on a mail domain, foo.com. If u1 forwards messages to u2 s address and if u2 has an autoresponder set up, then the output of EGetUserList.vbs foo.com will print the following information: u1:ensim:john:b:teddy:1:0 u2:ensim:robert:s:smith:0:1 Get mail domain user information EGetUserInfo.vbs UserName - Name of the mail domain user. The API will print a line per mail domain user on the standard output. Each line will have six fields separated by colons (:) password, first name, middle name, last name, 1/0 based on whether this user has forwarding set, and 1/0 based on whether this user has autoresponders set. Example: There are two users u1 (John B. Teddy) and u2 (Robert S. Smith) with password ensim hosted on a mail domain, foo.com. If u1 forwards messages to u2 s address and if u2 has an autoresponder set up, then the output of EGetUserInfo.vbs foo.com u1 will print the following information: ensim:john:b:teddy:1:0 And EGetUserInfo.vbs foo.com u2 will print the following information ensim:robert:s:smith:0:1 ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 11

12 Authenticate mail domain user EAuthenticateUser.vbs UserName - Name of the mail domain user Password - Plain text password for the mail domain user. The API will print 1 on standard output if the passwords match, else it will print 0. Add mail domain user alias EAddUserAlias.vbs UserName - Name of the mail domain user. UserAlias - User alias for UserName. The API will add the specified alias and ensure that there are no users hosted on DomainName with the same alias (as specified by UserAlias). Delete mail domain user alias EDeleteUserAlias.vbs UserName - Name of the mail domain user. UserAlias - User alias for the mail domain user. The API will delete the specified alias. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 12

13 Get mail domain user alias list EGetUserAliasList.vbs DomainName - Name of the mail domain The API will print a line for each mail user hosted on DomainName. Each line will contain two fields separated by a space ( ) UserName and comma separated list of user aliases for the UserName. Note: If certain user on the mail domain does not have any user aliases, it will only print the UserName. Example: There are two users, u1 and u2 hosted on a mail domain foo.com. If u1 has two aliases defined, al1 and al2, then the output of EGetUserAliasList.vbs foo.com will print the following on the standard output u1 al1,al2 u2 ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 13

14 Add mail domain user forward EAddForward.vbs UserName - Name of the mail domain user. UserForward - Forward address for UserName. The API will add the specified forward and ensure that there are no users hosted on DomainName with the same forward (as specified by UserForward). Delete mail domain user forward EDeleteForward.vbs UserName - Name of the mail domain user. UserForward - Forward address for UserName. The API will delete the specified forward. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 14

15 Get mail domain user forward list EGetForwardList.vbs UserName - Name of the mail domain user. The API will print a line for each mail user hosted on DomainName. Each line will contain two fields separated by a space ( ) UserName and comma separated list of forward records for the UserName. Note: If an empty UserName is passed the API, it will print forward records for all the users on the specified DomainName. Otherwise, it will print forward records for the specified UserName. If the specified UserName does not have a forward record, it will only print the UserName. Example: There are two users, u1 and u2, hosted on a mail domain foo.com. If u1 has two forward records defined: u1@alternat .com and u1@mymail.com and u2 has no forward records defined, then the output of EGetForwardList.vbs foo.com should print the following on the standard output u1 u1@alternat .com,u1@mymail.com u2 And the output of EgetForwardList.vbs foo.com u1 should print the following on standard output u1 u1@alternat .com,u1@mymail.com ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 15

16 Set up autoresponder for mail domain user ESetAutoResponder.vbs UserName - Name of the mail domain user. Subject - Subject text for auto-response . Message - Message text for auto-response . The API will set up an autoresponder with the specified text for the mail domain user. Note: If the message contains multiple lines, WEBppliance Pro for Windows 2000 will replace the new line characters with the Alt-255#Alt-255 sequence, that is, á#á before calling the API. The API will covert it back to the original message before carrying out this action on the mail server. This can be achieved in vbscript by using replace(message, á#á, vbcrlf) Get autoresponder record for mail domain user EGetAutoResponder.vbs UserName - Name of the mail domain user. The API will print Subject text and Message text on the standard output. The first line of output is treated as Subject text and rest is treated as Message text. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 16

17 Delete autoresponder record for mail domain user EDeleteAutoResponder.vbs UserName - Name of the mail domain user. The API will delete the all autoresponder records for the specified mail domain user. Add spam filter for mail domain EAddSpamFilter.vbs ballow - Flag to specify whether Allow/Block kind of record needs to be added. SpamFilterType - Type of spam filter. SpamFilter - Spam filter. The API will add a spam filter for the specified mail domain. Note: This API is supported only for IP based sites If ballow = 0, the API will add block type of spam filter If ballow = 1, API will add allow type of spam filter If SpamFilterType=1, the API will add spam filter If SpamFilterType=2, API will add IP spam filter If SpamFilterType=3, API will add SMTP connection spam filter If SpamFilterType=1, then SpamFilter parameter contains the domain name or address. In this case ballow parameter is ignored, that is, spam filters are always for block type of records. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 17

18 If SpamFilterType=2 or 3, then the SpamFilter parameter either contains a single IP address or a range of IP addresses. If a single IP address is specified, then it can contain wildcard characters and the API will expand it. For example, if the IP address is specified as * then the API will map it to a range of IP address to If the range of IP addresses are specified, they cannot contain wild card characters Example: To add a block type of spam filter, tom@banned.com for mail domain foo.com, the script may be called as follows: eaddspamfilter.vbs foo.com 0 1 tom@banned.com To add a block type of IP spam filter to a block range of IP addresses between to for mail domain foo.com, the script may be called as follows. eaddspamfilter.vbs foo.com * or eaddspamfilter.vbs foo.com Delete spam filter for mail domain EDeleteSpamFilter.vbs ballow - Flag to specify whether Allow/Block kind of record needs to be deleted. SpamFilterType - Type of spam filter. SpamFilter - Spam filter. The API will remove the spam filter for the specified mail domain. Note: Refer to the Notes section of Add spam filter for mail domain on page 17. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 18

19 Get spam filter list EGetSpamFilterList.vbs The API will print a line for each spam filter record hosted on the DomainName. Each line will contain three fields separated by spaces ( ) flag specifying whether it is a allow or block record, SpamfilterType, and SpamFilter. Example: There is domain called foo.com for which there is an spam filter for tom@banned.com and an IP spam filter for the range of IP addresses and an IP spam filter for a single IP address The output of this API will look like this: 0 1 tom@banned.com Get Web interface URL EGetMailURL.vbs If your mail server supports a Web based interface, the API will print the Web URL for the specified DomainName on standard output. Otherwise, the API will fail with an exit code of 1. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 19

20 Set Web interface URL ESetMailURL.vbs If your mail server supports a Web based interface, the API will perform all the tasks required to Web enable the specified DomainName. Delete Web interface URL EDelet URL.vbs If your mail server supports a Web based interface, the API will perform all the tasks required to remove the Web interface for the specified DomainName. Start mail server EStartMailServer.vbs None The API will perform the tasks required to start the following mail services: POP, SMTP, and IMAP. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 20

21 Stop mail server EStopMailServer.vbs None The API will perform the tasks required to stop the following mail services: POP, SMTP, and IMAP Get mail server status EGetStatus.vbs None The API will check if the mail services POP, SMTP, and IMAP are running. It will output 1/0 on standard output based on whether the mail services are running or not. Check presence of mail server EIsInstalled.vbs None The API will check if your mail server is installed on the system. It will output 0/1 on standard output based on whether the mail server is installed or not. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 21

22 Configure mail server EConfigur Server.vbs InstallPath - This is the location where all API scripts are installed. For example, if WEBppliance Pro for Windows 2000 is installed in the default location, then InstallPath will be c:\program files\ensim\webppliance\base\services\winmail\mailapi. If the EConfigur Server.vbs needs to call any mail APIs it can use this parameter to find the script path. bregister - Flag to indicate whether mail add-on is getting registered or getting removed. Note: This API is called during the mail add-on registration (bregister=1) and removal (bregister=0) process. This is a hook provided by the registration process and you can use this hook for any purpose. Back up mail server EBackupMailServer.vbs BackupDir - This is the directory where mail server should back up its configuration information. Note: WEBppliance Pro for Windows 2000 calls this API from its daily backup process. This is also called when someone attempts to change the primary IP address of the server through the network configuration utility or by using the changeip.vbs script ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 22

23 Change domain IP address EChangeDomainIP.vbs DomainName - Name of the mail domain IPAddress - New IP address for the mail domain The API changes the IP address of the specified domain to the value specified by IPAddress Change network settings EChangeNetworkSettings.vbs OldIPAddress - Original primary IP address of the server. OldFQDN - Original fully qualified domain name of the server. NewIPAddress - New primary IP address of the server. NewFQDN - New fully qualified domain name of the server. The API will update the mail server with new network settings Note: WEBppliance Pro for Windows 2000 calls this API when you change the primary IP address of the server and then use the network configuration utility provided by WEBppliance Pro for Windows 2000 to configure it for new network settings. The API will completely take care of updating the mail server with new network settings. WEBppliance Pro for Windows 2000 will not touch any mail server configuration. ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 23

24 Registration API calls Note: You must provide the implementation of the mail server backend API for all the APIs described in the previous section and package them as a single.zip file. The API exposed by WEBppliance Pro for Windows 2000 for registration/removal is as follows: Register mail add-on on page 24 Remove mail add-on on page 25 Register mail add-on RegisterMailAddon.vbs MailServerDisplayName - Name of the mail server. VendorName - Name of the vendor. MailServerVersion - Mail server version number. IsStartable - Flag (0/1) indicating whether mail server supports start/stop actions. Zippath - Path to the zip file, containing the implementation for all the APIs described in previous section. The API registers the specified add-on. Note: The RegisterMailAddon script resides in <install_dir>\util\mailaddon, where <install_dir> refers to the path where WEBppliance Pro for Windows 2000 is installed. For example, if WEBppliance Pro for Windows 2000 is installed in c:\program files\ensim\webppliance, then this script resides at c:\programfiles\ensim\webppliance\util\mailaddon\registermailaddon ENSIM WEBPPLIANCE PRO FOR WINDOWS 2000 MAIL SERVER API 24

25 Remove mail add-on UnregisterMailAddon.vbs None. The API removes the specified add-on. Feedback and support To take advantage of Ensim s support services or to find additional product documentation, visit the Ensim support site, To log in to Ensim online support, go to To provide feedback about Ensim products or documentation, please use the feedback form at Legal and copyright notice This document contains information proprietary to Ensim Corporation and its receipt or possession does not convey any rights to reproduce, disclose, manufacture, or sell anything it might describe. Reproduction, disclosure, or use without Ensim s specific written authorization is strictly forbidden. Ensim Corporation makes no representations or warranties with respect to the content or use of this document. It also reserves the right to revise this document at any time without the obligation to notify any person of such revision. Ensim, the Ensim logo, and ServerXchange are registered trademarks of Ensim Corporation. WEBppliance is a trademark of Ensim Corporation. All other trademarks and copyrights are the property of their respective owners Ensim Corporation. All rights reserved. Ensim Corporation 1366 Borregas Avenue Sunnyvale, CA (408) Ensim Corporation. All rights reserved. wwp36_2000_api_0_2

Ensim Pro for Windows 2003 Mail Server API Guide

Ensim Pro for Windows 2003 Mail Server API Guide Ensim Pro 4.0.1 for Windows 2003 Mail Server API Guide February 25, 2005 Introduction Ensim Pro 4.0.1 for Windows 2003 defines a fixed set of email-related tasks that you can perform using the control

More information

Ensim Pro for Windows Mail Server API Guide

Ensim Pro for Windows Mail Server API Guide Ensim Pro for Windows 10.2.0 Mail Server API Guide Published: 13 November 2006 This document contains information proprietary to Ensim Corporation and its receipt or possession does not convey any rights

More information

Ensim Pro for Windows 2003 Mail Server API Guide

Ensim Pro for Windows 2003 Mail Server API Guide Ensim Pro 10.0.0 for Windows 2003 Mail Server API Guide Published: May 8, 2006 2006 Ensim Corporation. All rights reserved. This document contains information proprietary to Ensim Corporation and its receipt

More information

Parallels Pro Control Panel

Parallels Pro Control Panel Parallels Pro Control Panel Legal and Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 2007 Ensim

More information

Ensim ServerXchange Release Notes/Upgrade Guide

Ensim ServerXchange Release Notes/Upgrade Guide Ensim ServerXchange 3.1.5 Release Notes/Upgrade Guide March 19, 2003 Introduction These release notes provide information about Ensim ServerXchange 3.1.5 and instructions for accessing Ensim ServerXchange

More information

Ensim WEBppliance Pro for Windows 2000 (ServerXchange ) Installation Guide

Ensim WEBppliance Pro for Windows 2000 (ServerXchange ) Installation Guide Ensim WEBppliance Pro for Windows 2000 (ServerXchange ) Installation Guide October 8, 2003 About this guide Introduction... iii Intended audience... iii Printer-friendly version (for HTML documents)...

More information

Customized provisioning of Ensim Ignite services

Customized provisioning of Ensim Ignite services Customized provisioning of Ensim Ignite services June 16, 2004 Introduction This document provides instructions for customized provisioning of Ensim Ignite services offered through Ensim Pro and Ensim

More information

Ensim Pro for Windows 2003 Upgrade Guide

Ensim Pro for Windows 2003 Upgrade Guide Ensim Pro 10.2.0 for Windows 2003 Upgrade Guide Published: 5 January 2007 This document contains information proprietary to Ensim Corporation and its receipt or possession does not convey any rights to

More information

Ensim Pro and Ensim Basic for Linux Release Notes

Ensim Pro and Ensim Basic for Linux Release Notes Ensim Pro and Ensim Basic 3.7.1 for Linux Release Notes April 2, 2004 Introduction These release notes provide information about Ensim Pro and Ensim Basic 3.7.1 for Linux. This release upgrades Ensim WEBppliance

More information

Ensim Pro for Windows 2003 Product Specifications

Ensim Pro for Windows 2003 Product Specifications Ensim Pro 10.3.0 for Windows 2003 Product Specifications 4 June 2007 Introduction This document describes the features of Ensim Pro 10.3.0 for Windows 2003. In this document About Ensim Pro...1 Ensim Pro

More information

Ensim Pro and Ensim Basic 4.0 for Linux (Standalone) Upgrade Guide

Ensim Pro and Ensim Basic 4.0 for Linux (Standalone) Upgrade Guide Ensim Pro and Ensim Basic 4.0 for Linux (Standalone) Upgrade Guide June 16, 2004 Introduction This guide provides instructions for upgrading Ensim Pro and Ensim Basic 4.0.0 for Linux (Standalone) running

More information

Ensim Pro for Windows 2003 (Standalone) Installation Guide

Ensim Pro for Windows 2003 (Standalone) Installation Guide Ensim Pro 4.0.1 for Windows 2003 (Standalone) Installation Guide February 25, 2005 About this guide Introduction... iii Intended audience... iii Printer-friendly version (for HTML documents)... iii Required

More information

Ensim Pro for Windows 2003 Installation Guide

Ensim Pro for Windows 2003 Installation Guide Ensim Pro 10.2.0 for Windows 2003 Installation Guide Published: 14 December 2006 This document contains information proprietary to Ensim Corporation and its receipt or possession does not convey any rights

More information

Ensim Pro for Windows 2003 Installation Guide

Ensim Pro for Windows 2003 Installation Guide Ensim Pro 10.3.0 for Windows 2003 Installation Guide Published: 4 June 2007 This document contains information proprietary to Ensim Corporation and its receipt or possession does not convey any rights

More information

WEBppliance for Windows User Administrator's Help

WEBppliance for Windows User Administrator's Help WEBppliance for Windows User Administrator's Help September 23, 2003 Contents About This Document...3 How to use this Help system...4 Getting started...6 What to do first... 6 Viewing your account settings...

More information

Ensim Pro for Windows 2003 Installation and Upgrade Guide

Ensim Pro for Windows 2003 Installation and Upgrade Guide Ensim Pro 10.0.0 for Windows 2003 Installation and Upgrade Guide Published: June 9, 2006 2006 Ensim Corporation. All rights reserved. This document contains information proprietary to Ensim Corporation

More information

Ensim Pro for Windows 2003 Installation and Upgrade Guide

Ensim Pro for Windows 2003 Installation and Upgrade Guide Ensim Pro 5.0.0 for Windows 2003 Installation and Upgrade Guide Published: January 11, 2006 2006 Ensim Corporation. All rights reserved. This document contains information proprietary to Ensim Corporation

More information

Ensim Pro and Ensim Basic for Linux Upgrade Guide

Ensim Pro and Ensim Basic for Linux Upgrade Guide Ensim Pro and Ensim Basic 10.3.0 for Linux Upgrade Guide 25 April 2007 This guide provides instructions for upgrading to Ensim Pro and Ensim Basic 10.3.0 for Linux from Ensim Pro and Ensim Basic version

More information

Ensim ServerXchange Release Notes/Upgrade Guide

Ensim ServerXchange Release Notes/Upgrade Guide Ensim ServerXchange 3.1.4 Release Notes/Upgrade Guide December 2, 2002 This document describes the release features of Ensim ServerXchange 3.1.4 and provides instructions for upgrading from Ensim ServerXchange

More information

Ensim PS Administrator Release Notes

Ensim PS Administrator Release Notes About PS Administrator 3.0 Ensim PS Administrator 3.0.4 Release Notes February 04, 2002 These release notes cover product compatibility, new product features, list of applications included, version differences,

More information

Ensim WEBppliance Pro for Windows 2000 (Upgrade) Technical Reference Guide

Ensim WEBppliance Pro for Windows 2000 (Upgrade) Technical Reference Guide Ensim WEBppliance Pro for Windows 2000 (Upgrade) Technical Reference Guide October 14, 2003 About this guide Introduction... v Intended audience... v Printer-friendly version... v Required skills... vi

More information

Veritas NetBackup OpenStorage Solutions Guide for Disk

Veritas NetBackup OpenStorage Solutions Guide for Disk Veritas NetBackup OpenStorage Solutions Guide for Disk UNIX, Windows, Linux Release 8.0 Veritas NetBackup OpenStorage Solutions Guide for Disk Legal Notice Copyright 2016 Veritas Technologies LLC. All

More information

Using PMDF. to Leverage LDAP Servers

Using PMDF. to Leverage LDAP Servers Process Software November 2002 Using PMDF to Leverage LDAP Servers PMDF can use LDAP in many ways to build and maintain a large-scale secure mail environment. PMDF allows you to leverage your existing

More information

Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving and later

Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving and later Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving 12.1 and later Enterprise Vault : Setting up Exchange Server and Office 365 for SMTP Archiving Last updated: 2018-06-18. Legal

More information

WEBppliance for Linux User Administrator's Help

WEBppliance for Linux User Administrator's Help WEBppliance for Linux User Administrator's Help Contents About This Document... i How to use this Help system... 1 Introduction to WEBppliance... 2 Getting started... 3 What to do first... 3 Viewing your

More information

Parallels Pro Control Panel

Parallels Pro Control Panel Parallels Pro Control Panel Legal and Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 2007 Ensim

More information

SPORTZVAULT USER MANUAL- and Web Statistics

SPORTZVAULT USER MANUAL- and Web Statistics SPORTZVAULT USER MANUAL-Email and Web Statistics SportzVault Email SportzVault Email allows you to set up email accounts using your own domain (eg yourname@yourclub.com). Included are 50 POP accounts which

More information

Parallels Pro Control Panel

Parallels Pro Control Panel Parallels Pro Control Panel Legal and Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 2007 Ensim

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2009, Parallels, Inc.

More information

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 Software Version 4.5 Document Revision 1.0 2017 Covene LLC, All Rights Reserved. Covene, the Covene

More information

Novell. NetWare 6. NETWARE WEBACCESS OVERVIEW AND INSTALLATION

Novell. NetWare 6.   NETWARE WEBACCESS OVERVIEW AND INSTALLATION Novell NetWare 6 www.novell.com NETWARE WEBACCESS OVERVIEW AND INSTALLATION Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,

More information

Configuring Cisco StadiumVision Director for External Triggers

Configuring Cisco StadiumVision Director for External Triggers Configuring Cisco StadiumVision Director for External Triggers First Published: May 29, 2012 Revised: March 8, 2013 This document is intended for Cisco StadiumVision Director administrators who are responsible

More information

Important Information

Important Information May 2014 Important Information The following information applies to Proofpoint Essentials US1 data center only. User Interface Access https://usproofpointessentials.com MX Records mx1-usppe-hosted.com

More information

IceWarp to IceWarp Migration Guide

IceWarp to IceWarp Migration Guide IceWarp Unified Communications IceWarp to IceWarp Migration Guide Version 12.0 IceWarp to IceWarp Migration Guide 2 Contents IceWarp to IceWarp Migration Guide... 4 Used Terminology... 4 Brief Introduction...

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Symantec Enterprise Vault Technical Note

Symantec Enterprise Vault Technical Note Symantec Enterprise Vault Technical Note Migrating Enterprise Vault to 64-bit hardware 9.0 Symantec Enterprise Vault: Migrating Enterprise Vault to 64-bit hardware The software described in this book is

More information

Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving and later

Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving and later Enterprise Vault Setting up Exchange Server and Office 365 for SMTP Archiving 12.1 and later Enterprise Vault : Setting up Exchange Server and Office 365 for SMTP Archiving Last updated: 2018-12-03. Legal

More information

Configuring Cisco StadiumVision Director for External Triggers

Configuring Cisco StadiumVision Director for External Triggers Configuring Cisco StadiumVision Director for External Triggers First Published: May 29, 2012 This document is intended for Cisco StadiumVision Director administrators who are responsible for working with

More information

Geomet Universal CMM Software GeoTracker

Geomet Universal CMM Software GeoTracker Geomet Universal CMM Software GeoTracker Helmel Engineering Products, Inc. 6520 Lockport Road Niagara Falls, NY 14305 (716) 297-8644 (716) 297-9405 fax Information contained within this document is subject

More information

Veritas Enterprise Vault Setting up IMAP 12.1

Veritas Enterprise Vault Setting up IMAP 12.1 Veritas Enterprise Vault Setting up IMAP 12.1 Veritas Enterprise Vault: Setting up IMAP Last updated: 2017-07-28. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas, the

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

Adding your IMAP Mail Account in Outlook 2013 on Windows

Adding your IMAP Mail Account in Outlook 2013 on Windows Adding your IMAP Mail Account in Outlook 2013 on Windows Replace example.co.za with your domain name as it was sent to you by Visualize IT 1. Launch Outlook 2. Select File on the top left menu bar 3. Select

More information

CashDro.exe to integrations by files with CashDro3 and CashDro5

CashDro.exe to integrations by files with CashDro3 and CashDro5 CashDro.exe to integrations by files with CashDro3 and CashDro5 Configuration Manual Copyright This publication, including pictures, illustrations and software, is protected by the international property

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Enabling Email Integration 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris Cluster Server 7.3.1 Generic Application Agent Configuration Guide - AIX, Linux, Solaris Last updated: 2017-11-04 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and

More information

Symantec Ghost Solution Suite Web Console - Getting Started Guide

Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console- Getting Started Guide Documentation version: 3.3 RU1 Legal Notice Copyright 2019 Symantec Corporation.

More information

Integrated Migration Tool

Integrated Migration Tool IceWarp Unified Communications Version 12 Published on 9/20/2017 Contents... 4 How It Works... 5 Performing Migration... 5 Set up the Domain in IceWarp Server... 6 Create Migrator Email Account... 8 Configure

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Setting up IMAP 11.0 Symantec Enterprise Vault: Setting up IMAP The software described in this book is furnished under a license agreement and may be used only in accordance with

More information

Enterprise Vault Setting up IMAP 12.3

Enterprise Vault Setting up IMAP 12.3 Enterprise Vault Setting up IMAP 12.3 Enterprise Vault : Setting up IMAP Last updated: 2018-03-29. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas, the Veritas Logo,

More information

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Last updated: 2018-02-16 Document version:netbackup 8.1.1 Legal

More information

Enterprise Vault.cloud Journaling Guide

Enterprise Vault.cloud Journaling Guide Enterprise Vault.cloud Journaling Guide Enterprise Vault.cloud: Journaling Guide Last updated: 2018-01-30. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas, the Veritas

More information

Veritas Enterprise Vault Setting up SharePoint Server Archiving 12.2

Veritas Enterprise Vault Setting up SharePoint Server Archiving 12.2 Veritas Enterprise Vault Setting up SharePoint Server Archiving 12.2 Veritas Enterprise Vault: Setting up SharePoint Server Archiving Last updated: 2017-08-10. Legal Notice Copyright 2017 Veritas Technologies

More information

Avocent LongView IP HR and Dual-Head Extenders Release Notes, Version November 4, 2011

Avocent LongView IP HR and Dual-Head Extenders Release Notes, Version November 4, 2011 This document outlines: Avocent LongView IP HR and Dual-Head Extenders Release Notes, Version 4.0.0.18 November 4, 2011 1. Upgrading the LongView IP KVM Extender System 2. Share Mode Notes 3. Changes In

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Authentication Service Api Help Guide

Authentication Service Api Help Guide Authentication Service Api Help Guide CionSystems Inc. 6640 185 th Ave NE Redmond, WA-98052, USA http://www.cionsystems.com Phone: +1.425.605.5325 Trademarks CionSystems, CionSystems Inc., the CionSystems

More information

Nokia E61i support

Nokia E61i  support Nokia E61i Nokia E61i Legal Notice Copyright Nokia 2007. All rights reserved. Reproduction, transfer, distribution or storage of part or all of the contents in this document in any form without the prior

More information

V7350 Unified Messaging Suite User Guide

V7350 Unified Messaging Suite User Guide V7350 Unified Messaging Suite User Guide VCX V7000 IP Telephony Solution System Release 5.0 Part Number 900-0195-01 AA Published August 2004 http://www.3com.com/ 3Com Corporation 350 Campus Drive Marlborough,

More information

Enterprise Vault Troubleshooting FSA Reporting. 12 and later

Enterprise Vault Troubleshooting FSA Reporting. 12 and later Enterprise Vault Troubleshooting FSA Reporting 12 and later Enterprise Vault : Troubleshooting FSA Reporting Last updated: 2018-04-17. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved.

More information

Veritas Operations Manager Storage Insight Add-on for Deep Array Discovery and Mapping 4.0 User's Guide

Veritas Operations Manager Storage Insight Add-on for Deep Array Discovery and Mapping 4.0 User's Guide Veritas Operations Manager Storage Insight Add-on for Deep Array Discovery and Mapping 4.0 User's Guide Veritas Operations Manager Storage Insight Add-on for Deep Array Discovery and Mapping The software

More information

User s Guide Version 4.0 August 2010

User s Guide Version 4.0 August 2010 User s Guide Version 4.0 August 2010 Biscom, Inc. 321 Billerica Rd. Chelmsford, MA 01824 tel 978-250-1800 fax 978-250-4449 Copyright 2010 Biscom, Inc. All rights reserved worldwide. Reproduction or translation

More information

Customizing the Right-Click Menu

Customizing the Right-Click Menu Juniper Secure Analytics Customizing the Right-Click Menu Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-03-14 Copyright

More information

Avigilon Control Center 6 System Integration Guide

Avigilon Control Center 6 System Integration Guide Avigilon Control Center 6 System Integration Guide for Paxton Net2 Access Control Systems 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are

More information

Veritas Enterprise Vault. NSF Migration

Veritas Enterprise Vault. NSF Migration Veritas Enterprise Vault NSF Migration 12 Veritas Enterprise Vault: NSF Migration Last updated: 2015-12-03. Legal Notice Copyright 2015 Veritas Technologies LLC. All rights reserved. Veritas, the Veritas

More information

Account Customer Portal Manual

Account Customer Portal Manual Account Customer Portal Manual Table of Contents Introduction Dashboard Section Reporting Section My Settings Section My Account Section Billing Section Help Section 2 4 7 15 20 25 27 1 Introduction SMTP

More information

Polycom CMA System Upgrade Guide

Polycom CMA System Upgrade Guide Polycom CMA System Upgrade Guide 4.1.2 June 2009 3725-77606-001B2 Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks and/or

More information

Veritas Enterprise Vault Setting up SMTP Archiving 12.2

Veritas Enterprise Vault Setting up SMTP Archiving 12.2 Veritas Enterprise Vault Setting up SMTP Archiving 12.2 Veritas Enterprise Vault: Setting up SMTP Archiving Last updated: 2017-08-10. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved.

More information

Veritas Enterprise Vault Setting up SMTP Archiving 12.1

Veritas Enterprise Vault Setting up SMTP Archiving 12.1 Veritas Enterprise Vault Setting up SMTP Archiving 12.1 Veritas Enterprise Vault: Setting up SMTP Archiving Last updated: 2017-07-28. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved.

More information

The Multi Domain Administrator account can operate with Domain Administrator privileges on all associated Domain Administrator users.

The Multi Domain Administrator account can operate with Domain Administrator privileges on all associated Domain Administrator users. User Management Libra Esva users can manage and access the system. With Libra Esva you can enable per-user quarantine and the system will create user accounts to enable access to quarantine settings and

More information

Veritas NetBackup for Lotus Notes Administrator's Guide

Veritas NetBackup for Lotus Notes Administrator's Guide Veritas NetBackup for Lotus Notes Administrator's Guide for UNIX, Windows, and Linux Release 8.0 Veritas NetBackup for Lotus Notes Administrator's Guide Document version: 8.0 Legal Notice Copyright 2016

More information

Personal Dashboard User Guide

Personal Dashboard User Guide Version 8.1 800-782-3762 www.edgewave.com 2001 2011 EdgeWave. All rights reserved. The Red Condor and EdgeWave logos and brands are trademarks of EdgeWave. All other trademarks and registered trademarks

More information

Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013

Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013 Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013 Windows 7.1 April 2016 Storage Foundation and High Availability Solutions HA and

More information

Authenticating Devices

Authenticating Devices Authenticating Devices Cisco TelePresence Deployment Guide Cisco VCS X6.1 D14819.01 May 2011 Contents Contents Document revision history... 4 Introduction... 5 Local database... 6 Configuration... 6 H.350

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

Mailbox Control Panel

Mailbox Control Panel Mailbox Control Panel Contents Introduction... 1 Access the Mailbox Control Panel... 1 The Interface... 1 Left side... 2 Right side... 3 Menu... 4 Dashboard... 4 Mailbox settings... 4 Mailbox management...

More information

Veritas NetBackup for Microsoft SQL Server Administrator's Guide

Veritas NetBackup for Microsoft SQL Server Administrator's Guide Veritas NetBackup for Microsoft SQL Server Administrator's Guide for Windows Release 8.1.1 Veritas NetBackup for Microsoft SQL Server Administrator's Guide Last updated: 2018-04-10 Document version:netbackup

More information

Online Documentation: To access the online documentation for this and other Novell products, and to get updates, see

Online Documentation: To access the online documentation for this and other Novell products, and to get updates, see Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation, and specifically disclaims any express or implied warranties of merchantability

More information

1 Setting Up GroupWise to Work with

1 Setting Up GroupWise to Work with 1 Setting Up GroupWise to Work with POP3 Mailboxes Overview If you use domain mail forwarding, incoming Internet e-mail for your organization can be handled by a program called the POP Forwarding Agent

More information

Assignment Dropbox. Overview

Assignment Dropbox. Overview Assignment Dropbox Overview This system aims to replace the Computer Science EC dropbox with one that saves to SONAS and is linked to Cecil. It is not specific to Computer Science and can be made more

More information

TIBCO Spotfire Automation Services 7.5. User s Manual

TIBCO Spotfire Automation Services 7.5. User s Manual TIBCO Spotfire Automation Services 7.5 User s Manual Revision date: 15 January 2016 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration.

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. Administrator Guide Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. The information and content in this document is provided for informational purposes

More information

Veritas SaaS Backup for Office 365

Veritas SaaS Backup for Office 365 Veritas SaaS Backup for Office 365 Documentation version: 1.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

Avocent Universal Management Gateway Appliance Plug-in for DSView 4 Management Software Release Notes Version December 23, 2014

Avocent Universal Management Gateway Appliance Plug-in for DSView 4 Management Software Release Notes Version December 23, 2014 Avocent Universal Management Gateway Appliance Plug-in for DSView 4 Management Software Release Notes Version 2.8.1.14 December 23, 2014 This document outlines: 1. System Requirements 2. Language Support

More information

Account Management. Administrator Guide. Secure Gateway (SEG) Service Administrative Guides. Revised August 2013

Account Management. Administrator Guide. Secure  Gateway (SEG) Service Administrative Guides. Revised August 2013 Secure E-Mail Gateway (SEG) Service Administrative Guides Account Management Administrator Guide Revised August 2013 * The Directory Services Connector (DSC) feature is not included as a standard feature

More information

TelstraClear Technical Document

TelstraClear Technical Document (C) Copyright Page 1 of 5 SUBJECT: Outlook Express 4.5 and Above PLATFORM: Windows 95 THE PARADISE.NET HELPDESK DOES NOT TECHNICALLY SUPPORT WINDOWS 95 AND WINDOWS NT OR APPLE MACINTOSH SYSTEMS LOWER THAN

More information

Veritas System Recovery 18 Management Solution Administrator's Guide

Veritas System Recovery 18 Management Solution Administrator's Guide Veritas System Recovery 18 Management Solution Administrator's Guide Documentation version: 18 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are

More information

Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003

Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003 Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003 This article refers to Microsoft Exchange Server 2003. As of April 8, 2014, Microsoft no longer issues security updates for

More information

Albridge Integration User Guide

Albridge Integration User Guide Albridge Integration User Guide Copyright 1998-2006, E-Z Data, Inc. All Rights Reserved. No part of this documentation may be copied, reproduced, or translated in any form without the prior written consent

More information

Getting Started with Eudora For the Macintosh Using Eudora 6.1 Keith Roberts

Getting Started with Eudora For the Macintosh Using Eudora 6.1 Keith Roberts MAC1021 July 2004 Getting Started with Eudora For the Macintosh Using Eudora 6.1 Keith Roberts INTRODUCTION... 1 REQUIREMENTS... 2 ISSUES... 2 EUDORA MODES... 3 SPONSORED MODE... 3 PAID MODE... 3 LIGHT

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010 Users 9.0 Symantec Enterprise Vault: Guide for Microsoft Outlook 2010 Users The software described in this book is furnished under a license agreement

More information

User's Manual Zultys MXconference

User's Manual Zultys MXconference March 10 User's Manual Zultys MXconference Author: Zultys Technical Support Department March 2010 Edition Version 1.0 Z Z u l t y s, I n c. 7 7 1 V a q u e r o s S u n n y v a l e, C a l i f o r n i a,

More information

Clearspan OpEasy Basic Provisioning Guide

Clearspan OpEasy Basic Provisioning Guide Clearspan OpEasy Basic Provisioning Guide APRIL 2018 Release 4.10 2827-016 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Communications,

More information

TRANE CONTROL SYSTEM SETUP STEPS FOR ALERTDISPATCHER ALARM ALERT SYSTEM

TRANE CONTROL SYSTEM SETUP STEPS FOR ALERTDISPATCHER ALARM ALERT SYSTEM TRANE CONTROL SYSTEM SETUP STEPS FOR ALERTDISPATCHER ALARM ALERT SYSTEM February 2013 BAS-AP-AAS001-EN BAS-AP-AAS001-EN 1 Copyright 2013 Trane All rights reserved This document and the information in it

More information

European School Brussels IV

European School Brussels IV 1. PURPOSE: This procedure describes how to migrate mail currently residing in Gmail to Office 365. It should be used if you want to migrate some or all mail from Google to Office 365. This is not a mandatory

More information

CA Workload Automation Agent for Oracle E-Business Suite

CA Workload Automation Agent for Oracle E-Business Suite CA Workload Automation Agent for Oracle E-Business Suite Implementation Guide r11.3, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

USER GUIDE. Accessing the User Interface. Login Page https://www.contentcatcher.com. Resetting your Password. Logging In

USER GUIDE. Accessing the User Interface. Login Page https://www.contentcatcher.com. Resetting your Password. Logging In USER GUIDE This guide walks through the user interface of ContentCatcher, and the features and parameters contained therein. Accessing the User Interface The ContentCatcher user interface is a secure web-based

More information

TIBCO Slingshot User Guide. Software Release August 2015

TIBCO Slingshot User Guide. Software Release August 2015 TIBCO Slingshot User Guide Software Release 1.9.4 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

Novell Access Manager

Novell Access Manager Quick Start AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP2 June 11, 2010 www.novell.com Novell Access Manager 3.1 SP2 Quick Start Legal Notices Novell, Inc., makes no representations or warranties

More information

Symantec Managed PKI. Integration Guide for ActiveSync

Symantec Managed PKI. Integration Guide for ActiveSync Symantec Managed PKI Integration Guide for ActiveSync ii Symantec Managed PKI Symantec Managed PKI Integration Guide for ActiveSync The software described in this book is furnished under a license agreement

More information