Configuring the OAuth 2.0 Authentication module
|
|
|
- Egbert Knight
- 10 years ago
- Views:
Transcription
1 Configuring the OAuth 2.0 Authentication module Revision: 0.5 Date: 25/11/11 ForgeRock AS Philp Pedersens vei Lysaker Norway Copyright 2011 ForgeRock AS. All rights reserved Page 1 15/06/10
2 Disclaimer: Copyright 2011 ForgeRock AS. All rights reserved This document is provided "AS-IS" without warranty of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. This document could include inaccuracies or typographical errors. ForgeRock AS Proprietary Revisions Version Date Author Comments /10/11 Victor Ake Initial draft Distribution List Name Company Position Copyright 2011 ForgeRock AS. All rights reserved Page 2 15/06/10
3 Table of Contents Configuring the OAuth 2.0 Module for facebook...5 Use case 1: Pre-linked account and error message if the user does not have an account in the local user data store...6 Proxy URL...6 Account Mapper Configuration:...6 Attribute Mapper Configuration...7 Save Attributes in Session...7 Create account if it does not exist...7 Prompt for password setting and activation code...7 Map to anonymous user...7 OAuth 2.0 Provider logout service...7 Logout options...7 Use case 2: Authenticate the users from facebook in OpenAM even if there is no user profile in the local Data Store...7 Proxy URL...8 Account Mapper Configuration:...8 Attribute Mapper Configuration...8 Save Attributes in Session...9 Create account if it does not exist...9 Prompt for password setting and activation code...9 Map to anonymous user...9 OAuth 2.0 Provider logout service...9 Logout options...10 Use case 3: Authenticate the users from facebook in OpenAM and create users on the fly if they do not exist, without prompting anything else...10 Proxy URL...10 Account Mapper Configuration:...10 Attribute Mapper Configuration...10 Save Attributes in Session...11 Create account if it does not exist...11 Prompt for password setting and activation code...11 Map to anonymous user...11 OAuth 2.0 Provider logout service...11 Logout options...11 SMTP Options...11 Use case 4: Authenticate the users from facebook in OpenAM and create users on the fly, but this time prompt the users to set a password and create the account only if they provide an activation code...12 Proxy URL...12 Account Mapper Configuration:...12 Attribute Mapper Configuration...12 Save Attributes in Session attribute in OAuth2 Response...13 Create account if it does not exist...13 Prompt for password setting and activation code...13 Map to anonymous user...14 OAuth 2.0 Provider logout service...14 Logout options...14 Copyright 2011 ForgeRock AS. All rights reserved Page 3 15/06/10
4 SMTP Gateway implementation class...14 SMTP host...14 SMTP port...14 SMTP User Name...14 SMTP User Password...14 SMPT SSL Enabled...14 Use case 5: Authenticate the users from facebook in OpenAM and map to an anonymous account if accounts can not be mapped to a local user...14 Proxy URL...15 Account Mapper Configuration:...15 Attribute Mapper Configuration...15 Save Attributes in Session attribute in OAuth2 Response...15 Create account if it does not exist...16 Prompt for password setting and activation code...16 Map to anonymous user...16 Anonymous User...16 OAuth 2.0 Provider logout service...16 Logout options...16 SMTP Options...16 Copyright 2011 ForgeRock AS. All rights reserved Page 4 15/06/10
5 Configuring the OAuth 2.0 Module for facebook. If more than one instance of OpenAM are used in a Load Balanced environment, the Load balancer must provide sticky load balancing. 1. An account is needed in the OAuth 2.0 service to register the OpenAM as a web application. 2. Example for facebook: Go to and register the OpenAM as a web application. The app would look like: Illustration 1: Example of a Web application registered in Facebook Take special note of the APP Key and APP secret and pay attention to register the Site URL and site domain properly 3. In the example we assume the OpenAM URL is called (illustration 4) 4. Create an authentication module named facebook. 1. Login to the OpenAM web console 2. Go to the Access Control tab 3. Select the realm where you want to configure the module 4. Go to the Authentication tab and scroll down to the Module Instance section Copyright 2011 ForgeRock AS. All rights reserved Page 5 15/06/10
6 5. Click the New button 6. Give a name to the module, for example facebook and select OAuth 2.0 as the type 7. Click the OK button 8. A new module instance named facebook should appear in the list of module instances. 9. Click the module and configure accordingly. 10. In Cient Id specify the App/API Key from facebook (illustration 4) 11. In Client Secret specify the App Secret from your facebook application (illustration 4) 12.The rest of the parameters depend on the type of use case that is needed, but most of them should be OK by default. 5. There are several use cases that can be implemented with the module. For all the use cases, the authentication module will automatically save the OAuth 2.0 access token as a session attribute: OAuthToken: Contains the OAuth 2.0 Access Token Use case 1: Pre-linked account and error message if the user does not have an account in the local user data store We have users in the OpenAM User Data Store and the users have an attribute that contains the address registered in facebook, i.e. pre-linked account. Proxy URL Specify the URL of the OpenAM OAuth 2.0 Proxy. In the example it will be: Account Mapper Configuration: This is the attribute (or attributes) that will be used to search the users in the local user store. is the name of the attribute in the Facebook response and mail is the name of the attribute in the local user data store. For performance reasons an index on the attribute used should exist on the User Data Store. An alternative configuration could be something like: id=employeenumber In this case id is the facebook id and employeenumber is the attribute in the OpenAM containg the facebook-id. Copyright 2011 ForgeRock AS. All rights reserved Page 6 15/06/10
7 Attribute Mapper Configuration For this use case, this configuration is not relevant last_name=sn first_name=givenname name=cn Again, the left side are the names of the attributes in the facebook response and the right names are the names in the local user data store. Save Attributes in Session Not necessarily enabled. You can disable it if you don't need the attributes (sn, mail, givenname and cn from the Attribute Mapper) to be stored in the session. Create account if it does not exist If you don't want to allow the creation of accounts on the fly disable this option. In this case if the user does not exist, a message stating that the user does not ahev a profile in the organization will appear. Prompt for password setting and activation code Disabled if we are not creating accounts on the fly Map to anonymous user Disabled OAuth 2.0 Provider logout service If we want to allow to logout from the Oauth 2.0 service when logging out from OpenAM, configure the facebook logout service: Logout options Specify if the user will be propmted, automatically logged out or not from the OAuth 2.0 service The SMTP Options are relevant only when we are creating accounts on the fly and we want to send an activation code. Use case 2: Authenticate the users from facebook in OpenAM even if there is no user profile in the local Data Store Users are authenticated in facebook and we want them to get authenticated in OpenAM Copyright 2011 ForgeRock AS. All rights reserved Page 7 15/06/10
8 even if there is no account in the user data store. In this case we are interested in saving some of the attributes coming from facebook as OpenAM Session attributes. The OpenAM principal name will be the content of the attribute configured in the Account Mapper, for example the address or the id from facebook For this use case it is necessary to change the Ignore Profile option in the Authentication Core Settings of the realm. Proxy URL Specify the URL of the OpenAM OAuth 2.0 Proxy. In the example it will be: Account Mapper Configuration: This is the attribute (or attributes) that will be used to search the users in the local user store. is the name of the attribute in the Facebook response and mail is the name of the attribute in the local user data store. For performance reasons an index on the attribute used should exist on the User Data Store. An alternative configuration could be something like: id=employeenumber In this case id is the facebook id and employeenumber is the attribute in the OpenAM containg the facebook-id. For this use case the Authenticted principal will be the content of the OpenAM attribute configured on the right side (mail or employeenumber) Attribute Mapper Configuration For this use case, if you want to save some attributes in the session, configure it aprropriately. last_name=sn first_name=givenname name=cn id=facebook-id Again, the left side are the names of the attributes in the facebook response and the right names are the names in the local user data store or the name of the attributes that will be saved in the session. Copyright 2011 ForgeRock AS. All rights reserved Page 8 15/06/10
9 Save Attributes in Session This could be enabled for this use case so the attributes of the attribute mapper are stored in the session. Create account if it does not exist If you don't want to allow the creation of accounts on the fly disable this option. In this case if the user does not exist, a message stating that the user does not have a profile in the organization will appear. For this use case we want to authenticate users even if there is no profile in the user data store, so it is necessary to change the Profile option to Ignore in the Authentication Core Settings of the realm. Prompt for password setting and activation code Disabled if we are not creating accounts on the fly Map to anonymous user Disabled OAuth 2.0 Provider logout service If we want to allow to logout from the Oauth 2.0 service when logging out from OpenAM, Copyright 2011 ForgeRock AS. All rights reserved Page 9 15/06/10
10 configure the facebook logout service: Logout options Specify if the user will be prompted, automatically logged out or not from the OAuth 2.0 service The SMTP Options are relevant only when we are creating accounts on the fly and we want to send an activation code. Use case 3: Authenticate the users from facebook in OpenAM and create users on the fly if they do not exist, without prompting anything else. For this use case, the OpenAM will look for an account that can be mapped according to the Account Mapper, if the account is not found one will be created on the fly for the user, but the suer will need to set a password first and an activation code will be sent prior to the creation of the profile. Proxy URL Specify the URL of the OpenAM OAuth 2.0 Proxy. In the example it will be: Account Mapper Configuration: This is the attribute (or attributes) that will be used to search the users in the local user store. is the name of the attribute in the Facebook response and mail is the name of the attribute in the local user data store. For performance reasons an index on the attribute used should exist on the User Data Store. An alternative configuration could be something like: id=employeenumber In this case id is the facebook id and employeenumber is the attribute in the OpenAM containg the facebook-id. For this use case the Authenticted principal will be the content of the OpenAM attribute configured on the right side (mail or employeenumber) Attribute Mapper Configuration For this use case, these are the attributes that will be part of the user profile created on the fly, so be sure that the right side corresponds to valid attributes in your local data store. Example: Copyright 2011 ForgeRock AS. All rights reserved Page 10 15/06/10
11 last_name=sn first_name=givenname name=cn id=employeenumber Again, the left side are the names of the attributes in the facebook response and the right names are the names in the local user data store or the name of the attributes that will be saved in the session. Save Attributes in Session This might not be necessary since the attributes will be stored in the local data store, but it is optional to enable it. Create account if it does not exist This option must be enabled for this use case. In this case if the user does not exist, the account will be created on the fly. The account will have a uid that is dynamically created as a UUID and the attributes of the profile will be the ones configured in the attribute mapper configuration. Prompt for password setting and activation code Enable it, since we want to ask the users to set their password and we want them to verify that they are real users by sending an activation code that will be sent to them to their account configured in their facebook profile Map to anonymous user Disabled OAuth 2.0 Provider logout service If we want to allow to logout from the Oauth 2.0 service when logging out from OpenAM, configure the facebook logout service: Logout options Specify if the user will be prompted, automatically logged out or not from the OAuth 2.0 service SMTP Options The SMTP Options are relevant only when we are creating accounts on the fly and we want to send an activation code. Copyright 2011 ForgeRock AS. All rights reserved Page 11 15/06/10
12 Use case 4: Authenticate the users from facebook in OpenAM and create users on the fly, but this time prompt the users to set a password and create the account only if they provide an activation code. For this use case, the OpenAM will look for an account that can be mapped according to the Account Mapper, if the account is not found one will be created on the fly for the user. Proxy URL Specify the URL of the OpenAM OAuth 2.0 Proxy. In the example it will be: Account Mapper Configuration: This is the attribute (or attributes) that will be used to search the users in the local user store. is the name of the attribute in the Facebook response and mail is the name of the attribute in the local user data store. For performance reasons an index on the attribute used should exist on the User Data Store. An alternative configuration could be something like: id=employeenumber In this case id is the facebook id and employeenumber is the attribute in the OpenAM containg the facebook-id. Attribute Mapper Configuration For this use case, these are the attributes that will be part of the user profile created on the fly, so be sure that the right side corresponds to valid attributes in your local data store. Example: last_name=sn first_name=givenname name=cn id=employeenumber Again, the left side are the names of the attributes in the facebook response and the right names are the names in the local user data store or the name of the attributes that will be saved in the session. Copyright 2011 ForgeRock AS. All rights reserved Page 12 15/06/10
13 Save Attributes in Session This might not be necessary since the attributes will be stored in the local data store, but it is optional to enable it. attribute in OAuth2 Response Specify here the name of the attribute in the OAuth 2.0 that contains the address of the user authenticated. In the case of facebook, the attribute is Create account if it does not exist This option must be enabled for this use case. In this case if the user does not exist, the account will be created on the fly. The account will have a uid that is dynamically created as a UUID and the attributes of the profile will be the ones configured in the attribute mapper configuration. Before creating the account the user will be prompted to set the password for the account and to provide an activation code Prompt for password setting and activation code Enable this option. The system will prompt the user to set a password before creating the account. In addition, the user will be sent an activation code to the address configured in their OAuth2.0 account (Configuration parameter attribute in OAuth2 Response ). Customization of the Password Setting page The OAuth2Pwd.jsp located under /<deployed_openam_directory>/config/auth/default/ can be customized to the desired look and feel, just keep the form and the field names as they are. If you are using a different locale, use the file under /openam/config/auth/default_xx/ wher XX corresponds to your locale code. An alternative to customize locale is using the file <deployed_openam_directory>/web- INF/classes/amAuthOAuth.properties (or the one used in your locale). Under the section Password setting page. Also notice that the password setting rules are validated by a javascript, you can change these rules, but keep in mind that at the end, it all depends on the password rules enabled in the user data store (LDAP Server, for example). The OpenAM will not validate these rules. Customization of the Activation Code page The text of the can be customized with the property activationcodemsg from the file <deployed_openam_directory>/web-inf/classes/amauthoauth.properties (or the one used in your locale). For the Activation code page presented to the user, the OpenAM will use the JSP OauthActivate.jsp located under /<deployed_openam_directory>/config/auth/default/. If you are using a different locale, use the file under /openam/config/auth/default_xx/ where XX corresponds to your locale code. You can customize this page to your look and feel. Copyright 2011 ForgeRock AS. All rights reserved Page 13 15/06/10
14 Map to anonymous user Disabled OAuth 2.0 Provider logout service If we want to allow to logout from the Oauth 2.0 service when logging out from OpenAM, configure the facebook logout service: Logout options Specify if the user will be prompted, automatically logged out or not from the OAuth 2.0 service SMTP Gateway implementation class Leave this to use the default implementation, unless you want to create your own. SMTP host Specify the host name of your SMTP gateway SMTP port Specify the port used by the SMTP service in your SMTP Host SMTP User Name If your SMTP host requires a user name, specify it here. SMTP User Password If your SMTP host requires a user name, specify its password here. SMPT SSL Enabled If your SMTP Server uses SSL, enable this option Note, if you use an external SMTP host, then you must provide a port, user and password, otherwise the SMTP server will default to localhost. Use case 5: Authenticate the users from facebook in OpenAM and map to an anonymous account if accounts can not be mapped to a local user. For this use case, the OpenAM will try to map the users to the accounts based on the account mapper, if the account does not exist locally, the user authenticated in facebook will be mapped to an anonymous user. The OpenAM session can save the attributes obtained from the response from facebook. Copyright 2011 ForgeRock AS. All rights reserved Page 14 15/06/10
15 Proxy URL Specify the URL of the OpenAM OAuth 2.0 Proxy. In the example it will be: Account Mapper Configuration: This is the attribute (or attributes) that will be used to search the users in the local user store. is the name of the attribute in the Facebook response and mail is the name of the attribute in the local user data store. For performance reasons an index on the attribute used should exist on the User Data Store. An alternative configuration could be something like: id=employeenumber In this case id is the facebook id and employeenumber is the attribute in the OpenAM containg the facebook-id. Attribute Mapper Configuration For this use case, these are the attributes that can be saved in the OpenAM session onced they have been mapped from the OAuth 2.0 Profile respomnse. Example: last_name=sn first_name=givenname name=cn id=employeenumber Again, the left side are the names of the attributes in the facebook response and the right names are the names in the local user data store or the name of the attributes that will be saved in the session. Save Attributes in Session Enable this option to save the attributes configured in the Attribute Mapper as part of the OpenAM session attribute in OAuth2 Response Specify here the name of the attribute in the OAuth 2.0 that contains the address of the user authenticated. In the case of facebook, the attribute is . This is not relevant since we will not be creating users on the fly. Copyright 2011 ForgeRock AS. All rights reserved Page 15 15/06/10
16 Create account if it does not exist This option must be disabled if we want to map users not encountered to the anonymous user. Prompt for password setting and activation code Disable this option for this use case Map to anonymous user Enabled. Anonymous User The name of the user that will act as anonymous. The user must exist in the realm where the authentication module is configured. The default is anonymous and this user exist only in the top realm by default. OAuth 2.0 Provider logout service If we want to allow to logout from the OAuth 2.0 service when logging out from OpenAM, configure the facebook logout service: Logout options Specify if the user will be prompted, automatically logged out or not from the OAuth 2.0 service SMTP Options The SMTP Options are relevant only when we are creating accounts on the fly and we want to send an activation code. Copyright 2011 ForgeRock AS. All rights reserved Page 16 15/06/10
Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming
Email Setup Guide 1. Entourage 2008 Page 2 2. ios / iphone Page 5 3. Outlook 2013 Page 10 4. Outlook 2007 Page 17 5. Windows Live Mail a. New Account Setup Page 21 b. Change Existing Account Page 25 Entourage
1. Open the preferences screen by opening the Mail menu and selecting Preferences...
Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window
How to move email to your new @students.ecu.edu account with MAC Mail
How to move email to your new @students.ecu.edu account with MAC Mail 1. Open Mail, and then do one of the following: If you've never set up any e mail accounts using Mail, the Welcome to Mail page appears.
formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide
formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide 2 Contacting Quest Software Email: Mail: Web site: [email protected] Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656
Versions Addressed: Microsoft Office Outlook 2010/2013. Document Updated: 2014. Copyright 2014 Smarsh, Inc. All right reserved
Versions Addressed: Microsoft Office Outlook 2010/2013 Document Updated: 2014 Copyright 2014 Smarsh, Inc. All right reserved Table of Contents Getting Started 3 Add Your New Account 3 Account Setup 5 Basic
INTEGRATION GUIDE. DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server
INTEGRATION GUIDE DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document
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
To configure Outlook Express for your InfoMetrics E-mail address:
To configure Outlook Express for your InfoMetrics E-mail address: 1. Open Outlook Express 2. Click the Tools menu, and select Accounts... 3. Internet Accounts window will open, click Add and menu will
Installation Guide. SafeNet Authentication Service
SafeNet Authentication Service Installation Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information
Agent Configuration Guide
SafeNet Authentication Service Agent Configuration Guide SAS Agent for Microsoft Internet Information Services (IIS) Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright
Outlook 2010 Setup Guide (POP3)
Versions Addressed: Microsoft Office Outlook 2010 Document Updated: 8/31/2012 Copyright 2012 Smarsh, Inc. All rights Purpose: This document will assist the end user in configuring Outlook 2010 to access
NeoMail Guide. Neotel (Pty) Ltd
NeoMail Guide Neotel (Pty) Ltd NeoMail Connect Guide... 1 1. POP and IMAP Client access... 3 2. Outlook Web Access... 4 3. Outlook (IMAP and POP)... 6 4. Outlook 2007... 16 5. Outlook Express... 24 1.
Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions
HOSTING Administrator Control Panel / Quick Reference Guide Page 1 of 9 Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions Exchange 2010 Outlook Profile Setup Page 2 of 9 Exchange
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
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
Email Client configuration and migration Guide Setting up Thunderbird 3.1
Email Client configuration and migration Guide Setting up Thunderbird 3.1 1. Open Mozilla Thunderbird. : 1. On the Edit menu, click Account Settings. 2. On the Account Settings page, under Account Actions,
NetMotion Mobility XE
Implementation Guide (Version 5.4) Copyright 2012 Deepnet Security Limited Copyright 2012, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID, PocketID,
Open Thunderbird. To set up an e-mail account in Thunderbird, from the Tools menu select Account Settings; choose Email account; then click Next.
Server Type: POP3 or IMAP Incoming(POP3 or IMAP) Mail Server: student.ncnm.edu POP3 Port: 995 (SSL) IMAP Port: 993 (SSL) Outgoing(SMTP) Mail Server: student.ncnm.edu SMTP Port: 587 (TLS) (Users must change
Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Internet Information Services (IIS)
SafeNet Authentication Service Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information
Using etoken for Securing E-mails Using Outlook and Outlook Express
Using etoken for Securing E-mails Using Outlook and Outlook Express Lesson 15 April 2004 etoken Certification Course Securing Email Using Certificates Unprotected emails can be easily read and/or altered
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
Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry
Email Instructions Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry ii Table of Contents Table of Contents 1 Mail Account Settings 1 Account Set
IRMACS E-Mail Setup. Your IRMACS e-mail is available internally by the IMAP protocol. The server settings used are:
IRMACS E-Mail Setup General Information This document covers both the default Apple OSX mail client and the installed Mozilla s Thunderbird mail client. If you are comfortable setting up your own mail
Email Update Instructions
1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 7 Windows Mail... 8 Thunderbird 3... 9 Apple Mail... 10 2 Email Client
Using SAML for Single Sign-On in the SOA Software Platform
Using SAML for Single Sign-On in the SOA Software Platform SOA Software Community Manager: Using SAML on the Platform 1 Policy Manager / Community Manager Using SAML for Single Sign-On in the SOA Software
How to configure your email client
How to configure your email client This guide will teach you how to set up your email client. In this guide we will cover both Outlook and Windows Live mail, which are two of the major email clients used
3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next.
To Set Up Your E-mail Account in Microsoft Outlook 2003 1. Open Microsoft Outlook 03 3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next. 4. For your server type,
Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide
Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide Document Revision Date: Nov. 13, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Introduction... 1 Exchange 2010 Outlook
Email setup information for most domains hosted with InfoRailway.
Email setup information for most domains hosted with InfoRailway. Incoming server (POP3): pop.secureserver.net port 995 (SSL) Incoming server (IMAP): imap.secureserver.net port 993 (SSL) Outgoing server
Creating an ESS instance on the Amazon Cloud
Creating an ESS instance on the Amazon Cloud Copyright 2014-2015, R. James Holton, All rights reserved (11/13/2015) Introduction The purpose of this guide is to provide guidance on creating an Expense
Application Note. ShoreTel 9: Active Directory Integration. Integration checklist. AN-10233 June 2009
Application Note AN-10233 June 2009 ShoreTel 9: Active Directory Integration This application note outlines the configuration required to prepare a customer s Microsoft Active Directory environment for
Email Update Instructions
Email Update Instructions Table of Contents Email Client Settings The Basics... 2 Outlook 2013... 2 Outlook 2007... 4 Outlook Express... 6 Windows Mail... 7 Thunderbird 3... 9 Apple Mail... 11 1 Email
Windows Live Mail Setup Guide
Versions Addressed: Windows Live Mail 2011 Document Updated: 11/24/2010 Copyright 2010 Purpose: This document will assist the end user in configuring Windows Live Mail to access a POP3 email account hosted
You may use port 587 if port 25 is blocked by your internet provider. This does not apply to customers using PolarComm internet.
Polar Communications has been working on redesigning our mail system. Some changes that customers need to be aware of with these changes are the following: Webmail: You must use http://webmail.polarcomm.com
Google Docs Print. Administrator's Guide
Google Docs Print Administrator's Guide October 2013 www.lexmark.com Contents 2 Contents Overview...3 Configuring Google Docs...4 Acquiring a Google account...4 Customizing the application icon...4 Configuring
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
Social Application Guide
Social Application Guide Version 2.2.0 Mar 2015 This document is intent to use for our following Magento Extensions Or any other cases it might help. Copyright 2015 LitExtension.com. All Rights Reserved
SETTING UP REMOTE ACCESS ON EYEMAX PC BASED DVR.
SETTING UP REMOTE ACCESS ON EYEMAX PC BASED DVR. 1. Setting up your network to allow incoming connections on ports used by Eyemax system. Default ports used by Eyemax system are: range of ports 9091~9115
Synology SSO Server. Development Guide
Synology SSO Server Development Guide THIS DOCUMENT CONTAINS PROPRIETARY TECHNICAL INFORMATION WHICH IS THE PROPERTY OF SYNOLOGY INCORPORATED AND SHALL NOT BE REPRODUCED, COPIED, OR USED AS THE BASIS FOR
Configuring the Cisco ISA500 for Active Directory/LDAP and RADIUS Authentication
Configuring the Cisco ISA500 for Active Directory/LDAP and RADIUS Authentication This application note describes how to authenticate users on a Cisco ISA500 Series security appliance. It includes these
How to Pop Email to Outlook
Webmail Access How to Pop Email to Outlook You can access your email account through the following URL: http://webmail.usalocalbiz.com. The login is your full email address and your account password. We
Copyright: WhosOnLocation Limited
How SSO Works in WhosOnLocation About Single Sign-on By default, your administrators and users are authenticated and logged in using WhosOnLocation s user authentication. You can however bypass this and
Outlook Express. Make Changes in Red: Open up Outlook Express. From the Menu Bar. Tools to Accounts - Click on. User Information
Outlook Express Open up Outlook Express From the Menu Bar Tools to Accounts - Click on Mail Tab Click on mail.btconline.net mail (default) Click on Properties button Click on the General tab User Information
Cisco ASA. Implementation Guide. (Version 5.4) Copyright 2011 Deepnet Security Limited. Copyright 2011, Deepnet Security. All Rights Reserved.
Cisco ASA Implementation Guide (Version 5.4) Copyright 2011 Deepnet Security Limited Copyright 2011, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID,
Online Statements. About this guide. Important information
Online Statements About this guide This guide shows you how to: View online statements, including CommBiz Activity Statements (Billing summaries) and online statements for Transaction Accounts, Credit
CA Nimsoft Service Desk
CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
ADFS Integration Guidelines
ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS
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
How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365
How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 1 Contents Purpose... 3 Office 365 Mail Connections... 3 Finding IMAP server... 3 Desktop computers... 4
Mozilla Thunderbird: Setup & Configuration Learning Guide
Mozilla Thunderbird: Setup & Configuration Learning Guide Exchange Email at Tufts Below you will find some nomenclature to help familiarize you with the Tufts email system. Term UTLN Email Address Exchange
External Authentication with Checkpoint R75.40 Authenticating Users Using SecurAccess Server by SecurEnvoy
External Authentication with Checkpoint R75.40 Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010 Merlin House Brunel Road Theale
Instructions Microsoft Outlook Express Page 1
Instructions Microsoft Outlook Express Page 1 Instructions Microsoft Outlook Express This manual is written for users who already have an e-mail account configured in Outlook Express and will therefore
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
DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014
DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...
Google Drive. Administrator's Guide
Google Drive Administrator's Guide November 2015 www.lexmark.com Contents 2 Contents Overview... 3 Configuring the application...4 Acquiring a Google account... 4 Accessing the configuration page for the
Email Update Instructions
1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 8 Windows Mail... 9 Thunderbird 3... 10 Apple Mail... 11 2 Email Client
Scan to E-mail Quick Setup Guide
Xerox WorkCentre M118i Scan to E-mail Quick Setup Guide 701P42574 This guide provides a quick reference for setting up the Scan to E-mail feature on the Xerox WorkCentre M118i. It includes procedures for:
DualShield Authentication Platform
Quick Start Guide (Version 5.7) Copyright 2013 Deepnet Security Limited Copyright 2013, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID, PocketID,
Using Internet or Windows Explorer to Upload Your Site
Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting
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
Configuring Outlook 2010 for Windows
Configuring Outlook 2010 for Windows This document assumes that you already have Outlook 2010 installed on your computer and you are ready to configure Outlook. Table of Contents Configuring Outlook 2010
EMR Link Server Interface Installation
EMR Link Server Interface Installation Version 1.0 ** INTRODUCTION ** If you would like assistance with installation, please contact our preferred support provider at [email protected], or call
Creating a User Profile for Outlook 2013
Creating a User Profile for Outlook 2013 This document tells you how to create a user profile for Outlook 2013 on your computer (also known as the Outlook client). This is necessary, for example, when
Application Note. Using Mercury/32 as an SMTP Relay Client
Application Note Using Mercury/32 as an SMTP Relay Client Document: AN00017 Revision: 2 Date: October 2, 2014 A product of SEGGER Microcontroller GmbH & Co. KG www.segger.com 2 Disclaimer Specifications
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
Administrator Guide. v 11
Administrator Guide JustSSO is a Single Sign On (SSO) solution specially developed to integrate Google Apps suite to your Directory Service. Product developed by Just Digital v 11 Index Overview... 3 Main
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
Strong Authentication for Juniper Networks SSL VPN
Strong Authentication for Juniper Networks SSL VPN with Powerful Authentication Management for Service Providers and Enterprises Authentication Service Delivery Made EASY Copyright Copyright 2011. CRYPTOCard
Embedded Document Accounting Solution (edas) for Cost Recovery. Administrator's Guide
Embedded Document Accounting Solution (edas) for Cost Recovery Administrator's Guide September 2013 www.lexmark.com Contents 2 Contents Overview...4 Getting started...5 Understanding installation requirements...5
Configuring Outlook 2016 for Windows
Configuring Outlook 2016 for Windows This document assumes that you already have Outlook 2016 installed on your computer and you are ready to configure Outlook. Table of Contents Configuring Outlook 2016
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
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
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
Adeptia Suite LDAP Integration Guide
Adeptia Suite LDAP Integration Guide Version 6.2 Release Date February 24, 2015 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 DOCUMENT INFORMATION Adeptia
Configuration Guide BES12. Version 12.3
Configuration Guide BES12 Version 12.3 Published: 2016-01-19 SWD-20160119132230232 Contents About this guide... 7 Getting started... 8 Configuring BES12 for the first time...8 Configuration tasks for managing
F-Secure Messaging Security Gateway. Deployment Guide
F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4
SOCIALMEDIABOX SETUP GUIDE
SOCIALMEDIABOX SETUP GUIDE (Version: 1.3, January 2016) This guide explains how to configure your social media accounts for use with SocialMediaBox v 2.0.0.0 Legal notice The information in this manual
Windows XP Exchange Client Installation Instructions
WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show
How to Secure a Groove Manager Web Site
How to Secure a Groove Manager Web Site Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the companies, organizations,
1. Open the preferences screen by opening the Mail menu and selecting Preferences...
Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window
ProxySG TechBrief LDAP Authentication with the ProxySG
ProxySG TechBrief LDAP Authentication with the ProxySG What is LDAP Authentication? Today, the network can include elements such as LANs, WANs, an intranet, and the Internet. Many enterprises have turned
Active Directory Integration for Greentree
App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3
MobileStatus Server Installation and Configuration Guide
MobileStatus Server Installation and Configuration Guide Guide to installing and configuring the MobileStatus Server for Ventelo Mobilstatus Version 1.2 June 2010 www.blueposition.com All company names,
DIGIPASS KEY series and smart card series for Juniper SSL VPN Authentication
DIGIPASS KEY series and smart card series for Juniper SSL VPN Authentication Certificate Based 2010 Integration VASCO Data Security. Guideline All rights reserved. Page 1 of 31 Disclaimer Disclaimer of
Email: [email protected] Toll Free: 1-866-716-2040 International: 1-646-506-9354
1. Check your Welcome e-mail for login credentials for the control panel. 2. Using the login details in the welcome e-mail; login at https://cp.hostallapps.com Adding Domain: 1. On the Home Page of the
TypingMaster Intra. LDAP / Active Directory Installation. Technical White Paper (2009-9)
TypingMaster Intra LDAP / Active Directory Installation Technical White Paper (2009-9) CONTENTS Contents... 2 TypingMaster Intra LDAP / Active Directory White Paper... 3 Background INFORMATION... 3 Overall
Business mail 1 MS OUTLOOK CONFIGURATION... 2
Business mail Instructions for configuration of Outlook, 2007, 2010, 2013 and mobile devices CONTENT 1 MS OUTLOOK CONFIGURATION... 2 1.1 Outlook 2007, 2010 and 2013 adding new exchange account, automatic
OneLogin Integration User Guide
OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...
Configuring the Avaya B179 SIP Conference Phone with Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0
Avaya Solution & Interoperability Test Lab Configuring the Avaya B179 SIP Conference Phone with Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0 Abstract These Application Notes
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
Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps
Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps May 2015 This guide includes: What is OAuth v2.0? What is OpenID Connect? Example: Providing OpenID Connect SSO to a Salesforce.com
Table 1 shows the LDAP server configuration required for configuring the federated repositories in the Tivoli Integrated Portal server.
Configuring IBM Tivoli Integrated Portal server for single sign-on using Simple and Protected GSSAPI Negotiation Mechanism, and Microsoft Active Directory services Document version 1.0 Copyright International
IIS, FTP Server and Windows
IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:
Microsoft Outlook 2010
Microsoft Outlook 2010 a. Open Outlook 2010. b. Click File i. Select Info. ii. Within Account Information, click Add Account. c. Within the Setup wizard select Manually configure server settings or additional
1. Navigate to Control Panel and click on User Accounts and Family Safety. 2. Click on User Accounts
This document will guide you through setting up your outgoing server (SMTP) Microsoft Outlook and Windows Live Mail. There is also a section below that guides you through the manual configuration of your
Here are the steps to configure Outlook Express for use with Salmar's Zimbra server. Select "Tools" and then "Accounts from the pull down menu.
Salmar Consulting Inc. Setting up Outlook Express to use Zimbra Marcel Gagné, February 2010 Here are the steps to configure Outlook Express for use with Salmar's Zimbra server. Open Outlook Express. Select
NODE4 SERVICE DESK SYSTEM
NODE4 SERVICE DESK SYSTEM KNOWLEDGE BASE ARTICLE INTERNAL USE ONLY NODE4 LIMITED 24/04/2015 ADD A POP, IMAP OR OFFICE 365 ACCOUNT TO OUTLOOK USING CUSTOM SETTINGS If you re setting up Outlook for the first
