StreamServe . User Guide SP2 Rev A

Size: px
Start display at page:

Download "StreamServe Email. User Guide. 4.1.2 SP2 Rev A"

Transcription

1 StreamServe User Guide SP2 Rev A

2 StreamServe User Guide SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe, Inc. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without the express written permission of StreamServe, Inc. Information in this document is subject to change without notice. StreamServe Inc. assumes no responsibility or liability for any errors or inaccuracies that may appear in this book. All registered names, product names and trademarks of other companies mentioned in this documentation are used for identification purposes only and are acknowledged as property of the respective company. Companies, names and data used in examples in this document are fictitious unless otherwise noted. StreamServe, Inc. offers no guarantees and assumes no responsibility or liability of any type with respect to third party products and services, including any liability resulting from incompatibility between the third party products and services and the products and services offered by StreamServe, Inc. By using StreamServe and the third party products mentioned in this document, you agree that you will not hold StreamServe, Inc. responsible or liable with respect to the third party products and services or seek to do so. The trademarks, logos, and service marks in this document are the property of StreamServe, Inc. or other third parties. You are not permitted to use the marks without the prior written consent of StreamServe, Inc. or the third party that owns the marks. Use of the StreamServe product with third party products not mentioned in this document is entirely at your own risk, also as regards the StreamServe products. StreamServe Web Site

3 3 Contents Retrieving s...5 Specifying what to retrieve...7 Specifying what to delete...8 Attachment handling...9 Scripting functions for attachment handling... 9 Sending s...11 Standard Process and connector...12 MailOUT Process and connector...13 MailOUT Process and Topcall connector...15 MailOUT Process reference...16

4 4

5 5 Retrieving s The IN input connector enables the Communication Server to retrieve input from a designated mailbox. Access to the mailbox You must specify the parameters that the Communication Server needs in order to access the mail folder to scan for input. Use the following IN connector settings: Mailbox type Port Mail server name Mail folder User name Password What to retrieve from the mailbox You must specify which s to retrieve from the mailbox. You can select to retrieve all s, and you can also create a filter that determines which s to retrieve. Use the following IN connector settings: Mail read filter From To Cc Date Subject Reply To Signed Encrypted See also Specifying what to retrieve on page 7. Which type of information in an to process You must specify which type of information in an to select and process attachment, body, or both. Use the following IN connector settings: Read mail text Read attachment file

6 6 Retrieving s What to delete You must specify whether or not to delete an after it has been retrieved by the Communication Server. You can select to delete the after it has been retrieved, after it has been retrieved and processed, and you can also create a filter that determines which s to delete. Use the following IN connector settings: Delete mail Mail delete filter Delete From Delete To Delete Cc Delete Date Delete Subject Delete Reply to See also Specifying what to delete on page 8. Whether or not to save attachments You must specify whether or not to save attachments, and where to save them. Use the following IN connector settings: Save attachment Attachment directory See also Attachment handling on page 9. S/MIME encryption and authentication You can select to use S/MIME for authentication and encryption. See the Encryption and authentication documentation.

7 Specifying what to retrieve 7 Retrieving s Specifying what to retrieve To retrieve all s In the connector settings dialog box, select Mail read filter> Read all. To use a filter 1 In the connector settings dialog box, select Mail read filter > Advanced. 2 Use To, Cc, etc. to specify the filter.

8 8 Specifying what to delete Retrieving s Specifying what to delete To delete all s 1 In the connector settings dialog box, select Delete mail > Yes. 2 Select Mail delete filter > Delete all. To delete processed s 1 In the connector settings dialog box, select Delete mail > Yes. 2 Select Mail delete filter > Delete Processed. To use a filter 1 In the connector settings dialog box, select Delete mail > Yes. 2 Select Mail delete filter > Advanced. 3 Use Delete To, Delete Cc, etc. to specify the filter.

9 Attachment handling 9 Retrieving s Attachment handling To save attachments to disk 1 In the connector settings dialog box, select Save attachment > Yes. 2 Select the Attachment directory where to save the attachment files. To use saved attachments The attachment files saved to disk will be given new unique names. The reason for this is to prevent files from being overwritten. You must use scripting functions where you map the original file names to the corresponding names of the files saved to disk. See Scripting functions for attachment handling on page 9. To delete saved attachments Attachments saved to disk are not removed automatically. One way to delete the attachments is to call an After Event script using the FileDelete scripting function. See Scripting functions for attachment handling on page 9. Scripting functions for attachment handling Current attachment You can use the CurrInFileName scripting function to fetch the file name of the current attachment sent through the Communication Server. See the Scripting reference. Attachments saved on disk To manage the attachments saved to disk you must use the following scripting functions where you map the original file names to the corresponding file names of the files saved to disk: GetAttachmentFile GetAttachmentOriginalFile GetAttachmentCount See the Scripting reference. Example 1 Get the attachment streamserve.gif $i=1; $count = GetAttachmentCount(); while(num($i)<=num($count)) { $original = GetAttachmentOriginalFile(num($i)); if($original = "streamserve.gif") { $file = GetAttachmentFile(num($i)); }

10 10 Attachment handling Retrieving s } $i++; Content type and encoding of attachments To retrieve content type and encoding of attachments you can use the following scripting functions. GetAttachmentContentEncoding GetAttachmentContentType See the Scripting reference. Deleting saved attachments Attachments saved to disk are not removed automatically. One way to delete the attachments is to call an After Event script using the FileDelete scripting function. Example 2 Deleting attachments $i=1; $count = GetAttachmentCount(); while(num($i)<=num($count)) { $delete = GetAttachmentFile(num($i)); FileDelete($delete); $i++; } GetConnectorValue You can use the scripting function GetConnectorValue to fetch IN attributes. See the connector reference.

11 11 Sending s There are three types of configurations for sending A standard Process and an connector A MailOUT Process and an connector A MailOUT Process, a PageOUT Process and a Topcall connector Standard Process and connector This configuration includes a standard Process (PageOUT Process, StreamOUT Process, etc.) and an connector. Processed output will be sent directly from the Process, via the connector, to a mail server. The address information, subject, etc. is set-up in the connector configuration. Which connector to use depends on the type of mail server. This is the most effortless method if you want to processed output. See Standard Process and connector on page 12. MailOUT Process and connector This configuration includes a MailOUT Process, an connector and, optionally, a standard Process. The output from the MailOUT Process is an . To this you can attach files from disk and output from other Processes. The is sent via an connector to a mail server. Which connector to use depends on the type of mail server. This is the most effortless method if you only want to attach files on disk to an , or send plain information in the body. See MailOUT Process and connector on page 13. MailOUT Process, PageOUT Process and Topcall connector TOPCALL is a registered trademark of TOPCALL International AG. This configuration includes a MailOUT Process, a PageOUT Process, and a Topcall output connector. The PageOUT output is sent as a PDF or PCL attachment, via the MailOUT Process and the Topcall connector, to a designated directory. TOPCALL picks up the attachment and sends it via fax or . See MailOUT Process and Topcall connector on page 15.

12 12 Standard Process and connector Sending s Standard Process and connector This configuration includes a standard Process (PageOUT Process, StreamOUT Process, etc.) and an connector. Processed output will be sent directly from the Process, via the connector, to a mail server. The address information, subject, etc. is set-up in the connector configuration. Which connector to use depends on the type of mail server. This is the most effortless method if you want to processed output. connectors You can use the following output connectors for this purpose: MAPI SMTP (MIME) TFS Attaching the processed output to the The processed output will be sent as an attachment. For example, if you select the PDF driver when you configure the connector, the output will be attached as a PDF file. You specify attachment name, whether or not to compress the attachment, etc. in the Runtime settings for the connector. Specifying a mail server You specify which type of mail server to send the output to when you select the connector. For example, select an SMTP (MIME) connector if you want to use an SMTP mail server. editor The address information, subject, etc. is set-up in the Runtime connector configuration. Attaching files on disk to the In the editor you can also add supplementary attachments, such as product sheets, price lists, etc. These attachments must be available as files on disk. Scripting functions for attachments You can use the scripting functions AttachmentBegin and AttachmentEnd to handle attachments. See the Scripting reference.

13 MailOUT Process and connector 13 Sending s MailOUT Process and connector This configuration includes a MailOUT Process, an connector and, optionally, a standard Process. The output from the MailOUT Process is an . To this you can attach files from disk and output from other Processes. The is sent via an connector to a mail server. Which connector to use depends on the type of mail server. This is the most effortless method if you only want to attach files on disk to an , or send plain information in the body. connectors You can use the following output connectors for this purpose: MAPI for MailOUT SMTP (MIME) for MailOUT TFS for MailOUT Specifying a mail server You specify which type of mail server to send the output to when you select the connector. For example, select an SMTP (MIME) for MailOUT connector if you want to use an SMTP mail server. editor The MailOUT tool is the editor. In the editor you specify address information, subject, body, etc. The same editor is used for MAPI, SMTP MIME, and TFS s. This means that all parameters are not applicable to all types. See MailOUT Process reference on page 16. Attaching files on disk to the In the editor you can add attachments to the , for example product sheets, price lists, etc. These attachments must be available as files on disk. Attaching processed output to the You can attach output from standard Processes (PageOUT etc.) to the . 1 In the Runtime configuration window, right-click the MailOUT Process and select Settings. The Runtime Process Settings dialog box opens. 2 On the Attach Process tab, click Add New. The Process Attachment dialog box opens. 3 Enter the Attachment name. 4 From the Select Process drop-down list, select the appropriate Process and click OK. The standard Process must be connected to some kind of output connector. The driver options on that connector determines the format of the attachment. For example, if you select the PDF driver, the output will be attached as a PDF file. If you are using an SMTP mail server you can also specify the content-type for the attached output:

14 14 MailOUT Process and connector Sending s Autoselect the Communication Server determines which content-type to use. The information is retrieved from the driver that generates the attachment file. Predefined select content-type from a predefine list. Custom specify a custom content-type. Scripting functions for attachments You can use the scripting functions AttachmentBegin and AttachmentEnd to handle attachments. See the Scripting reference.

15 MailOUT Process and Topcall connector 15 Sending s MailOUT Process and Topcall connector TOPCALL is a registered trademark of TOPCALL International AG. This configuration includes a MailOUT Process, a PageOUT Process, and a Topcall output connector. The PageOUT output is sent as a PDF or PCL attachment, via the MailOUT Process and the Topcall connector, to a designated directory. TOPCALL picks up the attachment and sends it via fax or . connectors You must use a Topcall connector for this purpose. Specifying output directories TOPCALL and the Communication Server use two directories to exchange information: one directory that contains the attachments, and one directory that contains address information. You specify these directories when you configure the Topcall connector. editor The MailOUT tool is the editor. In the editor you must specify a To and From address. You can use dummy values. Attaching processed output to the The PageOUT Process must be connected to some kind of output connector. The driver options on that connector determines the format of the attachment. For example, if you select the PDF driver, the output will be attached as a PDF file. 1 In the Runtime configuration window, right-click the MailOUT Process and select Settings. The Runtime Process Settings dialog box opens. 2 On the Attach Process tab, click Add New. The Process Attachment dialog box opens. 3 Enter the Attachment name. 4 From the Select Process drop-down list, select the appropriate Process and click OK.

16 16 MailOUT Process reference Sending s MailOUT Process reference MailOUT settings From Display name Reply to To Cc Bcc Subject Request receipt Attachments Standard attribute. Not applicable to MAPI. The From address will be replaced by this name when the is delivered. This functionality must be supported in the client. Not applicable to MAPI and TFS. Used by the client instead of the From address when responding to an . Not applicable to MAPI and TFS. Standard attribute. Standard attribute. Standard attribute. Not applicable to TFS. Standard attribute. Request a read receipt from the recipient. A delivery notification will be received when the recipient reads the provided that this functionality is supported by the servers and clients. Not applicable to TFS. Free attachments (not Process output). Use the Add, Edit buttons. Attachment settings File to attach Attachment name Path to file to attach. Name of attachment.

17 MailOUT Process reference 17 Sending s Attachment settings MIME Type Convert attachment from PCL to PDF Compress attachment Content-type of the attachment. Predefined: Select content-type from a predefine list. Custom: Specify a custom content-type. Not applicable to: MAPI, TFS. Select whether or not to convert PCL attachments to PDF. Select whether or not to compress the attachments.

18 18 MailOUT Process reference Sending s

StreamServe Persuasion SP4 Connectors

StreamServe Persuasion SP4 Connectors StreamServe Persuasion SP4 Connectors User Guide Rev A StreamServe Persuasion SP4 Connectors User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of

More information

StreamServe Encryption and Authentication

StreamServe Encryption and Authentication StreamServe Encryption and Authentication User Guide 4.1.2 SP2 Rev A StreamServe Encryption and Authentication User Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe,

More information

StreamServe Persuasion SP5 Encryption and Authentication

StreamServe Persuasion SP5 Encryption and Authentication StreamServe Persuasion SP5 Encryption and Authentication User Guide Rev A StreamServe Persuasion SP5 Encryption and Authentication User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United

More information

StreamServe Persuasion SP4 Encryption and Authentication

StreamServe Persuasion SP4 Encryption and Authentication StreamServe Persuasion SP4 Encryption and Authentication User Guide Rev A StreamServe Persuasion SP4 Encryption and Authentication User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United

More information

StreamServe Persuasion SP5 Document Broker Plus

StreamServe Persuasion SP5 Document Broker Plus StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520

More information

StreamServe Persuasion SP5 Upgrading instructions

StreamServe Persuasion SP5 Upgrading instructions StreamServe Persuasion SP5 Upgrading instructions Reference Guide Rev A Upgrading instructionsstreamserve Persuasion SP5 Reference Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States

More information

StreamServe Job Gateway

StreamServe Job Gateway StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe, Inc. No part of this document may

More information

StreamServe Persuasion SP4 Service Broker

StreamServe Persuasion SP4 Service Broker StreamServe Persuasion SP4 Service Broker User Guide Rev A StreamServe Persuasion SP4 Service Broker User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No

More information

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B 2001-2010 STREAMSERVE,

More information

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes User Guide Rev A StreamServe Persuasion SP4StreamServe Connect for SAP - Business Processes User Guide Rev A SAP, mysap.com,

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Envelope (SMTP) Journaling for Microsoft Exchange 2007 and 2010

Envelope (SMTP) Journaling for Microsoft Exchange 2007 and 2010 Barracuda Message Archiver Organizations using Microsoft Exchange 2007 or 2010 can take advantage of its envelope journaling feature to send all messages along with all recipient information directly to

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

Envelope (SMTP) Journaling for Microsoft Exchange 2007 and 2010

Envelope (SMTP) Journaling for Microsoft Exchange 2007 and 2010 Barracuda Message Archiver Organizations using Microsoft Exchange 2007 or 2010 can take advantage of its envelope journaling feature to send all messages along with all recipient information directly to

More information

Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling

Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling Contents: Step 1: Create Mail Contact Step 2: Create a Local Journal Mailbox Step 3: Create an SMTP send connector Step 4: Create

More information

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 Version 3.2 ArcMail Technology 401 Edwards Street, Suite 1601 Shreveport, LA 71101 Support: (888) 790-9252

More information

Basic Exchange Setup Guide

Basic Exchange Setup Guide Basic Exchange Setup Guide The following document and screenshots are provided for a single Microsoft Exchange Small Business Server 2003 or Exchange Server 2007 setup. These instructions are not provided

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling

Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling This document covers the following Microsoft Exchange Server Editions Microsoft Exchange Enterprise Edition 2007 Microsoft Exchange

More information

Novar Database Mail Setup Guidelines

Novar Database Mail Setup Guidelines Database Mail Setup Guidelines August 2015 Delivering the Moment Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and

More information

Basic Exchange Setup Guide

Basic Exchange Setup Guide Basic Exchange Setup Guide The following document and screenshots are provided for a single Microsoft Exchange Small Business Server 2003 or Exchange Server 2007 setup. These instructions are not provided

More information

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Page 1 of 14 Help Center Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Learn how to configure Outlook 2007 for use with your 1&1 e-mail account using POP3. Before you begin, you will need

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by

More information

NetWrix Account Lockout Examiner Version 4.0 Administrator Guide

NetWrix Account Lockout Examiner Version 4.0 Administrator Guide NetWrix Account Lockout Examiner Version 4.0 Administrator Guide Table of Contents Concepts... 1 Product Architecture... 1 Product Settings... 2 List of Managed Domains and Domain Controllers... 2 Email

More information

Exchange 2003 Standard Journaling Guide

Exchange 2003 Standard Journaling Guide Exchange 2003 Standard Journaling Guide Websense Email Security Solutions v7.3 Websense Advanced Email Encryption Copyright 1996-2011 Websense, Inc. All rights reserved. This document contains proprietary

More information

StreamServe Persuasion SP5 Microsoft SQL Server

StreamServe Persuasion SP5 Microsoft SQL Server StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A 2001-2011 STREAMSERVE, INC. ALL RIGHTS RESERVED United

More information

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

Olathe District Schools 1 of 11 GroupWise 7

Olathe District Schools 1 of 11 GroupWise 7 Olathe District Schools 1 of 11 GroupWise 7 Creating an email group To create and save a personal group: 1. Click on the toolbar. 2. Click the personal address book you want to add this group to. 3. Click

More information

PaperClip. em4 Cloud Client. Manual Setup Guide

PaperClip. em4 Cloud Client. Manual Setup Guide PaperClip em4 Cloud Client Manual Setup Guide Copyright Information Copyright 2014, PaperClip Inc. - The PaperClip32 product name and PaperClip Logo are registered trademarks of PaperClip Inc. All brand

More information

Product Guide Revision A. McAfee Secure Web Mail Client 7.0.0 Software

Product Guide Revision A. McAfee Secure Web Mail Client 7.0.0 Software Product Guide Revision A McAfee Secure Web Mail Client 7.0.0 Software COPYRIGHT Copyright 2011 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012. October 2013

Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012. October 2013 Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012 October 2013 This is a publication of Sage Software, Inc. Document version: October 17, 2013 Copyright

More information

BusinessObjects Enterprise XI Release 2

BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER ADMINISTRATOR S GUIDE Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Configuring Outlook 2013 For IMAP Connections

Configuring Outlook 2013 For IMAP Connections Configuring Outlook 2013 For IMAP Connections VERSION 1.0 1 P a g e U A C o n n e c t C o n f i g u r i n g O u t l o o k 2013 f o r I M A P 12/2013 Configuring Outlook 2013 for IMAP Connections Overview

More information

Legal Notes. Regarding Trademarks. 2011 KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks. 2011 KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Set up Outlook for your new student e mail with IMAP/POP3 settings

Set up Outlook for your new student e mail with IMAP/POP3 settings Set up Outlook for your new student e mail with IMAP/POP3 settings 1. Open Outlook. The Account Settings dialog box will open the first time you open Outlook. If the Account Settings dialog box doesn't

More information

Unity Error Message: Your voicemail box is almost full

Unity Error Message: Your voicemail box is almost full Unity Error Message: Your voicemail box is almost full Document ID: 111781 Contents Introduction Prerequisites Requirements Components Used Conventions Problem Solution Delete Voice Mail Messages from

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER QUICK-START GUIDE FOR THE ENTERPRISE EDITION Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information

DocuPrint C3290 FS Features Setup Guide

DocuPrint C3290 FS Features Setup Guide DocuPrint C3290 FS Features Setup Guide Adobe and PostScript are trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apple, Bonjour, ColorSync, EtherTalk, Macintosh, and

More information

Converting Prospects to Purchasers.

Converting Prospects to Purchasers. CONFIGURE MICROSOFT OFFICE 365 AND MICROSOFT EXCHANGE TO CAPTURE LASSO EMAIL The following instructions are for clients who wish to configure Microsoft Office 365 or Microsoft Exchange to record email

More information

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft

More information

XMailer Reference Guide

XMailer Reference Guide XMailer Reference Guide Version 7.00 Wizcon Systems SAS Information in this document is subject to change without notice. SyTech assumes no responsibility for any errors or omissions that may be in this

More information

Sending an Encrypted/Unencrypted Message. Let's Begin: Log In and Set Up Security Questions. Create Additional ProMailSource Accounts:

Sending an Encrypted/Unencrypted Message. Let's Begin: Log In and Set Up Security Questions. Create Additional ProMailSource Accounts: Let's Begin: Log In and Set Up Security Questions To start, you can log in from the ProMailSource home page. Sending an Encrypted/Unencrypted Message Every message you send through ProMailSource is automatically

More information

Product Guide Revision A. McAfee Secure Web Mail Client 7.0.0 Software

Product Guide Revision A. McAfee Secure Web Mail Client 7.0.0 Software Product Guide Revision A McAfee Secure Web Mail Client 7.0.0 Software COPYRIGHT Copyright 2011 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Merak Outlook Connector User Guide

Merak Outlook Connector User Guide IceWarp Server Merak Outlook Connector User Guide Version 9.0 Printed on 21 August, 2007 i Contents Introduction 1 Installation 2 Pre-requisites... 2 Running the install... 2 Add Account Wizard... 6 Finalizing

More information

Emailing from The E2 Shop System EMail address Server Name Server Port, Encryption Protocol, Encryption Type, SMTP User ID SMTP Password

Emailing from The E2 Shop System EMail address Server Name Server Port, Encryption Protocol, Encryption Type, SMTP User ID SMTP Password Emailing from The E2 Shop System With recent releases of E2SS (at least 7.2.7.23), we will be allowing two protocols for EMail delivery. A new protocol for EMail delivery Simple Mail Transfer Protocol

More information

ELM Server Exchange Edition Virtual Archive Mailbox version 5.5

ELM Server Exchange Edition Virtual Archive Mailbox version 5.5 ELM Server Exchange Edition Virtual Archive Mailbox version 5.5 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries.

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator for Microsoft Outlook User guide Release 6.7 8AL 90243USAD ed01 Sept 2012 Table of contents 1 MY INSTANT COMMUNICATOR FOR MICROSOFT OUTLOOK...

More information

Email Data Protection. Administrator Guide

Email Data Protection. Administrator Guide Email Data Protection Administrator Guide Email Data Protection Administrator Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec,

More information

How to set up Outlook Anywhere on your home system

How to set up Outlook Anywhere on your home system How to set up Outlook Anywhere on your home system The Outlook Anywhere feature for Microsoft Exchange Server 2007 allows Microsoft Office Outlook 2007 and Outlook 2003 users to connect to their Outlook

More information

RSA Security Analytics

RSA Security Analytics RSA Security Analytics Event Source Log Configuration Guide Microsoft Exchange Server Last Modified: Monday, August 17, 2015 Event Source Product Information: Vendor: Microsoft Event Source: Exchange Server

More information

StarWind iscsi SAN Software: Using with Citrix XenServer

StarWind iscsi SAN Software: Using with Citrix XenServer StarWind iscsi SAN Software: Using with Citrix XenServer www.starwindsoftware.com Copyright 2008-2010. All rights reserved. COPYRIGHT Copyright 2008-2010. All rights reserved. No part of this publication

More information

Creating IBM Cognos Controller Databases using Microsoft SQL Server

Creating IBM Cognos Controller Databases using Microsoft SQL Server Guideline Creating IBM Cognos Controller Databases using Microsoft SQL Product(s): IBM Cognos Controller 8.1 or higher Area of Interest: Financial Management 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

NetWrix Server Configuration Monitor

NetWrix Server Configuration Monitor NetWrix Server Configuration Monitor Version 2.2 Quick Start Guide Contents NetWrix Server Configuration Monitor Quick Start Guide 1. INTRODUCTION... 3 1.1 KEY FEATURES... 3 1.2 LICENSING... 4 1.3 HOW

More information

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder MX-2300, MX-2600, MX-2700, MX-3100, MX-3501, MX-4501, MX-5500, MX-6200, MX-6201, MX-7000, MX-7001, *MX-M850, *MX-M950,

More information

MAPI Connector Overview

MAPI Connector Overview The CommuniGate Pro Server can be used as a "service provider" for Microsoft Windows applications supporting the MAPI (Microsoft Messaging API). To use this service, a special Connector library (CommuniGate

More information

NETWRIX ACCOUNT LOCKOUT EXAMINER

NETWRIX ACCOUNT LOCKOUT EXAMINER NETWRIX ACCOUNT LOCKOUT EXAMINER ADMINISTRATOR S GUIDE Product Version: 4.1 July 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute a

More information

NetWrix SQL Server Change Reporter. Quick Start Guide

NetWrix SQL Server Change Reporter. Quick Start Guide NetWrix SQL Server Change Reporter Quick Start Guide NetWrix SQL Server Change Reporter Quick Start Guide Contents Introduction...3 Product Features...3 Licensing...4 How It Works...5 Getting Started...6

More information

StreamServe Design Center GUI Reference

StreamServe Design Center GUI Reference StreamServe Design Center GUI Reference Reference Guide 4.1.2 SP2 Rev A StreamServe Design Center GUI Reference Reference Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe,

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves

More information

Collax Mail Server. Howto. This howto describes the setup of a Collax server as mail server.

Collax Mail Server. Howto. This howto describes the setup of a Collax server as mail server. Collax Mail Server Howto This howto describes the setup of a Collax server as mail server. Requirements Collax Business Server Collax Groupware Suite Collax Platform Server including Collax Communication

More information

Install and Configure Oracle Outlook Connector

Install and Configure Oracle Outlook Connector Install and Configure Oracle Outlook Connector To install and configure Oracle Outlook Connector for Outlook to send and receive e-mail and to access your TechTime TM calendar, do the following. 1. Run

More information

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org (

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org ( GFI MailArchiver for Exchange 4 Manual By GFI Software http://www.gfi.com Email: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

GroupWise: Tips & Tricks

GroupWise: Tips & Tricks GroupWise: Tips & Tricks Objectives: Participants will: Set up a Home Page with Panels Customize the toolbar Sort email message by Sender, Subject, and Date in ascending or descending order Assign Categories

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

WatchDox for Windows. User Guide. Version 3.9.5

WatchDox for Windows. User Guide. Version 3.9.5 WatchDox for Windows User Guide Version 3.9.5 Notice Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to

More information

GFI FAXmaker 14.3 for Exchange/Lotus/SMTP. Manual. By GFI Software Ltd

GFI FAXmaker 14.3 for Exchange/Lotus/SMTP. Manual. By GFI Software Ltd GFI FAXmaker 14.3 for Exchange/Lotus/SMTP Manual By GFI Software Ltd http://www.gfi.com Email: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data

More information

Outlook Express. Make Changes in Red: Open up Outlook Express. From the Menu Bar. Tools to Accounts - Click on Mail Tab.

Outlook Express. Make Changes in Red: Open up Outlook Express. From the Menu Bar. Tools to Accounts - Click on Mail Tab. Outlook Express Open up Outlook Express From the Menu Bar Tools to Accounts - Click on Mail Tab Click on mail.nefcom.net (default) Click on Properties button Click on the General tab User Information E-mail

More information

Configure Managed File Transfer Endpoints

Configure Managed File Transfer Endpoints Configure Managed File Transfer Endpoints 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net Software used by portions of this application require the following license statement: [The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net All rights reserved. Redistribution

More information

NETWRIX FILE SERVER CHANGE REPORTER

NETWRIX FILE SERVER CHANGE REPORTER NETWRIX FILE SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 3.3 April/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

How To Install Outlook Addin On A 32 Bit Computer

How To Install Outlook Addin On A 32 Bit Computer Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...

More information

How To Set Up Your Email

How To Set Up Your Email How To Set Up Your Email Contents Page Microsoft Outlook 1 Outlook Express 6 7 Webmail (this is for those who do not use an email programme) 12 Windows Live Mail 22 Mozilla Thunderbird 26 Windows Mail

More information

Releasing blocked email in Data Security

Releasing blocked email in Data Security Releasing blocked email in Data Security IN-TopicInfo:Topic 41101/ Updated: 02-May-2011 Applies To: Websense Data Security v7.1.x Websense Data Security v7.5.x Websense Data Security v7.6.x - v7.8x SMTP

More information

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents NET SatisFAXtion Email Gateway Installation Guide For NET SatisFAXtion 8.7 Contents Install Microsoft Virtual SMTP Server 2 XP and 2003 2 2008 and 2008 R2 2 Windows 7 2 Upgrade Path 2 Configure Microsoft

More information

DataCove PST Import Tool

DataCove PST Import Tool DataCove PST Import Tool Installation Instructions for PST Import Tool System Requirements: Windows XP, Vista or 7 32 bit editions. Outlook, 2003, 2007 or 2010 32 bit Editions (for MAPI) 1GB of RAM Microsoft.NET

More information

Configuring Mozilla Thunderbird to Access Your SAS Email Account

Configuring Mozilla Thunderbird to Access Your SAS Email Account Configuring Mozilla Thunderbird to Access Your SAS Email Account 1. When you launch Thunderbird for the first time, the Import Wizard will appear: If Thunderbird detects that another email program was

More information

NetWrix File Server Change Reporter. Quick Start Guide

NetWrix File Server Change Reporter. Quick Start Guide NetWrix File Server Change Reporter Quick Start Guide Introduction... 3 Product Features... 3 Licensing... 3 How It Works... 4 Getting Started... 5 System Requirements... 5 Setup... 5 Additional Considerations...

More information

Installing Microsoft Exchange Integration for LifeSize Control

Installing Microsoft Exchange Integration for LifeSize Control Installing Microsoft Exchange Integration for LifeSize Control September 2005 Part Number 132-00002-001, Version 1.1 Copyright Notice Copyright 2005 LifeSize Communications. All rights reserved. LifeSize

More information

CentreWare Internet Services Setup and User Guide. Version 2.0

CentreWare Internet Services Setup and User Guide. Version 2.0 CentreWare Internet Services Setup and User Guide Version 2.0 Xerox Corporation Copyright 1999 by Xerox Corporation. All rights reserved. XEROX, The Document Company, the digital X logo, CentreWare, and

More information

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved. No

More information

PageScope Router. Version 1.5. Configuration Guide

PageScope Router. Version 1.5. Configuration Guide PageScope Router Version 1.5 Configuration Guide Table of Contents TABLE OF CONTENTS... 2 1. Introduction...3 1.1 IP Address and Domain Name...3 2. Sending Files to PageScope Router...4 2.1 MFP Device

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

How To Use The Policy Patrol Archiver Server

How To Use The Policy Patrol Archiver Server POLICY PATROL ARCHIVER FOR ADMINISTRATORS Manual MANUAL Policy Patrol Archiver For Administrators This manual, and the software described in this manual, are copyrighted. No part of this manual or the

More information

OnDemand. Getting Started Guide

OnDemand. Getting Started Guide OnDemand Getting Started Guide Copyright Copyright 2009 ACS Technologies Group, Inc. All rights reserved. Reproduction of any part of this publication by mechanical or electronic means, including facsimile

More information

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE

HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE HELP DOCUMENTATION E-SSOM BACKUP AND RESTORE GUIDE Copyright 1998-2012, Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by

More information

Mediasite. captioning

Mediasite. captioning Mediasite captioning 2013 Sonic Foundry, Inc. All rights reserved. No part of this document may be copied and/or redistributed without the consent of Sonic Foundry, Inc. Additional copies may be obtained

More information

Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software

Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software Private Limited, All Rights Reserved

More information

E-mail Settings 1 September 2015

E-mail Settings 1 September 2015 Training Notes 1 September 2015 PrintBoss can be configured to e-mail the documents it processes as PDF attachments. There are limitations to embedding documents in standard e-mails. PrintBoss solves these

More information

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

Easy Manage Helpdesk Guide version 5.4

Easy Manage Helpdesk Guide version 5.4 Easy Manage Helpdesk Guide version 5.4 Restricted Rights Legend COPYRIGHT Copyright 2011 by EZManage B.V. All rights reserved. No part of this publication or software may be reproduced, transmitted, stored

More information

Instructions for Microsoft Outlook 2003

Instructions for Microsoft Outlook 2003 ElkhartNet, Inc. is dedicated to providing our email customers with excellent service and support. In a targeted effort to reduce SPAM and to provide more secure and faster email, we are changing our outgoing

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide September, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Exchange 2010 Outlook Profile Configuration... 1 Outlook Profile

More information

User Guide Online Backup

User Guide Online Backup User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Adding the Online Backup Service to your Account... 2 Getting Started with the Online Backup Software... 4 Downloading

More information

WS_FTP Pro. Addendum to User s Guide. Software Version 6.6. Ipswitch, Inc.

WS_FTP Pro. Addendum to User s Guide. Software Version 6.6. Ipswitch, Inc. WS_FTP Pro Addendum to User s Guide Software Version 6.6 Ipswitch, Inc. Ipswitch, Inc. Phone: 781-676-5700 81 Hartwell Ave Fax: 781-676-5710 Lexington, MA 02421-3127 Web: http://www.ipswitch.com The information

More information

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup.

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup. Quick Scan Features Setup Guide XE3024EN0-2 This guide includes instructions for: Scan to E-mail Setup on page 1 Scan to Mailbox Setup on page 6 Network Scanning Setup on page 9 Scan to PC Setup on page

More information

Using Entrust certificates with Microsoft Office and Windows

Using Entrust certificates with Microsoft Office and Windows Entrust Managed Services PKI Using Entrust certificates with Microsoft Office and Windows Document issue: 1.0 Date of issue: May 2009 Copyright 2009 Entrust. All rights reserved. Entrust is a trademark

More information