User Guide. September 28, Your Tracker in a Nutshell Accessing the Tracker... 2

Size: px
Start display at page:

Download "User Guide. September 28, Your Tracker in a Nutshell Accessing the Tracker... 2"

Transcription

1 User Guide September 28, 2002 version 1.9 Contents 1 Your Tracker in a Nutshell Accessing the Tracker Contents Your Tracker in a Nutshell Accessing the Tracker Web Interface Lists of Items Display, edit or entry of an item Searching Page Under the covers Access Controls Gateway Subject-line information Setting Properties Message Content Message summary Address handling Nosy List Command Line Tool Note: this document will refer to issues as the primary store of information in the tracker. This is the default of the classic template, bubt may vary in any given installation. 1

2 1 Your Tracker in a Nutshell Your tracker holds information about issues in bundles we call items. An item may be an issue (a bug or feature request) or a user. The issue-ness or user-ness is called the item s class. So, for bug reports and features, the class is issue, and for users the class is user. Each item in the tracker has an id number that identifies it along with its item class. To identify a particular issue or user, we combine the class with the number to create a unique label, so that user 1 (who, incidentally, is always the admin user) is referred to as user1. Issue number 315 is referred to as issue315. We call that label the item s designator. 1.1 Accessing the Tracker You may access your tracker through one of three ways: 1. through the web interface, 2. through the gateway, or 3. using the command line tool. The last is usually only used by administrators. Most users will use the web and interfaces. All three are explained below. Web Interface Note: this document contains screenshots of the default look and feel. Your site may have a slightly (or very) different look, but the functionality will be very similar, and the concepts still hold. The web interface is broken up into the following parts: 1. lists of items, 2. display, edit or entry of an item, and 3. searching page. Lists of Items The first thing you ll see when you log into Roundup will be a list of open (ie. not resolved) issues. This list has been generated by a bunch of controls under the covers but for now, you can see something like: The screen is divided up into three sections: you may either register or log in. Registration takes you to: Once you re logged in, the screen changes slightly to: Note that the sidebar menu has changed slightly, so you can now get to your My Details page: Note the new information on this page - the history. Display, edit or entry of an item Create a new issue with create new under the issue subheading. This will take you to: The nosy list is explained below. Enter some information and click submit new entry and you ll be rewarded with: or, if you don t enter all the required information (or some other error occurs) you ll get something like: 2

3 Searching Page XXX: some information about how searching works Under the covers Index views may be modified by the following arguments: Argument Description :sort sort by prop name, optionally preceeded with - to give descending or nothing for ascending sorting. :group group by prop name, optionally preceeded with - or to sort in descending or nothing for ascending order. :filter selects which props should be displayed in the filter section. Default is all. :columns selects the columns that should be displayed. Default is all. propname selects the values the item properties given by propname must have (very basic search/filter). Access Controls XXX Gateway sent to Roundup is examined for several pieces of information: 1. subject-line information identifying the purpose of the 2. message content which is to be extracted 3. attachments which should be associated with the message Subject-line information The subject line of the incoming message is examined to find one of: 1. the item that the message is responding to, 2. the type of item the message should create, or 3. we default the item class and try some trickiness If the subject line contains a prefix in [square brackets] then we re looking at case 1 or 2 above. Note that any re: or fwd: prefixes are stripped off the subject line before we start looking for real information. If an item designator (class name and id number, for example issue123) is found there, a new msg item is added to the messages property for that item, and any new file items are added to the files property for the item. If just an item class name is found there, we attempt to create a new item of that class with its messages property initialized to contain the new msg item and its files property initialized to contain any new file items. The third case above - where no [information] is provided, the tracker s MAIL DEFAULT CLASS configuration variable defines what class of item the message relates to. We try to match the subject line to an existing item of the default class, and if there s a match, the message is related to that matched item. If not, then a new item of the default class is created. 3

4 Setting Properties The interface also provides a simple way to set properties on items. At the end of the subject line, propname=value pairs can be specified in square brackets, using the same conventions as for the roundup set shell command. For example, setting the priority of an issue: Subject: Re: [issue1] the coffee machine is broken! [priority=urgent] adding yourself to a nosy list: Subject: Re: [issue2] we re out of widgets [nosy=+richard] setting the nosy list to just you: Subject: Re: [issue2] we re out of widgets [nosy=richard] removing yourself from a nosy list: Subject: Re: [issue2] we re out of widgets [nosy=-richard] In all cases, the message relates to issue 2. The Re: prefix is stripped off. Message Content Roundup only associates plain text (MIME type text/plain) as messages for items. Any other parts of a message are associated as downloadable files. If no plain text part is found, the message is rejected. To do this, incoming messages are examined for multiple parts: In a multipart/mixed message or part, each subpart is extracted and examined. The text/plain subparts are assembled to form the textual body of the message, to be stored in the file associated with a msg class item. Any parts of other types are each stored in separate files and given file class items that are linked to the msg item. In a multipart/alternative message or part, we look for a text/plain subpart and ignore the other parts. If the message is a response to a previous message, and contains quoted sections, then these will be stripped out of the message if the KEEP QUOTED TEXT configuration variable is set to no. Message summary The summary property on message items is taken from the first non-quoting section in the message body. The message body is divided into sections by blank lines. Sections where the second and all subsequent lines begin with a or character are considered quoting sections. The first line of the first non-quoting section becomes the summary of the message. Address handling All of the addresses in the To: and Cc: headers of the incoming message are looked up among the tracker users, and the corresponding users are placed in the recipients property on the new msg item. The address in the From: header similarly determines the author property of the new msg item. The default handling for addresses that don t have corresponding users is to create new users with no passwords and a username equal to the address. The addresses mentioned in the To:, From: and Cc: headers of the message may be added to the nosy list depending on: 4

5 ADD AUTHOR TO NOSY Does the author of a message get placed on the nosy list automatically? If new is used, then the author will only be added when a message creates a new issue. If yes, then the author will be added on followups too. If no, they re never added to the nosy. ADD RECIPIENTS TO NOSY Do the recipients (To:, Cc:) of a message get placed on the nosy list? If new is used, then the recipients will only be added when a message creates a new issue. If yes, then the recipients will be added on followups too. If no, they re never added to the nosy. Nosy List Roundup watches for additions to the messages property of items. When a new message is added, it is sent to all the users on the nosy list for the item that are not already on the recipients list of the message. Those users are then appended to the recipients property on the message, so multiple copies of a message are never sent to the same user. The journal recorded by the hyperdatabase on the recipients property then provides a log of when the message was sent to whom. If the author of the message is also in the nosy list for the item that the message is attached to, then the config var MESSAGES TO AUTHOR is queried to determine if they get a nosy list copy of the message too. Command Line Tool The basic usage is: Help: roundup-admin -h roundup-admin help -- this help roundup-admin help <command> -- command-specific help roundup-admin help all -- all available help Options: -i instance home -- specify the issue tracker "home directory" to administer -u -- the user[:password] to use for commands -c -- when outputting lists of data, just comma-separate them Commands: commit create classname property=value... display designator export [class[,class]] export dir find classname propname=value... get property designator[,designator]* help topic history designator import import dir initialise [adminpw] install [template [backend [admin password]]] list classname [property] 5

6 pack period date reindex retire designator[,designator]* rollback security [Role name] set designator[,designator]* propname=value... specification classname table classname [property[,property]*] Commands may be abbreviated as long as the abbreviation matches only one command, e.g. l == li == lis == list. All commands (except help) require a tracker specifier. This is just the path to the roundup tracker you re working with. A roundup tracker is where roundup keeps the database and configuration file that defines an issue tracker. It may be thought of as the issue tracker s home directory. It may be specified in the environment variable TRACKER HOME or on the command line as -i tracker. A designator is a classname and an itemid concatenated, eg. bug1, user10,... Property values are represented as strings in command arguments and in the printed results: Strings are, well, strings. Password values will display as their encoded value. Date values are printed in the full date format in the local time zone, and accepted in the full format or any of the partial formats explained below.: Input of... Means... " :45" :45:00 " " :00:00 "01-25" yyyy :00:00 " :13" yyyy :13:00 " :32:43" yyyy :32:43 "14:25" yyyy-mm-dd.19:25:00 "8:47:11" yyyy-mm-dd.13:47:11 "." "right now" Link values are printed as item designators. When given as an argument, item designators and key strings are both accepted. Multilink values are printed as lists of item designators joined by commas. When given as an argument, item designators and key strings are both accepted; an empty string, a single item, or a list of items joined by commas is accepted. When multiple items are specified to the roundup get or roundup set commands, the specified properties are retrieved or set on all the listed items. When multiple results are returned by the roundup get or roundup find commands, they are printed one per line (default) or joined by commas (with the -c option). Where the command changes data, a login name/password is required. The login may be specified as either name or name:password. ROUNDUP LOGIN environment variable the -u command-line option If either the name or password is not supplied, they are obtained from the command-line. Back to Table of Contents 6

Hostopia WebMail Help

Hostopia WebMail Help Hostopia WebMail Help Table of Contents GETTING STARTED WITH WEBMAIL...5 Version History...6 Introduction to WebMail...6 Cookies and WebMail...6 Logging in to your account...6 Connection time limit...7

More information

Web Mail Check v 1.0

Web Mail Check v 1.0 Web Mail Check v 1.0 TABLE OF CONTENTS LAUNCHING WEB MAIL CHECK... 3 HOME PAGE... 4 LOG IN... 4 LANGUAGE... 5 DIRECTIONS... 5 READING MESSAGES... 8 HEADERS... 10 PRINTER FRIENDLY VERSION... 11 REPLYING

More information

Smart Answer Operator Manual rev. 1.0.

Smart Answer Operator Manual rev. 1.0. Smart Answer Operator Manual rev. 1.0. 2003-2009 Eastwright Corp. www.eastwright.com 1.System Overview 1.1. Concepts The Smart Answer is a web based help desk system. The program allows efficient processing

More information

User Guideline v 2.1. For assistance please contact Grapevine on or

User Guideline v 2.1. For assistance please contact Grapevine on or SMS Broadcast User Guideline v 2.1 Support : Feedback : For assistance please contact Grapevine on +27 21 702 3333 or email support@vine.co.za Please email info@vine.co.za with your comments and feedback

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

Reading Sample. System Reports. Contents. Index. The Authors. First-hand knowledge.

Reading Sample. System Reports. Contents. Index. The Authors.  First-hand knowledge. First-hand knowledge. Reading Sample In this sample chapter, you ll learn how to use the out-of-the-box SAP BPC reports that come preloaded with your installation so that you can analyze both system administration

More information

TAMS E-IT. Approvers Manual. How to approve, reject or reassign for further approvals. Approvers Manual 2-1

TAMS E-IT. Approvers Manual. How to approve, reject or reassign for further approvals. Approvers Manual 2-1 TAMS E-IT Approvers Manual How to approve, reject or reassign for further approvals Approvers Manual 2-1 TAMS E-IT Approvers General Information: Approvers will be alerted of an EIT awaiting their action

More information

Chapter 9: Internet

Chapter 9: Internet Chapter 9: Internet Email Internet email has become one of the most popular applications on the Internet. An Internet experience is not complete without the usage of email. In this chapter we shall be

More information

Sophos Mobile as a Service

Sophos Mobile as a Service startup guide Product Version: 8 Contents About this guide... 1 What are the key steps?... 2 Change your password... 3 Change your login name... 4 Activate Mobile Advanced licenses...5 Check your licenses...6

More information

nmr 2.0 USER MANUAL Version 1.5

nmr 2.0 USER MANUAL Version 1.5 nmr 2.0 USER MANUAL Version 1.5 PS: Some sections on nmr 2.0 might have been changed since this manual was written. We are currently in the process of updating the manual. Please email nmradmin@chem.buffalo.edu

More information

OnePlace Contacts User s Guide. Managing your contacts with the OnePlace Contact Manager.

OnePlace Contacts User s Guide. Managing your contacts with the OnePlace Contact Manager. OnePlace Contacts User s Guide Managing your contacts with the OnePlace Contact Manager. How to Find It Go to http://www.ouroneplace.net Choose My Contacts Adding Contacts Contact: Summary The Contact

More information

Ticketing Table of Contents:

Ticketing Table of Contents: Table of Contents: Manage Tickets Configure 362 Chapter 8 - Sadjadi et al. Introduction While deployed agents provide extremely useful information regarding the state of all managed machine, facilitating

More information

SchoolBooking LDAP Integration Guide

SchoolBooking LDAP Integration Guide SchoolBooking LDAP Integration Guide Before you start This guide has been written to help you configure SchoolBooking to connect to your LDAP server. Please treat this document as a reference guide, your

More information

CV Manager Documentation

CV Manager Documentation CV Manager Documentation Ver 1.0 1 No more data loss! Recruit the right one! Online CV Manager is one of the most advanced online tools for processing candidates data that provides cost efficiency for

More information

Chapter 4.23: Using the Client Access Portal

Chapter 4.23: Using the Client Access Portal Chapter 4.23: Using the Client Access Portal Overview This chapter will guide you through logging into and using the Client Access Portal. The Client Access portal will give you the ability to view open

More information

Sophos Mobile as a Service

Sophos Mobile as a Service startup guide product version: 8.6 Contents About this guide... 1 What are the key steps?... 2 Change your password... 3 Change your login name... 4 Activate Mobile Advanced licenses... 5 Check your licenses...6

More information

Intercom. Configuration Checklist for Intercom CHAPTER

Intercom. Configuration Checklist for Intercom CHAPTER CHAPTER 28, a type of phone line, combines the functionality of a traditional line and a speed dial. With an intercom line, a user can call the intercom line of another user, which auto-answers to one-way

More information

2 Accessing Oracle Webmail

2 Accessing Oracle Webmail Oracle Collaboration Suite Using Oracle Webmail Release 2 (9.0.4.2) Part No. B10897-02 March 2004 You can use Oracle Webmail to: Compose and manage messages Create and manage message folders Manage public

More information

https://my.hrdantwerp.com

https://my.hrdantwerp.com https://my.hrdantwerp.com Table of contents Introduction... 3 Public zone... 4 What?... 4 How to search?... 4 How to download.pdf?... 5 How to connect to HRD online?... 5 Private zone... 6 General... 6

More information

Sophos Mobile SaaS startup guide. Product version: 7.1

Sophos Mobile SaaS startup guide. Product version: 7.1 Sophos Mobile SaaS startup guide Product version: 7.1 Contents 1 About this guide...4 2 What are the key steps?...5 3 Change your password...6 4 Change your login name...7 5 Activate SMC Advanced licenses...8

More information

Text Messaging Guide

Text Messaging Guide Text Messaging Guide 031208 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Comodo Antispam Gateway Software Version 2.12

Comodo Antispam Gateway Software Version 2.12 Comodo Antispam Gateway Software Version 2.12 User Guide Guide Version 2.12.112017 Comodo Security Solutions 1255 Broad Street Clifton, NJ, 07013 Table of Contents 1 Introduction to Comodo Antispam Gateway...3

More information

Solar Eclipse Trackers, Logs, and Queues. Release 9.0.4

Solar Eclipse Trackers, Logs, and Queues. Release 9.0.4 Solar Eclipse Trackers, Logs, and Queues Release 9.0.4 i Table Of Contents Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents,

More information

How do I upload student information into the BOS tracker system?

How do I upload student information into the BOS tracker system? How do I upload student information into the BOS tracker system? Why might you want to do this? So you can email students with an individual and unique login link to your Tracker, and therefore trace who

More information

HOW-TO GUIDE. Join or Login. About this Guide!

HOW-TO GUIDE. Join or Login. About this Guide! HOW-TO GUIDE About this Guide In this guide, you will learn about each section of the online community to help you make the best use of all it has to offer. Here you will find information on: Join or Login

More information

ORBIT User Manual v 1.0 July 2012 ORBIT USER MANUAL. Page 1 of 24

ORBIT User Manual v 1.0 July 2012 ORBIT USER MANUAL. Page 1 of 24 ORBIT USER MANUAL Page 1 of 24 Dear Customer, This User Manual is intended to give you a brief overview of ORF S Online Resource Booking and Information Terminal ORBIT and will hopefully answer most of

More information

Smart Call Home Web Application

Smart Call Home Web Application CHAPTER 3 This chapter discusses the following areas: Overview of the Launch Smart Call Home Smart Call Home Overview Page Registration Management Processes Report Generation Overview of the Smart Call

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here.

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here. UVdesk Helpdesk webkul.com/blog/uvdesk-magento2-free-helpdesk-ticket-system/ January 31, 2017 UVdesk Helpdesk is an amazing extension which allows the customers to create support tickets regarding their

More information

Mobile Forms Integrator

Mobile Forms Integrator Mobile Forms Integrator Introduction Mobile Forms Integrator allows you to connect the ProntoForms service (www.prontoforms.com) with your accounting or management software. If your system can import a

More information

HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE

HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE YOUR WEBSITE How to login Go to your website and add /wp-admin: www.palondoncourse.co.uk/xxxxxxxxx/wp-admin This will bring up the login screen.

More information

Blog Pro for Magento 2 User Guide

Blog Pro for Magento 2 User Guide Blog Pro for Magento 2 User Guide Table of Contents 1. Blog Pro Configuration 1.1. Accessing the Extension Main Setting 1.2. Blog Index Page 1.3. Post List 1.4. Post Author 1.5. Post View (Related Posts,

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Migrating from the Standard to the Enhanced PPW Driver

Migrating from the Standard to the Enhanced PPW Driver New Driver Announcement! The Property Pres Wizard (PPW) Enhanced Integration is now live in Pruvan. We recommend that you use the new driver over the original one. If you are already using the current

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Comodo Antispam Gateway Software Version 2.11

Comodo Antispam Gateway Software Version 2.11 Comodo Antispam Gateway Software Version 2.11 User Guide Guide Version 2.11.041917 Comodo Security Solutions 1255 Broad Street Clifton, NJ, 07013 Table of Contents 1 Introduction to Comodo Antispam Gateway...3

More information

Managing Supplier Information on

Managing Supplier Information on Managing Supplier Information on www.webportunities.net In most buyer organisations supplier s information and documents are managed manually. This is a very time consuming task and often documents have

More information

Comodo Comodo Dome Antispam MSP Software Version 2.12

Comodo Comodo Dome Antispam MSP Software Version 2.12 Comodo Comodo Dome Antispam MSP Software Version 2.12 User Guide Guide Version 2.12.111517 Comodo Security Solutions 1255 Broad Street Clifton, NJ, 07013 Table of Contents 1 Introduction to Comodo Dome

More information

Technical Support. Web site. 24online Support Contact. ( a) Technical support (Corporate Office):

Technical Support. Web site.   24online Support Contact. ( a) Technical support (Corporate Office): Technical Support Please feel free to contact us for any of your query, comments, or requests concerning the software you purchased, your registration status, or similar issues to Customer Care/Service

More information

Agile Studio USER GUIDE 7.3

Agile Studio USER GUIDE 7.3 Agile Studio USER GUIDE 7.3 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or

More information

D365 Modern Interface

D365 Modern  Interface D365 Modern Email Interface D365 Modern Email Interface is a solution providing inline options in case/ contact form enabling organization and management of emails in the same page in Dynamic 365 CRM.

More information

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:-

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- This is Navigation bar where you have 5 Menus and App Name. This Section I will discuss in brief in the Navigation Bar Section.

More information

ActivePay CARDHOLDER GUIDE

ActivePay CARDHOLDER GUIDE ActivePay CARDHOLDER GUIDE PNC - ACTIVEPAY CARDHOLDER TRAINING MANUAL TABLE OF CONTENTS Accessing the PNC ActivePay Web Application 2 Self Registration for Cardholders.. 3 Forgotten Username or Password

More information

Manual Speedy Report. Copyright 2013 Im Softly. All rights reserved.

Manual Speedy Report. Copyright 2013 Im Softly. All rights reserved. 1 Manual Speedy Report 2 Table of Contents Manual Speedy Report... 1 Welcome!... 4 Preparations... 5 Technical Structure... 5 Main Window... 6 Create Report... 7 Overview... 7 Tree View... 8 Query Settings

More information

B2B REGISTRATION FOR MAGENTO 2 USER GUIDE

B2B REGISTRATION FOR MAGENTO 2 USER GUIDE 1 User Guide B2B Registration for Magento 2 B2B REGISTRATION FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide B2B Registration for Magento 2 Contents 1. B2B Registrationfor Magento 2 Overview... 3

More information

Web publishing training pack Level 3 Forms

Web publishing training pack Level 3 Forms Web publishing training pack Level 3 Forms Learning objective: Forms for submitting data - create and manage forms where data is saved in the Web Publishing System (e.g. questionnaire, registration, feedback).

More information

IP VCR 2200 Series Tutorial

IP VCR 2200 Series Tutorial IP VCR 2200 Series Tutorial Release 1 Revision 1 Documentation History Version Date Updated by Changes 1.0 13/02/2006 Sophie Parker-Hodds First release 1.1 13/02/2006 Sophie Parker-Hodds Removed the Calling

More information

HPCI Help Desk System User Manual Ver. 5

HPCI Help Desk System User Manual Ver. 5 Document ID:HPCI-OF01-002E-05 HPCI Help Desk System User Manual Ver. 5 2017/6/7 HPCI Operating Office Revision History Date issued Ver. Descriptions 2012/3/30 1 2013/9/30 2 A full-fledged revision is made

More information

Smart Mail: User Manual of Webmail

Smart Mail: User Manual of Webmail Smart Mail: User Manual of Webmail English Version 2.0 1 Content 1 Introduction How to start... 3 Webmail composition... 4 2 Folder/ Mailbox Account/ additional folder... 7 Create mailbox/ folder... 8

More information

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0 ForeScout CounterACT Guest Management Portal for Sponsors How-to Guide Version 8.0 Table of Contents Welcome... 3 Supported Guest Management Portal Browsers... 4 Sign In to the Guest Management Portal...

More information

B2B REGISTRATION FOR MAGENTO 2

B2B REGISTRATION FOR MAGENTO 2 1 User Guide B2B Registration for Magento 2 B2B REGISTRATION FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide B2B Registration for Magento 2 Contents 1. B2B Registration for Magento 2 Overview... 3

More information

So, why not start making some recommendations that will earn you some cash?

So, why not start making some recommendations that will earn you some cash? 1 Welcome To Our Affiliate Program! Thank you for your interest in becoming an affiliate with The Selling Family! We love our affiliates and look forward to working with you to help you earn some passive

More information

Mantis: Quick Overview

Mantis: Quick Overview Mantis: Quick Overview Mantis: Quick Overview...1 Introduction...2 User Roles...3 Views...4 Main...4 My View...4 View Issues...4 Report Issue...4 Change Log...4 Summary...4 Docs...4 Manage...4 Edit News...4

More information

Sage CRM 2019 R1 Release Notes. Updated: February 2019

Sage CRM 2019 R1 Release Notes. Updated: February 2019 Sage CRM 2019 R1 Release Notes Updated: February 2019 2019, The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

Managing Applicants in PeopleSoft. Reference Guide

Managing Applicants in PeopleSoft. Reference Guide Contents Introduction... 3 Navigating Manage Applicants in PeopleSoft... 3 Topic 1: Access Manage Applicants Menus... 3 Topic 2: Browse Job Openings... 4 Topic 3. Using Job Opening Categories (Optional)...

More information

SCUtils Connector 2016 Guide Solution for Microsoft System Center 2016 Service Manager

SCUtils  Connector 2016 Guide Solution for Microsoft System Center 2016 Service Manager SCUtils Email Connector 2016 Guide Solution for Microsoft System Center 2016 Service Manager Published: 20 th April 2017 Version: 1.2 Authors: Marat Kuanyshev Feedback: support@scutils.com 1 Contents 1.

More information

Service Request System User Manual

Service Request System User Manual Service Request System User Manual SEPTEMBER 2012 Login to Service Request System at: www.wattplaza.com (Quick Links) Or direct at: www.ng1.angusanywhere.com 1 Getting Started Getting Started About the

More information

FormsNet3 sm Recipient Module Training Guide

FormsNet3 sm Recipient Module Training Guide FormsNet3 sm Recipient Module Training Guide FormsNet3 sm More than 95% of data collected by the CIBMTR is submitted electronically via FormsNet3 sm, a comprehensive electronic data submission system containing

More information

help.gorgias.io Documentation

help.gorgias.io Documentation help.gorgias.io Documentation Release 1.0.0 Alexandru Plugaru Nov 17, 2016 Helpdesk 1 Questions? 3 2 Overview 5 2.1 What is Gorgias Helpdesk?....................................... 5 2.2 Getting started..............................................

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources JavaScript is one of the programming languages that make things happen in a web page. It is a fantastic way for students to get to grips with some of the basics of programming, whilst opening the door

More information

1 Register 2 Take Course 3 Take Test 4 Get Certificate

1 Register 2 Take Course 3 Take Test 4 Get Certificate Training Guide for Group Administrators Use this Admin Guide if you manage a training account for a group of learners. If you are not managing a group account, please use the Learner Guide instead. Training

More information

Translation pattern setup

Translation pattern setup This chapter provides information to add, update, copy, or delete a translation pattern. For additional information, see topics related to understanding route plans in the Cisco Unified Communications

More information

Using the Scripting Interface

Using the Scripting Interface CHAPTER 5 This chapter describes the scripting interface that ACS 5.3 provides to perform bulk operations on ACS objects using the Import and Export features. ACS provides the import and export functionalities

More information

Pega Agile Studio USER GUIDE 7.4

Pega Agile Studio USER GUIDE 7.4 Pega Agile Studio USER GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

gaalliance.org and bap.gaalliance.org Users Guide

gaalliance.org and bap.gaalliance.org Users Guide IDENTITY PRINT PUBLISHING WEB Visible Logic, Inc. 142 High Street Suite 615 Portland, ME 04101 207.761.4230 visiblelogic.com gaalliance.org and bap.gaalliance.org Users Guide CONTENTS Introduction 2 Site

More information

USER MANUAL TABLE OF CONTENTS. Store Error Log Manager. Version: 0.1.1

USER MANUAL TABLE OF CONTENTS. Store Error Log Manager. Version: 0.1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Store Error Log Manager... 1 Installation& Activation... 2 Installation Steps... 2 Extension Activation... 3 Configuration... 5 Quick Notes...

More information

Accepting or Rejecting Connections Based on Domain Name or Recipient Address

Accepting or Rejecting Connections Based on Domain Name or Recipient Address Accepting or Rejecting Connections Based on Domain Name or Recipient Address This chapter contains the following sections: Overview of Accepting or Rejecting Connections Based on the Recipient s Address,

More information

Install & First Time Setup Guide

Install & First Time Setup Guide cs@cyberonic.com CONTENTS www.cyberonic.com Install & First Time Setup Guide Cyberonic Development Team December 10, 2013 This guide should help you install and set-up the CMS software for use with a pre-configured

More information

P2P Programming Assignment

P2P Programming Assignment P2P Programming Assignment Overview This project is to implement a Peer-to-Peer (P2P) networking project similar to a simplified Napster. You will provide a centralized server to handle cataloging the

More information

VolunteerMatters Wordpress Web Platform Calendar Admin Guide. Version 1.1

VolunteerMatters Wordpress Web Platform Calendar Admin Guide. Version 1.1 VolunteerMatters Wordpress Web Platform Calendar Admin Guide Version 1.1 VolunteerMatters Wordpress Web: Admin Guide This VolunteerMatters Wordpress Web Platform administrative guide is broken up into

More information

Unit 7: Working with

Unit 7: Working with Unit 7: Working with Email Questions Covered What kinds of inbound and outbound email are possible in Agiloft? How do we configure the system to send outbound email and receive inbound email? Why set up

More information

MANAGING ACTIVITIES...

MANAGING ACTIVITIES... Sales Center Guide GETTING STARTED... 2 LOGGING INTO LASSO... 2 FINDING YOUR WAY AROUND... 3 CONTACTING SUPPORT... 3 ACCESSING THE SALES CENTER... 3 SALES CENTER TIPS... 5 SEARCHING FOR A REGISTRANT...

More information

Kurzweil 3000 User and License Management

Kurzweil 3000 User and License Management Kurzweil 3000 User and License Management Revised July 18, 2018 Contents Kurzweil 3000 Web License Edition customers.... 2 Kurzweil 3000 for Web Browsers.... 2 Working with User Accounts and License Allocation....

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

Lab 5 Classy Chat. XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM

Lab 5 Classy Chat. XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM Lab 5 Classy Chat XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM In this week s lab we will finish work on the chat client programs from the last lab. The primary goals are: to use multiple

More information

Questionnaire 4.0 Setup Guide 2006/4/14

Questionnaire 4.0 Setup Guide 2006/4/14 Email Questionnaire 4.0 Setup Guide 2006/4/14 Introduction Email Questionnaire is an interactive email survey system. Unlike other on-line questionnaire systems that need a web server to construct, distribute

More information

Team Leidos Supplier User Guide

Team Leidos Supplier User Guide Team Leidos Supplier User Guide Contents 1 Purpose:... 3 2 Guidance:... 3 2.1 View OJEU Contract Notice...3 2.1.1 Obtain OJEU Contract Notice Number...3 2.1.2 Obtain LSL esourcing Tender Reference Number...4

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

Wheeling Charge Exemptions Due to ETCs

Wheeling Charge Exemptions Due to ETCs Objective Wheeling Charge Exemptions Due to ETCs Process to notify the ISO of wheeling charge exemptions due to existing transmission contracts. Overview Wheeling charges are assessed to energy exported

More information

Kean University. System Guide. cougar.kean.edu. Your window to the world

Kean University.  System Guide. cougar.kean.edu.   Your window to the world Kean University E-Mail System Guide cougar.kean.edu www.kean.edu Your window to the world USING KEAN UNIVERSITY E-MAIL SYSTEM (COUGAR) This document is divided into three sections: Messenger Express Basics:

More information

DocAve Governance Automation Online

DocAve Governance Automation Online DocAve Governance Automation Online Business User Guide Service Pack 9 Cumulative Update 6 Issued December 2017 Table of Contents What s New in this Guide... 5 About DocAve Governance Automation Online...

More information

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Admin Actions Audit Log... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Extension Activation... 3 Configuration...

More information

Continuum Continuum Service Miles Guide

Continuum  Continuum Service Miles Guide Continuum www.continuum.net Continuum Service Miles Guide Date: 12/20/2011 Table of Contents 1 ABOUT THIS GUIDE... 3 1.1 WHO SHOULD USE IT... 3 1.2 TYPOGRAPHICAL CONVENTIONS... 4 2 INTRODUCTION... 5 2.1

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Jive Forums. Administrators Guide

Jive Forums. Administrators Guide Jive Forums Administrators Guide Copyright 2006 All rights reserved. - ii - Table of Contents Table of Contents... iii 1.0 About this Document... 10 1.1 Who Should Use this Guide?...10 1.2 Document Conventions...11

More information

Sophos Mobile in Central

Sophos Mobile in Central startup guide product version: 8.6 Contents About this guide... 1 What are the key steps?... 2 Activate Mobile Advanced licenses... 3 Configure settings... 4 Configure personal settings...4 Configure IT

More information

WEBMAIL INTERFACE MANUAL GUIDE

WEBMAIL INTERFACE MANUAL GUIDE WEBMAIL INTERFACE MANUAL GUIDE (Mobile Version) Mail Hosting Service 2016. All rights reserved. Power by Support Mail team (support mail@ntt.co.th) NTT Communications (Thailand) Co.,Ltd. Library of instructions

More information

BombBomb Guide 2017

BombBomb  Guide 2017 BombBomb Email Guide 2017 BOMBBOMB WEBSITE 1. Go to app.bombbomb.com to sign into your account. 2. Enter your email address and password. 3. Click the LOGIN button. CREATE AN EMAIL Create a new email using

More information

Manage Phone Books. Phone Books and Contacts

Manage Phone Books. Phone Books and Contacts On the Phone Books tab of the Cisco Finesse administration console, you can create and manage global and team phone books and phone book contacts. Global phone books are available to all agents; team phone

More information

Preface. Purpose. Audience

Preface. Purpose. Audience This preface describes the purpose, audience, organization, and conventions of this guide, and provides information on how to obtain related documentation. The preface covers these topics: Purpose, page

More information

Choic s Administrative Login Guide

Choic s Administrative Login Guide ChoiceMail s Administrative Login Guide ChoiceMail Enterprise provides you with an Administrative Login from which you can control Global settings and administer User Accounts all through a web interface.

More information

OUT OF STOCK NOTIFICATION FOR MAGENTO 2

OUT OF STOCK NOTIFICATION FOR MAGENTO 2 1 User Guide Out of Stock Notification for Magento 2 OUT OF STOCK NOTIFICATION FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide Out of Stock Notification for Magento 2 Contents 1. Out of Stock Notification

More information

CHECKOUT CUSTOM FIELD FOR MAGENTO 2

CHECKOUT CUSTOM FIELD FOR MAGENTO 2 1 User Guide Checkout Custom Field for Magento 2 CHECKOUT CUSTOM FIELD FOR MAGENTO 2 USER GUIDE BSSCOMMERCE 1 2 User Guide Checkout Custom Field for Magento 2 Contents 1. Checkout Custom Field for Magento

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

Entering an erequest for Stores

Entering an erequest for Stores The erequest is an easy way for an employee to submit a request for products available from Stores. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

Getting Started With Web Mail Help Desk

Getting Started With Web Mail Help Desk INET010 Feb 2008 Getting Started With Web Mail Help Desk Overview... 1 Login and Logout... 2 Basic Navigation... 2 Basic Tasks... 2 Using Folders... 5 Attachments... 7 Address Book... 8 Options and Other

More information

ORDER DELIVERY DATE USER GUIDE

ORDER DELIVERY DATE USER GUIDE 1 User Guide Order Delivery Date Extension ORDER DELIVERY DATE USER GUIDE BSSCOMMERCE 1 2 User Guide Order Delivery Date Extension Contents 1. Order Delivery Date Overview... 3 2. How does Order Delivery

More information

MYCLOUD STORE PARTNER PORTAL USER GUIDE 1

MYCLOUD STORE PARTNER PORTAL USER GUIDE 1 MYCLOUD STORE PARTNER PORTAL USER GUIDE 1 Definitions: Partner portal reseller portal to manage users & get subscription reports etc, reseller uses this portal to log into the customer portal by impersonating

More information

[Type here] ID Capture V1.0

[Type here] ID Capture V1.0 ID CAPTURE USER GUIDE V 1.0 03/02/2016 Contents Installing... 2 Installation Requirements... 2 Installation... 3 Installing USB Camera... 3 Getting Started... 4 Orientation... 5 Configuring... 6 System...

More information

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Installation... 2 Drupal Manual Plug-in installation... 2 Plug-in Configuration... 4 Drupal Configuration Settings... 4

More information