Fasthosts ASP scripting examples Page 1 of 17

Size: px
Start display at page:

Download "Fasthosts ASP scripting examples Page 1 of 17"

Transcription

1

2 Introduction Sending from your web server JMail walkthrough JMail full code CDO Scripting with Access databases Using ADO with ASP to connect to an Access database on your website Scripting SQL with ASP Using ADO to connect to a MS SQL database Further reading Fasthosts ASP scripting examples Page 1 of 17

3 Introduction Whilst many of the code examples provided in this guide are applicable to any Windows based web server, the information provided is designed for customers using Fasthosts web servers; some parameters may not be valid on other hosting platforms. Important: You are responsible for the misuse of any scripts on your website. Unfortunately we are unable to provide and telephone support for scripting, but you ll find a wealth of information about ASP at: Fasthosts ASP scripting examples Page 2 of 17

4 Sending from your web server Before we go into detail on how to get your form working, let's look at some ground rules that will ensure your mail isn't blocked: Fasthosts redirects all web based mail to an SMTP Filter System. s must have either a valid "from" or "to" address which is a mailbox hosted with Fasthosts. Any that does not fulfil this criterion will not be delivered. If you are sending to a customer who has given you his address, you need to use the domain name of your website. Fasthosts' SMTP Filter System rate limits outgoing mail from any domain, to prevent bulk ing. Our limits are set to allow normal form-based activity to pass unhindered, but stop any persistent attempt to send bulk mail. The SMTP Filter System will prevent mass ing (spam). All attempts to send bulk s are logged and may result in the unfortunate suspension of your website, in accordance with our misuse policies. Fasthosts ASP scripting examples Page 3 of 17

5 JMail walkthrough The first thing to do is to make sure your form in the submitting page is correct. In its simplest form it should look like this: <form action="jmail.asp" method="post" name="mailform"> <input name=" " type="text" size="40"> <input name=" _submit" type="submit" value="send mail"> </form> Now to the real scripting (using the example form above, we re now talking about the code in the jmail.asp file). First initialise the variables. Although this isn't strictly necessary, it is good programming practice to do so. dim JMail, intcomp, strreferer, strserver, strclientip, strserverip, blnspam Next set up the JMail object: Set JMail = Server.CreateObject("JMail.SMTPMail") Now obtain some information about the website using the request.servervariables object. Note that we get the referrer page here. This is the page that carried out the page post operation. strreferer = request.servervariables("http_referer") strserver = Replace(request.servervariables("SERVER_NAME")," strclientip = request.servervariables("remote_addr") strserverip = request.servervariables("local_addr") Fasthosts ASP scripting examples Page 4 of 17

6 Note: Users behind firewalls, like Norton Personal Firewall, might experience problems with the execution of this script. In these cases, the ("HTTP_REFERER") value is usually stripped out by the firewall, causing the script to fail at this step. Next, use this information to check that the posting page is on the same website as the script. This prevents other people from using your script for bulk ing. intcomp = instr(strreferer, strserver) If intcomp > 0 Then blnspam = False Else ' Spam Attempt Block blnspam = True End If Next, populate the JMail object with the correct data. Note that the server information is used to set up the sender and the SMTP server. The recipient is obtained from the request object. JMail.ServerAddress = "smtp." & strserver & ":25" JMail.Sender = "noreply@" & strserver JMail.Subject = "JMail Example" & " " & now() JMail.AddRecipient request.form(" ") JMail.Body = "This test mail sent from: " & strserverip & " using the JMail component on the server." JMail.Priority = 3 JMail.AddHeader "Originating-IP", strclientip The following code checks that the referrer is correct, and if so, sends the to the SMTP server: If NOT blnspam Then JMail.Execute strresult = "Mail Sent." Else strresult = "Mail Not Sent." End If Fasthosts ASP scripting examples Page 5 of 17

7 After outputting whatever text you d like to use to tell the client that the job is done, clean up the objects we have used. set jmail=nothing That's it! Important: If you don't protect your scripts by checking the referrer, they will be open to abuse by bulk mailers. If this happens your website will be at risk of being suspended in accordance to our misuse policies. JMail full code <!-- ASP Code Section --> <% 'initialise objects and variables dim JMail, intcomp, strreferer, strserver, strclientip, strserverip, blnspam Set JMail = Server.CreateObject("JMail.SMTPMail") 'code to check if this page is being called from a another page on the server strreferer = request.servervariables("http_referer") strserver = Replace(request.servervariables("SERVER_NAME"), " "") strclientip = request.servervariables("remote_addr") strserverip = request.servervariables("local_addr") intcomp = instr(strreferer, strserver) If intcomp > 0 Then blnspam = False Else ' Spam Attempt Block blnspam = True End If ":25" ' This is my local SMTP server JMail.ServerAddress = "smtp." & strserver & ' This is me... JMail.Sender = "noreply@" & strserver Fasthosts ASP scripting examples Page 6 of 17

8 JMail.Subject = "JMail Example" & " " & now() ' Get the recipients mailbox from a form (note the lack of a equal sign). JMail.AddRecipient request.form(" ") JMail.Body = "This test mail sent from: " & strserverip & " using the JMail component on the server." JMail.Priority = 3 JMail.AddHeader "Originating-IP", strclientip 'send mail If NOT blnspam Then JMail.Execute strresult = "Mail Sent." Else strresult = "Mail Not Sent." End If %> <!-- HTML Output Section --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>xtreme Test</title> </head> <body topmargin="0" leftmargin="0" style="font-family: Verdana; font-size: 8pt"> <br> <%=strresult%><br> SMTP Server: <%=JMail.ServerAddress%><br> SenderIP: <%=strclientip%><br> ServerIP: <%=strserverip%><br> Server: <%=strserver%><br> Referer: <%=strreferer%><br> Receiver: <%=request.form(" ")%><br> Sender: <%=JMail.Sender%><br> <br><br> page</a> <a href="jmail.htm">return to <% %> set jmail=nothing </body> </html> Fasthosts ASP scripting examples Page 7 of 17

9 CDO Quick tip: We recommend you deliver direct to our main SMTP server cluster for speed and efficiency rather than the local MS SMTP server. To do this you need to use the CDOSYS object rather than the CDONTS object. The code below demonstrates how to use this object and the CDO configuration object to send mail. The first thing to do is to make sure your form in the submitting page is correct. In its simplest form it should look like this: <form action="cdonts.asp" method="post" name="mailform"> <input name=" " type="text" size="40"/> <input name=" _submit" type="submit" value="sendmail"/> </form> Now to the real scripting (using the example form above, we re now talking about the code in the cdonts.asp file). First initialise the variables. Although this isn't strictly necessary, it is good programming practice to do so. dim ocdomsg, ocdoconfg, strreferer, strserver, strclientip, strserverip, blnspam Next set up the CDO object. set ocdomsg = server.createobject("cdo.message") Now obtain some information about the website using the request.servervariables object. Note that we get the referrer page here. This is the page that carried out the page post operation. Fasthosts ASP scripting examples Page 8 of 17

10 strreferer = request.servervariables("http_referer") strserver = Replace(request.servervariables("SERVER_NAME"), " "") strclientip = request.servervariables("remote_addr") strserverip = request.servervariables("local_addr") strfrom = "noreply@" & strserver Next, use this information to check that the posting page is on the same website as the script. This prevents other people from using your script for bulk ing. intcomp = instr(strreferer, strserver) If intcomp > 0 Then blnspam = False Else ' Spam Attempt Block blnspam = True End If Next populate the CDO object with the correct data. Note that we use the server information to set up the sender and the SMTP server. The recipient is obtained from the request object. ocdomsg.to = request.form(" ") ocdomsg.from = strfrom ocdomsg.subject = "CDO Test Mail" ocdomsg.textbody = "This test mail has been sent from server " ocdomsg.textbody = ocdomsg.textbody & request.servervariables("local_addr") & " via CDO mail objects." The next section sets CDO to use our main SMTP server cluster rather than the local MS SMTP Service. We recommend using our main SMTP servers. strmsschema = " Set ocdoconfg = Server.CreateObject("CDO.Configuration") ocdoconfg.fields.item(strmsschema & "sendusing") = 2 ocdoconfg.fields.item(strmsschema & "smtpserver") = "smtp.fasthosts.co.uk" ocdoconfg.fields.update Set ocdomsg.configuration = ocdoconfg Fasthosts ASP scripting examples Page 9 of 17

11 The following code checks that the referrer is correct, and if so, sends the mail through CDO to the local SMTP server queue. If NOT blnspam Then ocdomsg.send strresult = "Mail Sent." Else strresult = "Mail Not Sent." End If response.write strresult After outputting whatever text you d like to tell the client that the job is done, clean up the objects we have used. set ocdomsg = nothing set ocdoconfg = nothing That s it! Important: If you don't protect your scripts by checking the referrer, they will be open to abuse by bulk mailers. If this happens your website will be at risk of being suspended in accordance to our misuse policies. Fasthosts ASP scripting examples Page 10 of 17

12 Scripting with Access databases Whilst the following code examples are applicable to any Windows based web server, the information provided is designed for customers using Fasthosts web servers; some parameters, such as the methods used to derive file paths, may not be valid on other hosting platforms. Our ASP scripts are written in VBS; we do not provide JScript equivalents. However, we do provide Perl equivalents using the same technologies. Perl users should use the same OLE objects. The current version of ADO installed on our servers is MDAC 2.8. Detailed component information can be obtained from Microsoft or one of the many scripting sites on the web. Tip: Search on Google for "recordset.movenext" or similar. Before looking at the code, the following points should be considered when using Access databases in a shared hosting environment: All scripts run on a shared server, and thus what happens on one website has an effect on the stability of certain components on other websites on the same server. Access ADO is such a component. It is a shared resource, and should therefore be programmed correctly. The Jet access engine has a limited set of resources. Once these are exhausted, the script will generate errors. These are normally temporary in nature and can occur when server loading is very heavy. These are operating system limitations, and cannot be extended or isolated by us. Fasthosts ASP scripting examples Page 11 of 17

13 You should only use Access 2000 or higher databases. If you use Access 97 you may receive the following error:- [Microsoft][ODBC Microsoft Access Driver] Cannot open database '(unknown)'. It may not be a database that your application recognizes, or the file may be corrupt. This is due to an issue in MDAC 2.5 and greater, and is only resolved by using a newer version of Access. Use as few connections as possible. If you are using session and application based objects, use a single application based connection. Otherwise, use one per script, explicitly opening the connection at the start of the script, and then closing it at the end of the script. Always use OLEDB connection strings instead of DSN connections. The provider to use for Access is "MICROSOFT.JET.OLEDB.4.0". See the connection string used below. Fasthosts ASP scripting examples Page 12 of 17

14 Using ADO with ASP to connect to an Access database on your website Now to the code. First initialise the variables. This isn't strictly necessary, but it's good programming practice to do so. dim conn, strsql, rsuser, strmdbpath set conn=server.createobject("adodb.connection") set rsuser=server.createobject("adodb.recordset") Next set up the database connection. Always explicitly open the connection. Do not use a connection string with objects such as a command or a recordset object. These implicitly open a database connection which they then leave open to time out after the script closes. This connection accesses the Northwinds database which is stored in the PRIVATE directory below the website root folder. Note the use of the Server.MapPath method to derive the correct path on the server. strmdbpath = Server.MapPath("..\private\northwind.mdb") conn.open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" & strmdbpath Now open the recordset using the current connection. In this case we are querying the customer table. strsql = "select top 10 (city) from customers" rsuser.open strsql,conn,1,2 With the recordset now open, we iterate through it and output the results to the page. Note that we don't need to use the movefirst method as the recordset points to the first record by default when opened. With an empty recordset, the loop exits immediately without errors. Do while not rsuser.eof response.write rsuser("city") & "<br>" rsuser.movenext Loop Finally, we close the objects used. Fasthosts ASP scripting examples Page 13 of 17

15 rsuser.close conn.close set rsuser=nothing set conn = nothing Fasthosts ASP scripting examples Page 14 of 17

16 Scripting SQL with ASP Whilst the following code examples are applicable to any Windows based web server, the information provided is designed for customers using Fasthosts web servers; some parameters, such as the methods used to derive file paths, may not be valid on other hosting platforms. Our ASP scripts are written in VBS; we do not provide JScript equivalents. However, we do provide Perl equivalents using the same technologies. Perl users should use the same OLE objects. Before going into details on the scripts, there is some general information about MS SQL databases and their use in a shared hosting environment, that you need to understand: Use as few connections as possible. If you are using session and application based objects, use a single application based connection. Otherwise, use one per script. Explicitly open the connection, and close it at the end of the script. Although we support ODBC connections, we recommend using DSNless OLEDB connections to any database. These are more efficient, and are demonstrated in the code example below. Fasthosts ASP scripting examples Page 15 of 17

17 Using ADO to connect to a MS SQL database Now to the code. First initialise the variables. This isn't strictly necessary, but it's good programming practice to do so. dim conn, strsql, rsuser set conn = server.createobject("adodb.connection") set rsuser= server.createobject("adodb.recordset") Next set up the database connection. Always explicitly open the connection. Do not use connection strings with objects such as a command or a recordset object. These implicitly open a database connection which they then leave open to time out after the script closes. This accesses the database PUBS on server using the username and password provided. conn.open "PROVIDER=MSDASQL;DRIVER={SQL Server};SERVER= ;UID=nnnnnnn;PWD=xxxxxxxx;DATABASE= pubs" Now open the resordset using the current connection. In this case we are querying the titles table. strsql = "select title from titles" rsuser.open strsql,conn,1,2 With the recordset now open, we can iterate through it. Note that we don't need to use the movefirst method as the recordset points to the first record by default when opened. With an empty recordset, the loop exits immediately without errors. Do while not rsuser.eof response.write rsuser("title") & "<br>" rsuser.movenext Loop Finally we close the objects used. rsuser.close conn.close set rsuser=nothing Fasthosts ASP scripting examples Page 16 of 17

18 set conn = nothing Further reading Unfortunately we are unable to provide and telephone support for scripting, but there is a range of information available online to help you along the way. Microsoft articles on ASP Active Server Pages Tutorial 25+ Tips to improve performance and style Active Server Pages: Frequently asked questions ASP Conventions ASP Troubleshooting tips and techniques Microsoft scripting home page Fasthosts ASP scripting examples Page 17 of 17

Contents. Perl scripting examples Page 1 of 10

Contents. Perl scripting examples Page 1 of 10 Contents Introduction...2 Scripting Perl with JMail...3 Using JMail in Perl to send email...4 Scripting Perl with an Access database...6 Using ADO in Perl to connect to an Access Database...8 Further reading...

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

SelectSurveyASP Install Guide

SelectSurveyASP Install Guide SelectSurveyASP Install Guide Introduction SelectSurveyASP Advanced is a meta-data driven survey application that allows users to create dynamic surveys, administer them, and view reports. The application

More information

aspwebcalendar FREE / Quick Start Guide 1

aspwebcalendar FREE / Quick Start Guide 1 aspwebcalendar FREE / Quick Start Guide 1 TABLE OF CONTENTS Quick Start Guide Table of Contents 2 About this guide 3 Chapter 1 4 System Requirements 5 Installation 7 Configuration 9 Other Notes 12 aspwebcalendar

More information

Log Analyzer Reference

Log Analyzer Reference IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...

More information

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using

More information

Book 3. Database Connectivity. U:\Book\Book_03.doc Database Connectivity

Book 3. Database Connectivity. U:\Book\Book_03.doc Database Connectivity 1 Book 3 Database Connectivity U:\Book\Book_03.doc Database Connectivity 5 10 15 Database Connectivity...1 1 Database Access With Windows ODBC...2 OLE/DB, ODBC and other Data Source Driver Models...2 Setting

More information

XMailer Reference Guide

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

More information

POP3 Connector for Exchange - Configuration

POP3 Connector for Exchange - Configuration Eclarsys PopGrabber POP3 Connector for Exchange - Configuration PopGrabber is an excellent replacement for the POP3 connector included in Windows SBS 2000 and 2003. It also works, of course, with Exchange

More information

IceWarp Server. Log Analyzer. Version 10

IceWarp Server. Log Analyzer. Version 10 IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...

More information

ParaFX.com Welcome Package

ParaFX.com Welcome Package ParaFX.com Welcome Package This document contains information regarding managing your Web Hosting Account with ParaFX.com. For Further information about this document, please visit our site: Site: http://www.parafx.com

More information

Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake.

Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake. Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake.com Introduction This document describes how to subvert the security

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

Crystal Reports. Overview. Contents. Connecting the Report Designer Component to a Data Source

Crystal Reports. Overview. Contents. Connecting the Report Designer Component to a Data Source Connecting the Report Designer Component to a Data Source Overview Contents The Crystal Reports Report Designer Component (RDC) has a number of properties and methods available at runtime to connect a

More information

Administrator s Manual

Administrator s Manual Administrator s Manual Absolute Banner Manager XE V2.0 The Powerful Banner Administration Server Developed by XIGLA SOFTWARE Copyright 2002 All Rights Reserved Visit our site at http://www.xigla.com TABLE

More information

Troubleshooting CallManager Problems with Windows NT and Internet Information Server (IIS)

Troubleshooting CallManager Problems with Windows NT and Internet Information Server (IIS) Troubleshooting CallManager s with Windows NT and Internet Information Server (IIS) Document ID: 13973 Contents Introduction Prerequisites Requirements Components Used Conventions CallManager Administration

More information

A send-a-friend application with ASP Smart Mailer

A send-a-friend application with ASP Smart Mailer A send-a-friend application with ASP Smart Mailer Every site likes more visitors. One of the ways that big sites do this is using a simple form that allows people to send their friends a quick email about

More information

Transferring Your Internet Services

Transferring Your Internet Services Page 1 of 6 Transferring Your Internet Services Below you will find the instructions necessary to move your web hosting, email, and DNS services to NuVox. The Basics Transferring your domain name Preparing

More information

SQL Server Automated Administration

SQL Server Automated Administration SQL Server Automated Administration To automate administration: Establish the administrative responsibilities or server events that occur regularly and can be administered programmatically. Define a set

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Troubleshooting guide for 80004005 errors in Active Server Pages and Microsoft Data Access Components

Troubleshooting guide for 80004005 errors in Active Server Pages and Microsoft Data Access Components Page 1 of 9 Troubleshooting guide for 80004005 errors in Active Server Pages and Microsoft Data Access Components This article was previously published under Q306518 On This Page SUMMARY MORE INFORMATION

More information

Fasthosts reseller hosting

Fasthosts reseller hosting Fasthosts reseller hosting Hints & tips We re always looking for new ways to help you get the most out of your reseller hosting account. This guide provides ideas to maximise profit using your Fasthosts

More information

VBScript Database Tutorial Part 1

VBScript Database Tutorial Part 1 VBScript Part 1 Probably the most popular use for ASP scripting is connections to databases. It's incredibly useful and surprisingly easy to do. The first thing you need is the database, of course. A variety

More information

versasrs HelpDesk quality of service

versasrs HelpDesk quality of service versacat v2.1.0 Date: 24 June 2010 Copyright 2002-2010 VersaDev Pty. Ltd. All Rights Reserved. *************************************************************** Contents ***************************************************************

More information

PDshop.NET Installation Guides (ASP.NET Edition)

PDshop.NET Installation Guides (ASP.NET Edition) PDshop.NET Installation Guides (ASP.NET Edition) PageDown Technology, LLC / Copyright 2003-2007 All Rights Reserved. Last Updated: 7/25/07 Written for Revision: 1.014 1 Table of Contents Table of Contents...2

More information

Guardian Digital Secure Mail Suite Quick Start Guide

Guardian Digital Secure Mail Suite Quick Start Guide Guardian Digital Secure Mail Suite Quick Start Guide Copyright c 2004 Guardian Digital, Inc. Contents 1 Introduction 1 2 Contacting Guardian Digital 2 3 Purpose of This Document 3 3.1 Terminology...............................

More information

Table of Contents. Chapter 1: Getting Started. Chapter 2: Using Mass Mailer TABLE OF CONTENTS. About This Manual... 4

Table of Contents. Chapter 1: Getting Started. Chapter 2: Using Mass Mailer TABLE OF CONTENTS. About This Manual... 4 TABLE OF CONTENTS Table of Contents Contents 1 Chapter 1: Getting Started About This Manual... 4 Installing Mass Mailer... Manually Opening the Setup Wizard... Mass Mailer Setup Wizard... Chapter 2: Using

More information

Workshop 5051A: Monitoring and Troubleshooting Microsoft Exchange Server 2007

Workshop 5051A: Monitoring and Troubleshooting Microsoft Exchange Server 2007 Course Syllabus Workshop 5051A: Monitoring and Troubleshooting Microsoft Exchange Server 2007 About This Workshop Elements of this syllabus are subject to change. This two-day workshop teaches messaging

More information

Mail Service Turned On

Mail Service Turned On VPS Mail Server Troubleshooting VPS Virtuozzo server customers run a private mail server as part of their default server setup. Since you are in control of the server configuration, this means that mail

More information

VP-ASP Shopping Cart QUICK START GUIDE Version 7.00. 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com

VP-ASP Shopping Cart QUICK START GUIDE Version 7.00. 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com VP-ASP Shopping Cart QUICK START GUIDE Version 7.00 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com 2 P a g e Table of Contents INTRODUCTION... 4 1 FEATURES... 5 2 WHAT DO I NEED TO RUN VP-ASP?...

More information

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers NOTE: You can use these instructions to configure instructor and student machines. Software Required Microsoft Access 2007, 2010 MicroStrategy 9.3 Microsoft SQL Server Express 2008 R2 (free from Microsoft)

More information

Guarding Against SQL Server Attacks: Hacking, cracking, and protection techniques.

Guarding Against SQL Server Attacks: Hacking, cracking, and protection techniques. Guarding Against SQL Server Attacks: Hacking, cracking, and protection techniques. In this information age, the data server has become the heart of a company. This one piece of software controls the rhythm

More information

Quick Start Guide Managing Your Domain

Quick Start Guide Managing Your Domain Quick Start Guide Managing Your Domain Table of Contents Adding Services to your Domain... 3 POP3 & SMTP Settings... 5 Looking for a little more from your Domain?... 6 Configuring Web and Email Forwarding...

More information

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names DataCove DT Active Directory Authentication In Active Directory (AD) authentication mode, the server uses NTLM v2 and LDAP protocols to authenticate users residing in Active Directory. The login procedure

More information

Domains Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc.

Domains Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Domains All Domains System administrators can use this section

More information

Tango Hostway s Reseller Platform

Tango Hostway s Reseller Platform Tango Hostway s Reseller Platform Web Hosting Plans Linux Hosting Pricing Monthly $7.95 $9.95 $11.95 $13.95 $18 Quarterly $19.88 $24.88 $29.88 $34.88 $45 Semi-Annually $39.75 $49.75 $59.75 $69.75 $90 Yearly

More information

Configuring, Customizing, and Troubleshooting Outlook Express

Configuring, Customizing, and Troubleshooting Outlook Express 3 Configuring, Customizing, and Troubleshooting Outlook Express............................................... Terms you ll need to understand: Outlook Express Newsgroups Address book Email Preview pane

More information

Job Board Integration with eempact

Job Board Integration with eempact Job Board Integration with eempact The purpose of this document is to provide you with all of the details necessary to successfully integrate eempact with the Haley Marketing Group Job Board on your website.

More information

Manual for Multiple Secure Users and for Web Hosting Companies

Manual for Multiple Secure Users and for Web Hosting Companies 1 Manual for Multiple Secure Users and for Web Hosting Companies Table of Contents Introduction...2 Multiple Secure Users...2 Web Host Companies...3 Database for Each Client...3 File Naming Convention

More information

Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group

Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group Installation Guide Version 1.5 May 2015 Edition 2002-2015 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of this manual, and

More information

escan SBS 2008 Installation Guide

escan SBS 2008 Installation Guide escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.

More information

SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10

SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 3245 University Avenue, Suite 1122 San Diego, California 92104 USA SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 Document Number: SII-TT-002 Date Issued: July 8,

More information

Bandwidth Monitor for IIS 6

Bandwidth Monitor for IIS 6 Bandwidth Monitor for IIS 6 1. Software Disclaimer WAE Tech Inc. does not and cannot warrant the software (including any fixes and updates) available at this site for download or the performance or results

More information

Getting Started with STATISTICA Enterprise Programming

Getting Started with STATISTICA Enterprise Programming Getting Started with STATISTICA Enterprise Programming 2300 East 14th Street Tulsa, OK 74104 Phone: (918) 749 1119 Fax: (918) 749 2217 E mail: mailto:developerdocumentation@statsoft.com Web: www.statsoft.com

More information

How to make the Emails you Send with Outlook and Exchange Appear to Originate from Different Addresses

How to make the Emails you Send with Outlook and Exchange Appear to Originate from Different Addresses How to make the Emails you Send with Outlook and Exchange Appear to Originate from Different Addresses If you only have a single email address from which you send all your business and personal emails

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

Service Overview & Installation Guide

Service Overview & Installation Guide Service Overview & Installation Guide Contents Contents... 2 1.0 Overview... 3 2.0 Simple Setup... 4 3.0 OWA Setup... 5 3.1 Receive Test... 5 3.2 Send Test... 6 4.0 Advanced Setup... 7 4.1 Receive Test

More information

Migrating to Anglia IT Solutions Managed Hosted Email

Migrating to Anglia IT Solutions Managed Hosted Email By Appointment to Her Majesty The Queen Supplier of IT Products and Support Anglia IT Solutions Limited Swaffham Customer Logo Here Migrating to Anglia IT Solutions Managed Hosted Email A Simple Guide

More information

Contents CHAPTER 1 IMail Utilities

Contents CHAPTER 1 IMail Utilities Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP

More information

USHA. Email Notification Setting. User Manual

USHA. Email Notification Setting. User Manual USHA Email Notification Setting User Manual 1 Email Notification configuration... 3 1.1 Mail Server Table... 3 1.1.1 Mail Server... 3 1.1.2 User Account and User Password... 4 1.1.3 Sender s Email Address...

More information

Using Barracuda Spam Firewall

Using Barracuda Spam Firewall Using Barracuda Spam Firewall Creating your Barracuda account Your Barracuda account has been created for you if you are a current Hartwick College student, staff or faculty member. Setting Your Password.

More information

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9236245 Issue 2EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300 Configuring connection settings Legal Notice Copyright Nokia 2005. All rights reserved. Reproduction,

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

Basic Exchange Setup Guide

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

More information

A D M I N I S T R A T O R V 1. 0

A D M I N I S T R A T O R V 1. 0 A D M I N I S T R A T O R F A Q V 1. 0 2011 Fastnet SA, St-Sulpice, Switzerland. All rights reserved. Reproduction in whole or in part in any form of this manual without written permission of Fastnet SA

More information

MS SQL Express installation and usage with PHMI projects

MS SQL Express installation and usage with PHMI projects MS SQL Express installation and usage with PHMI projects Introduction This note describes the use of the Microsoft SQL Express 2008 database server in combination with Premium HMI projects running on Win31/64

More information

ReportByEmail ODBC Connection setup

ReportByEmail ODBC Connection setup ReportByEmail ODBC Connection setup Page 2 of 28 Content Introduction... 3 ReportByEmail Server and changing ODBC settings... 3 Microsoft AD Windows setup... 3 Important notice regarding 32-bit / 64-bit

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Setting up and controlling E-mail

Setting up and controlling E-mail Setting up and controlling E-mail Two methods Web based PC based Setting up and controlling E-mail Web based the messages are on the Internet accessed by dial-up or broadband at your Internet Service Provider

More information

How To Manage Your Quarantine Email On A Blackberry.Com

How To Manage Your Quarantine Email On A Blackberry.Com Barracuda Spam Firewall User s Guide 1 Copyright Copyright 2005, Barracuda Networks www.barracudanetworks.com v3.2.22 All rights reserved. Use of this product and this manual is subject to license. Information

More information

MS SQL Server Database Management

MS SQL Server Database Management MS SQL Server Database Management Contents Creating a New MS SQL Database... 2 Connecting to an Existing MS SQL Database... 3 Migrating a GoPrint MS SQL Database... 5 Troubleshooting... 11 Published April

More information

Unity Error Message: Your voicemail box is almost full

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

More information

What browsers can I use to view my mail?

What browsers can I use to view my mail? How to use webmail. This tutorial is our how-to guide for using Webmail. It does not cover every aspect of Webmail; What browsers can I use to view my mail? Webmail supports the following browsers: Microsoft

More information

MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010

MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 Description: Days: 5 Prerequisites: This course will provide you with the knowledge and skills to configure and manage

More information

Integrating Web & DBMS

Integrating Web & DBMS Integrating Web & DBMS Gianluca Ramunno < ramunno@polito.it > english version created by Marco D. Aime < m.aime@polito.it > Politecnico di Torino Dip. Automatica e Informatica Open Database Connectivity

More information

Talk Internet User Guides Controlgate Administrative User Guide

Talk Internet User Guides Controlgate Administrative User Guide Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup

More information

Device Log Export ENGLISH

Device Log Export ENGLISH Figure 14: Topic Selection Page Device Log Export This option allows you to export device logs in three ways: by E-Mail, FTP, or HTTP. Each method is described in the following sections. NOTE: If the E-Mail,

More information

Instructions Microsoft Outlook Express Page 1

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

More information

Troubleshooting IMAP Clients and ViewMail for Outlook in Cisco Unity Connection 8.x

Troubleshooting IMAP Clients and ViewMail for Outlook in Cisco Unity Connection 8.x CHAPTER 17 Troubleshooting IMAP Clients and ViewMail for Outlook in Cisco Unity Connection 8.x See the following sections for problems that can occur in IMAP clients and in Cisco Unity Connection ViewMail

More information

Using the Barracuda Spam Firewall to Filter Your Emails

Using the Barracuda Spam Firewall to Filter Your Emails Using the Barracuda Spam Firewall to Filter Your Emails This chapter describes how end users interact with the Barracuda Spam Firewall to check their quarantined messages, classify messages as spam and

More information

Using Your New Webmail

Using Your New Webmail Using Your New Webmail Table of Contents Composing a New Message... 2 Adding Attachments to a Message... 4 Inserting a Hyperlink... 6 Searching For Messages... 8 Downloading Email from a POP3 Account...

More information

Quick Start Guide. Your New Email Account

Quick Start Guide. Your New Email Account Quick Start Guide Your New Email Account http://www.names.co.uk/support/ Table of Contents Adding a new email account... 3 Adding a new email address... 5 Adding a mail group... 6 How to check your emails...

More information

RoboMail Mass Mail Software

RoboMail Mass Mail Software RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.

More information

MS Enterprise Library 5.0 (Logging Application Block)

MS Enterprise Library 5.0 (Logging Application Block) International Journal of Scientific and Research Publications, Volume 4, Issue 8, August 2014 1 MS Enterprise Library 5.0 (Logging Application Block) Anubhav Tiwari * R&D Dept., Syscom Corporation Ltd.

More information

Barracuda Spam Firewall User s Guide

Barracuda Spam Firewall User s Guide Barracuda Spam Firewall User s Guide 1 Copyright Copyright 2005, Barracuda Networks www.barracudanetworks.com v3.2.22 All rights reserved. Use of this product and this manual is subject to license. Information

More information

Log Analyzer Viewer Guide

Log Analyzer Viewer Guide IceWarp Unified Communications Log Analyzer Viewer Guide Version 10.3 Printed on 10 December, 2010 Contents Log Analyzer Viewer 1 Introduction... 1 Special thanks:... 1 Getting Started... 3 Log Analyzer

More information

Transferring Hosting to Fasthosts

Transferring Hosting to Fasthosts Fasthosts Customer Support Transferring Hosting to Fasthosts This guide will show you how to transfer hosting to Fasthosts from another provider Customer Support Transferring Hosting to Fasthosts Contents

More information

Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration

Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration 1.1 How do I access the records of the domain(s) that I administer? To access the domains you administer, you

More information

TNote125 Student Locator Framework Email Notification Diagnostics

TNote125 Student Locator Framework Email Notification Diagnostics Technical Note 125 September 25, 2006 TNote125 Student Locator Framework Email Notification Diagnostics The Student Locator Agent uses standard Internet email to notify designated administrators when a

More information

Avira Managed Email Security AMES FAQ. www.avira.com

Avira Managed Email Security AMES FAQ. www.avira.com Avira Managed Email Security AMES FAQ www.avira.com Can AMES be used immediately after an account for our organization has been set up in the MyAccount user portal? Using your account requires a change

More information

Focus On echalk Email. Introduction. In This Guide. Contents:

Focus On echalk Email. Introduction. In This Guide. Contents: Focus On echalk Email Introduction Email can be very useful in a school setting. For instance, instead of writing out a memo and delivering it to everyone s mailbox in the main office, you can simply send

More information

ADO and SQL Server Security

ADO and SQL Server Security ADO and SQL Server Security Security is a growing concern in the Internet/intranet development community. It is a constant trade off between access to services and data, and protection of those services

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

Understand Troubleshooting Methodology

Understand Troubleshooting Methodology Understand Troubleshooting Methodology Lesson Overview In this lesson, you will learn about: Troubleshooting procedures Event Viewer Logging Resource Monitor Anticipatory Set If the workstation service

More information

Owner of the content within this article is www.msexchange.org Written by Marc Grote www.it-training-grote.de

Owner of the content within this article is www.msexchange.org Written by Marc Grote www.it-training-grote.de Owner of the content within this article is www.msexchange.org Written by Marc Grote www.it-training-grote.de Exchange 2003 - User, groups, distribution list and contact management with Windows 2003 Active

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information

API. Application Programmers Interface document. For more information, please contact: Version 2.01 Aug 2015

API. Application Programmers Interface document. For more information, please contact: Version 2.01 Aug 2015 API Application Programmers Interface document Version 2.01 Aug 2015 For more information, please contact: Technical Team T: 01903 228100 / 01903 550242 E: info@24x.com Page 1 Table of Contents Overview...

More information

How to make sure you receive all emails from the University of Edinburgh

How to make sure you receive all emails from the University of Edinburgh How to make sure you receive all emails from the University of Edinburgh To ensure that any email from The University of Edinburgh - or any address you choose - is not automatically sent to your junk or

More information

KUMC Spam Firewall: Barracuda Instructions

KUMC Spam Firewall: Barracuda Instructions KUMC Spam Firewall: Barracuda Instructions Receiving Messages from the KUMC Spam Firewall Greeting Message The first time the KUMC Spam Firewall quarantines an email intended for you, the system sends

More information

Load Balancing & High Availability

Load Balancing & High Availability Load Balancing & High Availability 0 Optimizing System Resources through Effective Load Balancing An IceWarp White Paper October 2008 www.icewarp.com 1 Background Every server is finite. Regardless of

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

BCM CALL LOGGER. Version 1.3.3 USER GUIDE

BCM CALL LOGGER. Version 1.3.3 USER GUIDE BCM CALL LOGGER Version 1.3.3 USER GUIDE BCM Call Logger User Guide Page 1 Contents Contents... 2 Legal Guff... 3 About BCM Call Logger... 4 Installation and prerequisites... 5 Running for the first time...

More information

Prerequisites Guide. Version 4.0, Rev. 1

Prerequisites Guide. Version 4.0, Rev. 1 Version 4.0, Rev. 1 Contents Software and Hardware Prerequisites Guide... 2 anterradatacenter Version selection... 2 Required Software Components... 2 Sage 300 Construction and Real Estate ODBC... 2 Pervasive

More information

Configuring MailArchiva with Insight Server

Configuring MailArchiva with Insight Server Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any

More information

Astaro Mail Archiving Getting Started Guide

Astaro Mail Archiving Getting Started Guide Connect With Confidence Astaro Mail Archiving Getting Started Guide About this Getting Started Guide The Astaro Mail Archiving Service is an archiving platform in the form of a fully hosted service. E-mails

More information

Standard Mailbox Email Software Setup Guide

Standard Mailbox Email Software Setup Guide Standard Mailbox Email Software Setup Guide Standard Mailbox Setup Guide Setting up a Standard mailbox only takes a few minutes. You can set up any email software to receive email from your mailbox. This

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information