Crow Canyon Systems, Inc.
San Ramon, CA, USA
Note: The Web files are provided upon purchase of the program. If you have the demo, you can review this document to get a good idea of what the Web forms will do.
Setup of Virtual Directory on Server
Using a Web-based Support form for external customers
Outlook Help Desk 3.0 includes Web-based forms for users to submit and view Help Desk Tickets. The forms are set up as a virtual directory under Internet Information Server (IIS) on an Exchange server running Outlook Web Access (OWA).
Users type “http://yourOWAservername/helpdesk” in their browser to access the Web-based forms. Users are first presented with a login screen where they enter a valid Windows account (just like OWA). Once logged in, they can submit new tickets or view unassigned tickets in the "Help Desk" folder and assigned tickets in the "Assigned Help Desk Tickets" folder. (See screen shots at end of this document.)
Users and Help Desk technicians can submit and view tickets. When viewed in the browser after being submitted, the tickets are read only and changes cannot be made to the tickets through the Web interface. Changes and updates to the tickets can be made through Outlook.
You will need Exchange Server 5.5 SP1 and above or Exchange 2000 with Outlook Web Access. Also, you need to have Outlook Help Desk 3.0 set up in the Exchange Public Folders before using the Web-based forms. Clients just need a Web browser.
Exchange 5.5:
Directory tab:

Directory Security tab, under “Anonymous Access and Authentication Control”, press Edit. Check Basic Authentication and Windows NT Challenge/Response.

Exchange 2000:
Virtual Directory tab:

Directory Security tab, under “Anonymous Access and Authentication Control”, press Edit. Check Basic Authentication only.

bstrServer
= ""
bstrServer
= Application("ServerName")
'REPLACE
THE BELOW LINE WITH YOUR SERVERNAME
bstrServer
= "YOUR SERVER NAME"
Replace the “YOUR SERVER NAME” with the NETBIOS name of your OWA server, then save and close the logon.inc file.
Windows NT: Open User Manager, then go to Policies/User Rights.
Windows 2000: Open Local Security Policy (Start/Programs/Administrative Tools). In Local Security Policy, go to Security Settings/Local Policies/User Rights Assignment. If the OWA server is a Domain Controller in Windows 2000, the “Log on Locally” right also needs to be granted in Domain Controller Security Policy (Start/Programs/Administrative Tools). In the Domain Controller Security Policy screen, go to Windows Settings/Security Settings/Local Policies/User Rights Assignments.
Our recommendation is to create a group – “OWA Users” or “HelpDesk Users” – and grant the right to this group, then add users to the Group.
Exchange 5.5 (Windows NT Server):

Exchange 2000 (Windows 2000 Server):

****Default.asp now
says this****
Set
myrootfolder = objOMSession.GetFolder(bstrPublicRootID, objInfoStore.ID)
'Now get the folders collection below the root
Set myfoldercollect = myrootfolder.Folders
Set recursefolder = myfoldercollect.GetFirst()
'Recurse it until we get the folder we are looking for
While recursefolder.Name <> "Help Desk"
Set recursefolder = myfoldercollect.GetNext()
Wend
****************************************
****Replace the above
lines with these ****
Set
myrootfolder = objOMSession.GetFolder(bstrPublicRootID, objInfoStore.ID)
Set recursefolder = myrootfolder.Folders("xxxxx").Folders("xxxx").Folders("Help
Desk")
***************************************************
Notes:
A. Set the folder path in the line below by
replacing the xxx with the folder names. The first Folders("xxx")
must be the folder right under "All Public Folders". The next
Folders("xxx") is a sub-folder under the first one, etc. Use only as
many Folders("xxx") as you need to get to the Help Desk location.
Make sure the folder names are spelled exactly as they are in the Public Folder
tree.
Set
recursefolder =
myrootfolder.Folders("xxx").Folders("xxx").Folders("Help
Desk")
B. The line below is not needed and must be
removed or remmed out:
Set
myfoldercollect = myrootfolder.Folders
C. The lines below are not needed and must be
removed or remmed out:
'
Recurse it until we get the folder we are looking for
While recursefolder.Name <> "Help Desk"
Set recursefolder = myfoldercollect.GetNext()
Wend
II. SETUP
OF FOLDER VIEWS IN OUTLOOK

Create a Help Desk view with these settings:
|
View Name |
Type |
Fields
|
Group By |
Sort |
|
Help Desk |
Table |
From User (from Help Desk Ticket fields) |
None |
Received (descending) |
|
|
|
Received (from All Mail Fields) |
|
|
|
|
|
Subject (from All Mail Fields) |
|
|
|
|
|
|
|
|
To set fields, choose Fields in the View Summary. This brings up the Show Fields box.
To change which fields you can select in “Available fields”, go to the “Select available fields from:” drop-down box in the lower left.

|
View
Name |
Type |
Fields
|
Group By |
Sort |
|
Help Desk |
Table |
From User (Assigned Help Desk Ticket fields) |
None |
Received (descending) |
|
|
|
Received (All Mail Fields) |
|
|
|
|
|
Subject (All Mail Fields) |
|
|
|
|
|
Ticket ID (Assigned Help Desk Ticket fields) |
|
|
|
|
|
Task Priority (Assigned Help Desk Ticket fields) |
|
|
|
From |
Table |
From User (Assigned Help Desk Ticket fields) |
None |
From User (ascending) |
|
|
|
Received (All Mail Fields) |
|
|
|
|
|
Subject (All Mail Fields) |
|
|
|
|
|
Ticket ID (Assigned Help Desk Ticket fields) |
|
|
|
|
|
Task Priority (Assigned Help Desk Ticket fields) |
|
|
|
Priority |
Table |
From User (Assigned Help Desk Ticket fields) |
None |
Task Priority (ascending) |
|
|
|
Received (All Mail Fields) |
|
|
|
|
|
Subject (All Mail Fields) |
|
|
|
|
|
Ticket ID (Assigned Help Desk Ticket fields) |
|
|
|
|
|
Task Priority (Assigned Help Desk Ticket fields) |
|
|
|
Ticket ID |
Table |
From User (Assigned Help Desk Ticket fields) |
None |
Ticket ID (ascending) |
|
|
|
Received (All Mail Fields) |
|
|
|
|
|
Subject (All Mail Fields) |
|
|
|
|
|
Ticket ID (Assigned Help Desk Ticket fields) |
|
|
|
|
|
Task Priority (Assigned Help Desk Ticket fields) |
|
|
Version 3.0 introduces some minor changes to the Outlook Help Desk web pages:
1. The Help Desk Ticket has a checkbox for “Emergency or High Importance”. Tickets with this box checked will be marked High Priority and a notice will be sent to the “High Importance” address in the Automatic Notification utility.
2. “Summary” and “Name” are required fields on the Help Desk Ticket. The code checks these fields and will not process the ticket until they are filled in.
The Web forms that come with Outlook Help Desk are a full-fledged web application that gives users a way to enter and view tickets without using Outlook client. This application runs on an OWA server and users must login with a Windows account. Their contact information is pulled from the Exchange or Active Directory. The web ticket is structured and puts the information into a new Help Desk ticket field by field. This web application can also be used to view assigned and unassigned tickets.
Another way to use the Web is to create a simple Web form that users and external customers can fill out without logging in. When the form is submitted, a script creates an email out of the web form and sends it to the Help Desk folder. Our email conversion script on the Help Desk folder then converts the email into a new Help Desk ticket.
The advantage to this is that users do not need a Windows accounts. Anyone who can access your Web server can fill out a ticket. The web form can run on any web server. This is a good way to service outside customers. They can come to your Web site and fill out a support ticket, and you will receive it in the Help Desk folder as a new Ticket. The information from the Web form will go into the body of the Ticket (not the individual fields) as field/value pairs. The Web forms rely on the customer to correctly fill out the contact information. They do not query Active Directory or Exchange for the user information.
With these Web forms, external customers have another way to contact the Support team. In Outlook Help Desk, customers have a variety of ways to enter support requests:
To set up these Web forms, a “Support” form is created as another page in your Web site. It should have the same look and feel as your other Web pages and be integrated into the site, perhaps by a “Click here for Support” link.
The Support page has a form with a number of fields (you can arrange this anyway you like, from very simple to more complex). The form has a Submit button that creates an email out of the form fields and sends this to the Help Desk folder. We have sample pages to help you set this up. The pages are in SupportForms.Zip (in WebFiles30.Zip):
support.asp – the Support page
SendMessage.Asp – the page that sends the email
You will need to change lines 14 & 16 in SendMessage.asp:
If
Request("Email") <> "" Then
.From =
Request("Email")
Else
.From =
"support@company.com" ' LINE 14: ANY INTERNAL SMTP ADDRESS
End If
.To =
"helpdeskfolder@company.com" ‘LINE 16: SMTP ADDRESS OF HELP DESK
FOLDER
The “Any Internal SMTP Address” in line 14 is used when customer does not fill in the email field on the support.asp. It should be the address you want on the email message when the customer leaves it blank, something like helpdesk@company.com
Line 16 is the SMTP address of the Help Desk folder. The folder needs to be mail-enabled and have an SMTP address. Also, it must have permissions set so that Anonymous is a Contributor so external customers can submit emails to the folder.
The forms can be used with the slight modification mentioned above, but you probably will want to modify the forms so that they match the format of your Web site. The forms are meant solely as samples to guide your Web developer in how to set this up. With these samples, a Web developer should know what is needed to customize these forms for your situation. Other fields can easily be added so that the email has even more information in it. Also, certain Support pages can be for certain products or certain customers, and with hidden fields, this can be conveyed to the email. When the new Ticket is generated from the email, it will carry this information along. In this manner, some of the support information can be recorded without the user entering it in.
For example, you may have two support sites, http://your web site/support-ProductA and http://your web site/support-ProductB. These go to two different versions of the support.asp. With a hidden INPUT field in the form on support.asp, you will already know when the Ticket is created which product the Support Request is for. That is one example of the flexibility a good Web developer can build into these pages.
Please contact us for more details and assistance on setting up the Web-based Support forms.
Logon screen:

Menu Page:

Submit a Ticket:

View the Assigned folder list:

View an Assigned Ticket (read-only)

