November 7, 2006

How to set up Email Account in Microsoft Entourage for Macintosh OS X

by @ 2:17 am. Filed under Email Hosting

Hello Guys!

Set up your email account in Microsoft Entourage for Macintosh OS X.
Perform the steps given below and you will be able to set up your accounts.

1) Open Entourage, go to the “Tools” menu and click on “Accounts…”

2) When the “Internet Accounts” window appears, click on the “Mail” tab. Click and hold on the “New” button, moving your pointer over the “Mail…” label and release the mouse button.

3) When the “Account Setup Assistant” dialog starts, begin filling out Your name: the name you want to appear on all your emails you send to people. At the bottom left of this window, click Configure account manually.

4) In the New Account window, choose IMAP, the recommended protocol for U of MN e-mail, unless, as an advanced user, you have a reason to use POP. Click OK.

5) In the Edit Account window, fill in the following information:

Account Settings
Account name: Your full name
Include this account…: (optional)

Personal information
Name: Your full name
E-mail address: someone@example.com

Receiving mail
Account ID: Your internet ID
IMAP server: .email.example.com
Password/Save password: (optional)

Sending mail
SMTP Server: smtp.example.com

6) Set advanced receiving options:

This IMAP service requires a secure connection (SSL) should be checked.

Override default IMAP port: check if 993 isn’t set, and reset to 993 if needed.

7) Set advanced sending options:

SMTP service requires secure connection (SSL) should be checked.

Override default SMTP port should be checked and changed to 587. If you have trouble sending e-mail with this configuration, try port 465 instead.

SMTP server requires authentication should be checked.
Use same settings as incoming mail server should be set.

8) Settings in the Options tab are optional. The settings shown in the Advanced tab are preferred, but the “Delete options” can be altered to suit your needs.

« Previous entries

October 22, 2006

Wrong Disk Quota for Email Accounts in Webmail

by @ 3:55 pm. Filed under cPanel Hosting, Email Hosting

Greetings ,

Pissed off with wrong disk usages for your email accoounts in Webmail ?

Dont worry ..

Just find and remove below files from your account ..
1. find /home/username/mail/ -name maildirsize

2. find /home/username/.cpanel-datastore/ -name “diskusage_*”
Cheers :)

Kyle

« Previous entries

October 15, 2006

Configure Outlook Express for e-mail services. POP3 Service.

by @ 6:08 am. Filed under Uncategorized, Email Hosting

You must perform this procedure on e-mail clients that will use the POP3 service
===================================================================================================
1)Click Start, point to All Programs, and then click Outlook Express.
2)On the Tools menu, click Accounts.
3)Click Add, and then click Mail
4)Type Your name in Display name as you would like it to appear.
5)Type your email address people use to send email messages to you.
6)Type mail.domainname under incoming mail(POP3, IMAP OR HTTP) server as well as under Outgoing mail SMTP server.
For example if your domainname is example.com then type under incoming mail(POP3, IMAP OR HTTP) server, mail.example.com and under Outgoing mail SMTP server, mail.example.com.
7)Follow the instructions as above in the Internet Connection Wizard until you reach the Internet Mail Logon page
8)In Account name, type your POP3 service user name, followed by the domain, for example, someone@example.com.
In Password, type the password associated with your POP3 service e-mail account.
9)Click on properties button.
10)Enable: My servers requires authentication in servers tab
11)Enable: Leave a copy of message on the server in advanced tab.

« Previous entries

October 8, 2006

Email Error: Unrouteable address

by @ 4:03 pm. Filed under Blogging, cPanel Hosting, Linux Hosting, Email Hosting

Hello Friends,

While sending emails from your email address and you get the error Unrouteable address with RCPT reject. That means the problem at receivers end.

Check the following things.

1. Check the domains entry is available in userdoamins.

2. Check the domains entry is is available in localdomain

3. check the domain must having catchall address set if not then set
vi /etc/valiases/domain.com

*: username

4. also make sure that the mail folder having ownership user:mail

5 restart exim services once.

6. Now your problem will get resolved.

Tuks:)

« Previous entries

September 29, 2006

How spamassassin works.

by @ 10:22 pm. Filed under cPanel Hosting, Server Security, Linux Hosting, Email Hosting

Greetinngs,

Check out its feature on how it works.

–> There are several ways that SpamAssassin makes up its mind about a
message:
–> The message headers can be checked for consistency and adherence to
Internet standards (e.g., is the date formatted properly?).
–> The headers and body can be checked for phrases or message elements
commonly found in spam (e.g., “MAKE MONEY FAST” or instructions on how to be
removed from future mailings)-in several languages.
–> The headers and body can be looked up in several online databases that
track message checksums of verified spam messages.
–> The sending system’s IP address can be looked up in several online lists
of sites that have been used by spammers or are otherwise suspicious.
–> Specific addresses, hosts, or domains can be blacklisted or whitelisted.
A whitelist can be automatically constructed based on the sender’s past
history of messages.
–> SpamAssassin can be trained to recognize the types of spam that you
receive by learning from a set of messages that you consider spam and a set
that you consider non-spam. (SpamAssassin and the spam-filtering community
often refer to non-spam messages as ham. )
–> The sending system’s IP address can be compared to the sender’s domain
name using the Sender Policy Framework (SPF) protocol (http://spf.pobox.com)
to determine if that system is permitted to send messages from users at that
domain. This feature requires SpamAssassin 3.0.
–> SpamAssassin can privilege senders who are willing to expend some extra
computational power in the form of Hashcash.
Spammers cannot do these computations and still send out huge amounts of
mail rapidly. This feature requires SpamAssassin 3.0.

Most of SpamAssassin’s behavior is controlled through a systemwide
configuration file and a set of per-user configuration files. The per-user
configuration can also be stored in an SQL database.

How to Configure it ? : -
——————-

You can easily customize how SpamAssassin tags and identifies spam by
creating a spamassassin/user_prefs file. You can customize the number of
“spam points” required to identify a message as spam, create new rules, and
re-weight existing rules. Here is a sample user_prefs file. It raises the
threshold for identifying spam from 5 to 6, disables including spam warnings
in the subject and body, reweights a known rule, and adds several blacklist,
whitelist, and header rules.

Listing 1. A typical user_prefs configuration file

================================================================

#How many hits before a mail is considered spam?
required_hits 6

#Don’t mangle the messages so badly
rewrite_subject 0
use_terse_report 1

#whitelist and blacklist
whitelist_from *@www.zzzzzz.com
blacklist_from annoying-person@xyz.com

#reweight an existing rule
score BASE64_ENC_TEXT 3

#add some new rules
header KNOWN_LIST List-Id =~ /a-mailing-list-i-like/
score KNOWN_LIST -3

body EVITE /This invitation was sent to you by .* using Evite/
describe EVITE Looks like an eVite
score EVITE -3

================================================================

Enjoy..

« Previous entries

September 24, 2006

What is Spam Assassin ?

by @ 8:30 pm. Filed under cPanel Hosting, Web Hosting Articles, Email Hosting

What is Spam Assassin?
The SpamAssassin system is software for analyzing email messages, determining how likely they are to be spam, and reporting its conclusions. It is a rule-based system that compares different parts of email messages with a large set of rules. Each rule adds or removes points from a message’s spam score. A message with a high enough score is reported to be spam.
Spam Assassin is a e-mail spam filtering system that sits side by side with account with us to help block, mark or filter out mail you don’t want.

How do I access Spam Assassin?
First thing you will want to do is log into your cPanel. From there, under the “Mail” box look at the nine a link that reads “Spam Assassin”. From here it will tell you if Spam Assassin is currently enabled or disabled. Clicking the boxes to enable or disable Spam Assassin is how you can turn it on or off. To configure the Spam Assassin settings click the button that reads: “Configure Spam Assassin (required to rewrite subjects)”

How do I configure Spam Assassin?
If you do not know what it is you are looking at, the next screen could be a little confusing. To help you understand here’s a break down of what you should see on the screen and what do do with it:

required_hits - The number of e-mails received before marked as spam.
rewrite_subject - The tells Spam Assassin if it should rewrite your subject line or not as you define. (1 is yes and 0 is no)
subject_tag - What the spam is marked with in the subject line. (usually ***SPAM*** or something else that could be picked up by your own mail filters on your mail client of choice)
blacklist_from - An e-mail address you definitely want to be marked as spam. (you could also use *@something.com to get every email from that address filtered)
whitelist_from - An e-mail address you definitely do NOT want to be marked as spam. (you could also use *@something.com to get every email from that address NOT filtered)

Once you’re done, just hit save and whatever you defined on the earlier page will now be in effect. If you picked to rewrite the subject, then you could now go into your mail client and write a new “rule” that would filter all mail with “***SPAM***” to go into a SPAM folder so that you could check it from time to time making sure you did not get any false positives.

How do I use the Spam Box?
You can turn your spam box enable and disable from the same page as Spam Assassin. It’s just that easy! With the recent upgrades to cPanel, the TotalChoice Hosting team has been paying more attention to the users of Spam Assassin.

In the previous build you would need to use a imap client to get to your spam box.
Well not anymore. You can create a “new” e-mail account that has precisely the same settings as your e-mail account, but add: “/spam” to the end of the e-mail account user name. This will retrieve only your Spam Box mail.

In order for this to be useful, you will want to set up your e-mail client to deliver this Spam Box mail to a special folder (perhaps called spam?) automatically.

« Previous entries

RESELLER HOSTING | DEDICATED SERVER | PREMIUM HOSTING | VPS HOSTING

Micfo Hosting

Micfo International LLC Leading the hosting Industry with Cheap and Affordable Linux Web Hosting Packages.

internal links:

categories:

archives:

Services:

Micfo Hosting

Micfo, delivering the best cpanel web hosting with maximum reliability is our exclusive focus.
Micfo International LLC

search blog:

TOP 10 POSTS:

Pages:

General Links:

Syndicate

other:

43 queries. 0.134 seconds