All posts tagged address

How to Use Email Forwarding

By Tavis J. Hampton in: Web servers Software

Email iconUsing multiple email addresses is a good way to organize messages and direct users to the right people. Rather than create accounts for each address, however, you can use email forwarding to redirect messages to the right people.

For example, you can forward all messages sent to billing@yourdomain, sales, and marketing all to the same address: tom@yourdomain. That way, Tom will handle those email messages accordingly without having to check each of those accounts separately.

Most web-based control panels have support for mail forwarding built into them. If, for some reason, you do not have that option, you can create forwards manually. To forward email from one address to another, use email aliases. To create aliases, edit the /etc/aliases file and add lines like the following:

billing: tom

That will forward all mail sent to “billing” to “tom”. Once you have created your alises, save the aliases file and run: “newaliases” from the command line.

Image Source: Wikimedia Commons

Continue reading: How to Use Email Forwarding

....
share this 0 comments

Catchall Email Addresses

By Tavis J. Hampton in: Web Hosting Web servers

Spam in Gmail

In the world of web hosting, email addresses can either be real or aliases. A real email address is connected to a mailbox on the mail server. That mailbox will hold any messages sent to the address in queue, awaiting the user to either download it or access it from the Web. An alias is an email address that only holds the appearance of a real account. In reality, any messages sent to it will actually be forwarded elsewhere.

Some websites, particularly those owned by organizations or companies, may use a catchall feature on their mail server. Rather than create an email address for several departments, they may create five and have all other inquiries forwarded to a single address. For example, billing@domain.tld, finance@domain.tld, and stocks@domain.tld may all be handled by the same department. Rather than have an alias for each, the catchall for that domain could point to billing. This can also be useful for catching typos.

There are drawbacks to catchall email settings. Since any email address that does not have a valid mailbox will be accepted and forwarded to the specified account, your account might receive more spam. Some spam bots will seek out keywords like “admin” and “support” and automatically send spam to accounts on your domain with those prefixes. Individual website owners and small organizations will probably not see the benefits of catching extra spam.

Photo Source: Flickr

Continue reading: Catchall Email Addresses

....
share this 0 comments

How to redirect a web page without .htaccess

By Tavis J. Hampton in: Web Hosting

PHP logo
Question: I have a shared hosting account, but my web host has disabled my ability to make .htaccess files. How can I create redirects on my site?

Answer: First of all, it is a bad practice for a web hosting provider to completely disable .htaccess. You should probably consider getting a new host, but if that is not an immediate option, you can use PHP to redirect.

First, replace all of the code in the file you want to redirect to this:

< ?php
header( 'Location: http://www.domainname.com/new-page.html' ) ;
?>

Change the address to reflect your real domain and the correct filename for your new page.

That’s it! There is no second step. You need to make sure that there is no text before the PHP code, not even the <html> tag. Now, every time users visit the old page, they will be automatically redirected to the new one.

Continue reading: How to redirect a web page without .htaccess

....
share this 0 comments

How to setup email forwarders in cPanel

By Tavis J. Hampton in: Web Hosting Software

cPanel forwarders

Question: How can I use cPanel to forward emails sent to addresses in my domain to another email address?

Answer: The web-based control panel called cPanel makes it easy to create email forwarders. A forwarder allows you to setup any number of virtual email addresses within your domain and then forward emails sent to them to one or many different addresses. Just follow these simple steps:

1. Login to cPanel.
2. In the “Mail” section, click “Forwarders”
3. Click “add Forwarder”
4. Where it says “Address to Forward” enter the part of the email address that comes before the @ symbol. This should be a prefix that does not already exist as a real email address.
5. In the dropdown menu, select the domain name (if you have more than one).
6. Under “Destination” you can forward emails to an internal or external address, discard and return an error message, or “Pipe to a Program”, meaning that a script will handle the emails.

That is all it takes. Now email sent to the address you specified will automatically be forwarded wherever you want.

Continue reading: How to setup email forwarders in cPanel

....
share this 0 comments

New ICANN CEO releases address

By Daniel Foster in: Domain Sales Web Infrastructure

icann ceo rod beckstrom

New ICANN CEO Rod Beckstrom has been in his post for more than three weeks now, but just released his first public address yesterday. In the message, Paul Twomey’s replacement talks about how excited he is to be working at ICANN and details his plans for the future.

While it’s great to see that the new CEO is alive and kickin’ (I thought he was living under a rock), the message doesn’t reveal anything new about ICANN. Rather, it’s the same old pitter-patter I’ve come to expect from Marina Del Rey, the organization’s home city.

First, Beckstrom addressed the new IDN system, stating that this effort would be the to-do at his new workplace.

Continue reading: New ICANN CEO releases address

....
share this 0 comments
Network Blogo