September 1, 2010
While setting up some advanced capabilities of DovetailAgent, we ran into some IIS/Windows permission issues. This post is to capture and share some of the learnings. To start with, Kevin Miller has a good post on installing Classic ASP web application on IIS7. The “advanced” capabilities I’m referring to was setting up file attachment uploads, and saving those files off to a permanent file storage area, accessed by a UNC drive such as \\fileServer\attachments Environment: Windows Server 2008, Dovetail Agent 4.3 File Uploads The way file uploads work is that the file is first uploaded to the web server where DovetailAgent is running. Then, the application moves the file to the permanent storage location, which is commonly a share on a different server. The application also creates directories and subdirectories where needed. So if your base attachment directory is\\fileServer\attachments,…
IIS Configuration and Permissions for remote file attachments
September 1, 2010
While setting up some advanced capabilities of DovetailAgent, we ran into some IIS/Windows permission issues. This post is to capture and share some of the learnings. To start with, Kevin Miller has a good post on installing Classic ASP web application on IIS7. The “advanced” capabilities I’m referring to was setting up file attachment uploads, and saving those files off to a permanent file storage area, accessed by a UNC drive such as \\fileServer\attachments Environment: Windows Server 2008, Dovetail Agent 4.3 File Uploads The way file uploads work is that the file is first uploaded to the web server where DovetailAgent is running. Then, the application moves the file to the permanent storage location, which is commonly a share on a different server. The application also creates directories and subdirectories where needed. So if your base attachment directory is\\fileServer\attachments,…
I am adding IMAP support to one of our products. Likely more that one person out there a needed to do this, so enjoy. I’ll take you from creating an SSL certificate to configuring hMailServer to work with both secure and regular connections to testing your setup. Creating a Self Signed SSL Certificate First things first you’ll need to download OpenSSL. I downloaded the 64bit 1.0 light version which required Visual C++ 2008 Redistributables (x64) to be installed first. I told the installer to put OpenSSL in my c:utilites folder. Create a Key Next up you’ll need to create a key. I recommend you replace <host> with your machine name. >openssl genrsa -out <host>.key 1024 Certificate Request Now you need to create a certificate request. This is the file you normally send…
August 3, 2010
One of the common customization in Dovetail Agent is changing the columns that are shown in the console. Columns are typically added, removed, or reordered, depending on the business requirements and workflow of a company. In Dovetail Agent 4.3, the columns can be sorted dynamically by each user, and changes have been made to improve performance of the console by returning pages of records instead of all the records in a queue or wipbin. In Dovetail Agent 4.4 the process of getting the data has been improved, but is very similar in how the code is customized. Since customizing the columns is a common task during implementation of Dovetail Agent, going through the process here as a reference should help future endeavors. There are three pages that need to be changed to customize the columns in the console: console/getConsoleRecords.asp console/getConsoleRecordToRefresh.asp…