﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Newest KB Articles in E-mail &amp; Webmail</title>
    <description>Recent additions to the Knowledge Base from Integral Hosting</description>
    <link>http://www.integralhelp.com/KB/c5/e-mail-webmail.aspx</link>
    <dt>Sat, 04 Sep 2010 17:48:29 GMT</dt>
    <generator>SmarterTrack Professional 3.6.3267</generator>
    <item>
      <title>My emails are giving this error: 452 &lt;bob@mydomain.com&gt; Mailbox size limit exceeded</title>
      <link>http://www.integralhelp.com/KB/a110/my-emails-are-giving-this-error-452-bobmydomaincom.aspx</link>
      <pubDate>Wed, 30 Dec 2009 20:18:59 GMT</pubDate>
      <guid isPermaLink="false">kbarticle110</guid>
      <description>You need to remove emails from your mailbox on the mail server or increase your mailbox limit.</description>
    </item>
    <item>
      <title>Send email using my email user credentials through the CDOSYS component</title>
      <link>http://www.integralhelp.com/KB/a102/send-email-using-my-email-user-credentials-through.aspx</link>
      <pubDate>Thu, 17 Jul 2008 23:09:41 GMT</pubDate>
      <guid isPermaLink="false">kbarticle102</guid>
      <description>&lt;P&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;The following example demonstrates sending your username and password to the SMTP server to provide authentication. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;[ C# ] &lt;BR&gt;
private void Page_Load(object sender, System.EventArgs e)&lt;BR&gt;
{&lt;BR&gt;
MailMessage mail = new MailMessage();&lt;BR&gt;
mail.To = "&lt;/FONT&gt;&lt;A href="mailto:me@mycompany.com"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;me@mycompany.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;";&lt;BR&gt;
mail.From = "&lt;/FONT&gt;&lt;A href="mailto:you@yourcompany.com"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;you@yourcompany.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;";&lt;BR&gt;
mail.Subject = "this is a test email.";&lt;BR&gt;
mail.Body = "Some text goes here";&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "1"); //basic authentication&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/sendusername"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "my_username_here"); //set your username here&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/sendpassword"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "super_secret"); //set your password here SmtpMail.SmtpServer = "mail.mycompany.com"; //your real server goes here&lt;BR&gt;
SmtpMail.Send( mail );&lt;BR&gt;
}&lt;/FONT&gt;&lt;/P&gt;
&lt;P &gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;[ VB.NET ] &lt;BR&gt;
Private Sub Page_Load(sender As Object, e As System.EventArgs)&lt;BR&gt;
Dim mail As New MailMessage()&lt;BR&gt;
mail.To = "&lt;/FONT&gt;&lt;A href="mailto:me@mycompany.com"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;me@mycompany.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;"&lt;BR&gt;
mail.From = "&lt;/FONT&gt;&lt;A href="mailto:you@yourcompany.com"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;you@yourcompany.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;"&lt;BR&gt;
mail.Subject = "this is a test email."&lt;BR&gt;
mail.Body = "Some text goes here"&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "1") 'basic authentication&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/sendusername"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "my_username_here") 'set your username here&lt;BR&gt;
mail.Fields.Add("&lt;/FONT&gt;&lt;A href="http://schemas.microsoft.com/cdo/configuration/sendpassword"&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/FONT&gt;&lt;/A&gt;&lt;FONT style="FONT-SIZE: 10pt"&gt;", "super_secret") 'set your password here&lt;BR&gt;
SmtpMail.SmtpServer = "mail.mycompany.com" 'your real server goes here&lt;BR&gt;
SmtpMail.Send(mail)&lt;BR&gt;
&lt;/FONT&gt;&lt;/P&gt;</description>
    </item>
    <item>
      <title>How to Set Up Your Trusted Senders List</title>
      <link>http://www.integralhelp.com/KB/a63/how-to-set-up-your-trusted-senders-list.aspx</link>
      <pubDate>Thu, 03 Jul 2008 20:09:05 GMT</pubDate>
      <guid isPermaLink="false">kbarticle63</guid>
      <description>Email addresses (ex: joe@example.com) or
entire domain names (ex: example.com) can be added to your list of
trusted senders (or white list). When email comes in from a trusted
sender, all spam filtering for that email will be bypassed. &lt;br&gt;
&lt;br&gt;
You can manually add email addresses or domain names to the Trusted Senders list at the Domain level or the Individual level.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Adding Trusted Senders at the Domain Level&lt;/strong&gt;&lt;br&gt;
You
will need to be logged into SmarterMail as the primary or an
administrative user to configure this level. Changes made here affect
the whole domain and blankets over every address created.&lt;br&gt;
&lt;br&gt;
1. Log
in to your mail account at
http://mail.yourdomain.com (replace 'yourdomain.com' with your actual
domain). &lt;br&gt;
&lt;br&gt;
2. Once logged into SmarterMail, access the Domain
Settings Menu located at the top of the account. In the drop-down menu,
choose Domain Spam Filtering. &lt;br&gt;
&lt;br&gt;
3. Click on the Trusted Senders
tab to enter the email addresses and/or domains below that will skip
spam checking. Enter one email address or domain name per line. Once
you are done adding to the list, click Save.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Adding Trusted Senders at the Individual Level&lt;/strong&gt; &lt;br&gt;
All
email users have access to this with the SmarterMail web interface for
their own account. This will add these trusted senders to just this
mail account and not all accounts for the domain. &lt;br&gt;
&lt;br&gt;
1. Log in to your mail account at http://webmail.yourdomain.com
(replace 'yourdomain.com' with your actual domain). &lt;br&gt;
&lt;br&gt;
2. Once
logged into SmarterMail, access the Settings Menu located at the top of
the account. In the drop-down menu, choose My Spam Filtering. &lt;br&gt;
&lt;br&gt;
3.
Click on the Trusted Senders tab to enter the email addresses and/or
domains below that will skip spam checking. Enter one email address or
domain name per line. Once you are done adding to the list, click Save&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Please note:&lt;/strong&gt;
normal content filtering rules will still be followed. Any emails that
you "unmark as spam" will add the sender to your trusted senders list
automatically.</description>
    </item>
    <item>
      <title>Greylisting in SmarterMail</title>
      <link>http://www.integralhelp.com/KB/a61/greylisting-in-smartermail.aspx</link>
      <pubDate>Tue, 01 Jul 2008 21:41:12 GMT</pubDate>
      <guid isPermaLink="false">kbarticle61</guid>
      <description>SmarterMail 4.0 incorporates a new feature called "greylisting" which is designed to significantly reduce spam. &lt;BR&gt;
&lt;BR&gt;
1. user@domain.com sends you a message &lt;BR&gt;
2. Smartermail responds with '4.5.1, please try again later' (This is acceptable according to applicable SMTP standards) &lt;BR&gt;
3. The sending server gets that error and queues the mail according to it's retry schedule ... somehere between 15 and 60 minutes is average (an SMTP server is *required* to do this according to the SMTP standards, but spammers typically do not do this). Our servers are set for a minimum of 10 minutes before accepting and a maximum of 360 minutes (6 hours) before expiring &lt;BR&gt;
4. When the time passes and the sending server tries again, Smartermail recognizes the message from earlier and allows it to deliver. &lt;BR&gt;
5. Smartermail puts the address into a 'good sender' list that it keeps for a number of days (currently set to 180), so any message between now and then from that sender will NOT be delayed. &lt;BR&gt;
&lt;BR&gt;
Because of greylisting, you may experience what appear to be delays in receiving mail. After the first mail, however, this should disappear. It is also possible that some mailiing lists, etc. may not appear at all if they do not retry (and, if they don't, they are not following the relevant IETF standards relating to SMTP). &lt;BR&gt;
&lt;BR&gt;
You can disable greylisting by logging into the web mail interface (http://webmail.yourdomainname.com), going to Settings ... My Settings and checking the "Bypass Greylisting" checkbox under the Mailbox tab. &lt;BR&gt;</description>
    </item>
    <item>
      <title>How do I access my webmail?</title>
      <link>http://www.integralhelp.com/KB/a60/how-do-i-access-my-webmail.aspx</link>
      <pubDate>Tue, 01 Jul 2008 21:40:20 GMT</pubDate>
      <guid isPermaLink="false">kbarticle60</guid>
      <description>The Information in this article applies to: &lt;BR&gt;
&lt;BR&gt;
Email Webmail &lt;BR&gt;
&lt;BR&gt;
ANSWER: &lt;BR&gt;
1) In your web browser type the following in the Address bar: http://webmail.yourdomain.com &lt;BR&gt;
2) Your username will be your complete email address. For example: username@yourdomain.com &lt;BR&gt;
3) The password you provided in the control panel when you created the account &lt;BR&gt;
&lt;BR&gt;
NOTE* New accounts can be created through the control panel.</description>
    </item>
    <item>
      <title>How do I creating my own email SPAM filtering rules?</title>
      <link>http://www.integralhelp.com/KB/a59/how-do-i-creating-my-own-email-spam-filtering-rules.aspx</link>
      <pubDate>Tue, 01 Jul 2008 21:39:25 GMT</pubDate>
      <guid isPermaLink="false">kbarticle59</guid>
      <description>The Information in this article applies to: &lt;BR&gt;
&lt;BR&gt;
SPAM Filtering &lt;BR&gt;
&lt;BR&gt;
ANSWER: &lt;BR&gt;
In order to create your own filters. (we suggest that you keep the default settings as they work very well for the majority) &lt;BR&gt;
&lt;BR&gt;
1. First login to your webmail account ie. http://webmail.yourdomain.com &lt;BR&gt;
2. At the top of your screen you will see 'Settings' dropdown menu. Click on the the menu and select My Spam Filtering. &lt;BR&gt;
3. Click Overide spam settings for this account and select how you want to handle spam for thos levels. &lt;BR&gt;
&lt;BR&gt;
If you require more help with how to set up spam filtering rules, please click on the help icon in the top right corner of the screen for more information about these settings or contact Support.</description>
    </item>
    <item>
      <title>General Integral Hosting Mail Server Information</title>
      <link>http://www.integralhelp.com/KB/a58/general-integral-hosting-mail-server-information.aspx</link>
      <pubDate>Tue, 01 Jul 2008 21:38:00 GMT</pubDate>
      <guid isPermaLink="false">kbarticle58</guid>
      <description>The information in this article applies to: &lt;BR&gt;
&lt;BR&gt;
Email &lt;BR&gt;
POP3 &lt;BR&gt;
IMAP &lt;BR&gt;
SMTP &lt;BR&gt;
&lt;BR&gt;
SUMMARY: &lt;BR&gt;
This document contains the general information for accessing the Integral Hosting mail server for sending and receiving email. &lt;BR&gt;
&lt;BR&gt;
DETAILS: &lt;BR&gt;
Integral Hosting provides all customers with access to send and receive internet email using their domain name. To do this you will need to configure the email client on your computer to use the servers following the conventions detailed here. &lt;BR&gt;
&lt;BR&gt;
Mail Server Hostname Convention &lt;BR&gt;
We will use the domain name "customerdomain.com" for the example domain name. You should replace "customerdomain.com" with the domain name you have setup with your hosting account. By creating these default DNS records it eliminates the need for our customers to memorize a specific hostname off of the integralhosting.com domain name.&amp;nbsp;&lt;BR&gt;
&lt;BR&gt;
Mail Servers (DotNetPanel)&lt;BR&gt;
POP3 Server Hostname: pop.customerdomain.com &lt;BR&gt;
SMTP Server Hostname: smtp.customerdomain.com&lt;BR&gt;
IMAP Server Hostname: imap.customerdomain.com&amp;nbsp;&lt;BR&gt;
&lt;BR&gt;
Mail Servers (HELM)&lt;BR&gt;
POP3 Server Hostname: mail.customerdomain.com &lt;BR&gt;
SMTP Server Hostname: mail.customerdomain.com&lt;BR&gt;
IMAP Server Hostname: mail.customerdomain.com&amp;nbsp;&lt;BR&gt;
&lt;BR&gt;
POP &amp;amp; Imap Login Name Convention &lt;BR&gt;
The login name for logging into your POP and IMAP accounts follow the convention of being the full email address, not just the user name. For example you create the POP account with the email address of " user@customerdomain.com" . The proper login name is "user@customerdomain.com" not "user" . You must use the full email address as the login name.&amp;nbsp;&lt;BR&gt;
&lt;BR&gt;
Mailbox Quota Size (DotNetPanel)&lt;BR&gt;
This set set via the control panel when you create new&amp;nbsp;accounts.&amp;nbsp;&lt;BR&gt;
&lt;BR&gt;
Mailbox Quota Size (HELM)&lt;BR&gt;
All customer mailboxes are the same size by default, 20 MB. &lt;BR&gt;
&lt;BR&gt;
Maximum Email Message Size &lt;BR&gt;
All messages incoming, and outgoing are limited to 15 MB, including the size of the attachment. &lt;BR&gt;
Note: Even though the server can send and receive email up to 15 MegaBytes in size, the size of an email you can receive is limited to available space in your mailbox. &lt;BR&gt;
&lt;BR&gt;
SMTP Authentication (POP-Before-SMTP) &lt;BR&gt;
The Integral Hosting mail servers use a method commonly referred to as POP-Before-SMTP to authenticate access to send email through our SMTP server. This means that in order for a customer to send an email through the SMTP server they must first check their mail via POP/IMAP first. Most modern email clients do they by default, or offer special settings to follow this convention. &lt;BR&gt;
Note: Integral Hosting uses this to restrict non Integral Hosting customers from being able to send email, and abuse the smtp server. Without this spammers could access the SMTP server and spam from it. &lt;BR&gt;
&lt;BR&gt;
MORE INFORMATION &lt;BR&gt;
Customers should access the mail servers using the hostname's detailed below, accessing them via the IP addresses they resolve to is highly unadvised. The hostname convention will not change, the IP addresses they point to however could change for many reasons. Using the hostnames removes the need to update your settings if the IP addresses were to ever change. &lt;BR&gt;</description>
    </item>
    <item>
      <title>My ISP is blocking SMTP Port 25. Is there an alternative?</title>
      <link>http://www.integralhelp.com/KB/a2/my-isp-is-blocking-smtp-port-25-is-there-an-alternative.aspx</link>
      <pubDate>Mon, 30 Jun 2008 22:00:06 GMT</pubDate>
      <guid isPermaLink="false">kbarticle2</guid>
      <description>The Information in this article applies to:&lt;BR&gt;
&lt;BR&gt;
SMTP Port 25&lt;BR&gt;
&lt;BR&gt;
DETAILS:&lt;BR&gt;
My ISP is blocking SMTP Port 25. Is there an alternate? &lt;BR&gt;
&lt;BR&gt;
ANSWER:&lt;BR&gt;
Now manys ISPs have started to block the use of port 25, ISP's that block SMTP Port 25 will be unable to send email messages via the Integral Hosting Mail Servers.&lt;BR&gt;
&lt;BR&gt;
For a number of reasons, we also run SMTP on port 366. If you would like to overide your ISPs block, simply edit your email account server settings in your email client to use port 366 instead of 25 and you will be able to send email.&lt;BR&gt;
&lt;BR&gt;
NOTES:&lt;BR&gt;
Integral Hosting does not run SMTP on port 366 just to circumvent your ISPs policy, it just happens to be an additional port we allow SMTP access through.</description>
    </item>
  </channel>
</rss>