msgbartop
Gossimer’s Premier Web Hosting and Domain Registration Knowledgebase.
msgbarbottom

08 Mar 10 Renewal Reminders

Gossimer sends mails to its Customers informing them about all Live Chat Service packages that are nearing their expiration date.

 

Customers of Gossimer:

Customers are sent Expiring Live Chat Service packages Renewal Instruction e-mails before they actually expire, after expiry, and on deletion of the package.

The Reminders are sent to the Customer Username email address from 45 days prior to the Live Chat Service package’s expiry, on the 1st, 11th and 21st day of every month, until it is either Renewed or Deleted (due to non-Renewal).

This Report displays the Order ID, Domain Name, Product Category, Expiry Date, Days to Expiry and Days to Deletion, besides detailed information about how to go about Renewing these Orders.
 

 

Gossimer Resellers can easily view all Expiring and Expired Orders from the Renewal Management interface from within their Reseller Control Panel and choose to Renew any Live Chat Service package on behalf of their Customer(s). Click here to read how >> 

 

IMPORTANT

When a Live Chat Service package Expires,

  • the package is immediately Suspended. This means that you would be unable to use your package, until it is Renewed.
     

  • the Customer is sent an e-mail, informing him/her that he has 30 days to Renew his Live Chat Service package, post which the package is Deleted.

 

When the Live Chat Service package is Deleted, the Customer is sent one final e-mail informing him/her that the Live Chat Service package is Deleted, since it was not Renewed within 30 days after Expiry.

Tags: , , , , , , , , , , , , , , ,

08 Mar 10 Suspending/Unsuspending an Email address

You can suspend an email address if you wish to disable it temporarily. Once suspended, any mails being sent to that email address would bounce back to the sender.

Follow the process outlined below to suspend an Email address:

1. In the Email management interface, click on List Email Addresses.

2. The following page would have a list of all Email addresses associated with your package. Select the check-box before the Email address that you wish to suspend.

3. Click on the Suspend button. This will disable the Email address until you choose to restore it.

In order to restore a suspended email address, select the check-box before it, and click on Unsuspend.

Tags: , , , , ,

04 Mar 10 How do I Monitor and Control the Content of my Mailing List?

In order to ensure that the content of the mails being sent to a list are not offensive to members, it is a good idea to employ moderators for the mailing list who monitor the content of mails. Click here to know how to specify a moderator for a mailing list >>

In addition to this you also need to specify your Message Moderation Preferences, which would govern all access to your Mailing list. You can specify:

  • Who can post messages to this list?
    • Only allow moderators to send messages (all messages by others* could either be rejected, or sent to the moderators)
    • Only allow members of the list to send messages (all messages by non-members could either be rejected, or sent to the moderators)
    • Allow everyone (all messages could first be sent to the moderators)
  • Who should receive any replies sent to a message on the Mailing list?
    • The original sender
    • The entire list
    • A specific Email address
       
    IMPORTANT  

    * Messages sent by the moderator(s) will also be sent for moderation. This feature has been built in Gossimer’s Mail Servers, so as to prevent spamming by spoofing the moderator’s email address.

Message Moderation Preferences can be specified at the time of creation of the Mailing list itself. If you wish to modify these at a later time, follow the process below:

1. In the Email management interface, go to Mailing Lists -> List.

2. The following page bears a list of all Mailing lists associated with your Email Hosting package. Click on the mailing list for which you wish to add members.

3. In the details view that follows, click on Modify.

4. On this page, you can set your Message Moderation Preferences.

5. Once you have decided on your preferences, click on Submit.

Tags: , , , , , , , , , , , , ,

03 Mar 10 Create an External Link Page

 

The Page Manager allows you to add an External Link page to your website as explained below -

1. Search for the domain name and go to Order Details view to manage your Website Builder package. Click here to learn how >>

2. In the Order Details View, click on the Build Site button to begin designing your website.

3. To create an External Link page, just select the External Link radio button in the Choose the type of webpage page, and click Submit. Click here to read in detail about how to change the web page type >>

4. This will load the following Add/Edit Link-to Page page -

Add/Edit Link-to Page

  • You can select a HTTPS URL, an Email Address, a Web Page URL or a FTP location from the Link-to Type drop-down menu.
     
  • The corresponding value needs to be provided in the Link-to URL field.
     
  • Selecting the Open Link-to page in a new window checkbox will open the link in a browser window.

This page can be changed to any of the available page types from the Choose the type of webpage page at a later time.

Tags: , , , , , , , , , , , ,

26 Feb 10 How do I specify moderators for a mailing list?

A moderator is someone who monitors the quality of the content mailed to your mailing list. It is generally considered a good practice to employ moderators for a Mailing list, who ensure that there is no abuse of the mailing list and that the content which is posted does not antagonize any members.

The owner of the list is also its primary moderator. To add moderators for your Mailing list, follow the process given below:

1. In the Email management interface, go to Mailing Lists -> List.

2. The following page bears a list of all Mailing lists associated with your Email Hosting package. Click on the mailing list for which you wish to add members.

3. In the details view that follows, click on Moderator List.

4. On this page, you can enter the moderator email addresses in the text-box provided. Each email address must be entered on a separate line. You may also enter the moderator’s name after their email address separated by a space.

5. Once you have added the moderators, click on Save Changes.

 

Tags: , , , ,

26 Feb 10 Collaboration Data Objects for Windows NT Server (CDONTS)

 

Collaboration Data Objects for Windows NT Server (CDONTS) component is a very old component shipped mainly with Windows 2000 server. Like Collaboration Data Objects (CDO), this too can be used to accept feedback from visitors via an online form which on submission would send you an Email about the information filled in by the visitor.

IMPORTANT 

Now with the arrival of Windows 2003 this component has been deprecated. Gossimer suggests that you upgrade your scripts to CDO.

 

 

You may use the sample script provided by Gossimer, and customise it to your needs. You would need to change the From Email address in the field objMail.From to any Email address on the same domain name where you are incorporating this script. For example, if your Domain Name is abc.com, then you may define the From Email address as some-name@abc.com. This Email address need not be existing on the Mail Server of abc.com, however, the domain name in the objMail.From has to be yours. You may use an Email address like Do_Not_reply@abc.com.

The Email address in the objMail.To field needs to be changed to your Email address, where you wish to receive Emails submitted through the form.

Sample Script 

 

<%

Set objMail = Server.CreateObject(“CDONTS.NewMail”)
objMail.From = “some-name@abc.com”
objMail.Subject = “Testing Mail”
objMail.To = “user@abc.com”
objMail.Body = “Testing ….”

objMail.Send
Response.Write “Mail Sent …..”
Set objMail = nothing
%>

 

Tags: , , , , , , , , , , , , , , , , , , , , , , ,

25 Feb 10 Exporting a List of your Sub-Resellers as a CSV Report

You can export a list of all or some of your Sub-Resellers, as Comma Separated Values (CSV) for your use, by following the below mentioned process:1. Login to your Reseller Admin Control Panel from http://manage.gossimer.biz/reseller

2. Click on Sub-Resellers -> Export

3. You can streamline your list based on either or all, of these criteria

  • Sub-Reseller City – Specify a City name to narrow down your list results. Leaving this field blank will result in listing Sub-Resellers from all cities.
     
  • Sub-Reseller Country – To get a list of Sub-Resellers from a particular Country, select it from this drop down, otherwise choose Select a Country to search for Sub-Resellers from all countries.
     
  • Sub-Reseller Status – Select Active or Suspended to narrow your criteria or leave as Any to select all.
     
  • Creation Date Between – By default, this field displays a date range beginning from the last week. You may select the beginning date as per your desire by toggling the appropriate drop downs.
     
  • Total Receipts Between – By specifying the Total Receipts figure in these text boxes, you can target a specific set of your Sub-Resellers.
     
  • Products – You can list Sub-Resellers who have signed up for or have not signed up for a particular Product, by selecting it from the drop down. By not selecting any Product, you would end up with a list of Sub-Resellers who have signed up for all Products.

Upon clicking on the Submit button, Gossimer would be emailing you a list of all your Sub-Resellers that satisfy the criteria you mentioned, at your Reseller Username (email address). You may also mark a copy of the exported CSV file to one or more custom email address by specifying the same under the Mark a copy of the Export to (Email Addresses) field. Multiple email addresses should be separated by a comma (,).
 

IMPORTANTThe system will accept only one Export request at a time and you will not be allowed to submit another request, untill you have been emailed the results of your previous action.

Tags: , , , , , , , , , , , , , , , ,

25 Feb 10 ERROR: Trying to fetch Admin Contact E-mail Address

You may get this error when you execute a Transfer for a Domain Name (except a .EU Domain Name) from another Registrar to Gossimer.

In order to ensure that, an Authorised person is placing this Transfer Request, we send an email to the Administrative Contact of the Domain Name for authorising the transfer. We need to fetch the e-mail address of the Administrative Contact from the Current Whois Record from the Losing Registrar.

If for some reason we are unable to contact the Whois Server of the Current Registrar you will get this message. There are two things you can do at this stage -

1. You would have received an e-mail with instructions on sending a Fax authorisation for these transfers. You can use that fax authorisation to action the transfers.

2. You can simply wait for upto 48 hours. We would attempt to contact your Registrars Whois server for the Administrative contact details every hour for 24 hours, and even try the same manually. In almost all cases we will be able to send the Administrative Contact E-mail within 48 hours.
 

IMPORTANT

This process would not be applicable for a .EU Domain Name, since the Authorization mail is sent directly from the Registry to the Registrant Contact’s Email Address.

 

Tags: , , , , , , , , , , , , , , , , , , , , , ,

24 Feb 10 What is an Email Forward or Alias?

To understand the concept of Email Forwards / Aliases, lets consider an example:

 

Assume you have just created an Email address, say sales@yourcompany.com where you wish to entertain all sales queries from your clients. Now, you desire that all mail being sent to this email address not be collected in a single mailbox, but instead be directed to the individual email addresses of all your sales team members.

This is where Email Forwards / Aliases are useful. You can setup all email for sales@yourcompany.com to be forwarded to any other single or multiple email addresses. This implies that sales@yourcompany.com is an alias for multiple email accounts or other aliases.

You can forward email to a specific address to either a local destination, or a remote one. Hence, mail sent to sales@yourcompany.com can be forwarded to either john@yourcompany.com, or john@hotmail.com, or both! Apart from this, you can also specify wild-carded destinations for your Email.

Tags: , , , , , , , , , , ,