4

Sender domain policy FAQs

 3 years ago
source link: https://help.dreamhost.com/hc/en-us/articles/215036118-Sender-domain-policy-FAQs
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

What is the sender domain policy?

DreamHost’s sender domain policy exists to ensure email that is sent from your website is legitimate. This policy requires two things:

  • You must use a FROM address that’s on the same website you’re sending email from
  • The email must be hosted at DreamHost.
dh-kb-important-icon.svg

This policy applies to all DreamHost-hosted emails, including those being sent directly from the web server, most often through a PHP contact form. If you use SMTP authentication with an external mail provider, this policy DOES NOT apply to you. You can use SMTP authentication in a few ways:

An example of what is not allowed

If your website is example.com and you have a PHP mail form sending email, the FROM address in that email must be something like [email protected]. Emails that are sent from the web server using a FROM address from somewhere else (such as Yahoo or Google) will be blocked and never sent.

Emails sent through DreamHost's shared web servers must use a FROM address that is fully hosted at DreamHost. Forward only aliases will not work.

What happens if your email is blocked?

If this happens, you can see the mail failure in your FTP account.

  1. Log into your server via FTP.
  2. Make sure you're in your user's directory.
  3. In the right pane, look for the /Maildir folder. Click into it.

  4. In this directory are three folders.

  5. Click into the /new folder.

  6. In this folder you'll see files with long names. Right click and open in a text editor to view a file's contents.

Open the file in that directory to view why it failed to send. When emails are blocked by this policy, you’ll see the following error message:

5.7.1 Sender domain not allowed

Creating a script to view rejected email

Instead of manually checking the folder on your server, you could create a script that automatically emails you whenever an email is rejected. View the following article for further details:

When was this policy put into place?

The policy which restricts the FROM address on emails was created in April of 2012. It was then slowly rolled out over the following months.

Why did DreamHost create this policy?

Over time, spoofed emails sent from DreamHost’s servers began to negatively affect the reputation of DreamHost's mail servers. This in turn threatened the ability to host mail at all with DreamHost. To protect the reputation of DreamHost’s mail servers and provide a stable and reliable service to customers, this policy was created.

How does this policy work?

The most accurate way to send email is to send them from the server where the domain's mail service is hosted. For example, email from Hotmail should be sent from Hotmail's servers and email from Google should be sent from Gmail's servers. DreamHost's mail policy states that emails sent through DreamHost's mail and shared web servers should only be FROM domains that have their mail service hosted at DreamHost. So, when you send email from a DreamHost shared web server, you must do the following:

  • The FROM address must be an email on your domain
  • Your email must be hosted at DreamHost

This policy does not apply to DreamHost's VPS and Dedicated Servers. Emails sent from a VPS or Dedicated Server using PHP's mail(), Sendmail, or SMTP via localhost, are sent directly through the server's postfix mail system and go out to the recipient without passing through any other DreamHost server.

What domains am I not allowed to send from?

The list of blocked domains does not include every single domain that does not use DreamHost mail service. Instead, it’s a dynamic list maintained by DreamHost's mail administrators. While you may occasionally be able to send an email using a FROM address with a domain that is not hosted at DreamHost, there is no guarantee it won't be blocked in the future. To ensure your emails will not be blocked, only use a FROM address on a domain that uses DreamHost-hosted mail service.

The other option is to use SMTP authentication in any website form. When you use SMTP authentication, you can then use any FROM address you like, though SMTP authentication must occur on the system that handles mail for the domain.

View the Sending SMTP mail article for an example.

Where do blocked emails go? How do I find out if emails have been blocked from sending?

Blocked emails are returned to the sender as an 'undelivered' bounced email. Inside that bounced email are three things:

  • A notification that the mail server could not deliver the email
  • The error message the mail server provided as an explanation for it not being delivered
  • A copy of the original email that could not be sent

Those bounced emails may be delivered to your regular mailbox, or they may be stored in the Maildir/new folder on the web server. DreamHost support can also check the server mail logs for any errors that may have been recorded. When you contact support, provide as many details as possible about the email you want them to research.

The following list includes the minimum amount of details you should provide:

  • Date and time it was sent (including timezone)
  • Email addresses it was sent TO
  • Email address it was sent FROM
  • The website URL for the web form that may not be working properly

If you find that your website form isn’t delivering email as it should, look in your user’s directory on your webserver. Log in via FTP, and then navigate to the Maildir/new folder. This folder will list any emails that failed to send properly.

The Maildir folder

Blocked emails will be filtered into your Maildir/new directory. A Maildir is a directory (often named Maildir) with three subdirectories named tmp, new, and cur. Maildir is a widely-used format for storing email that does not require application-level file locking to maintain message integrity as messages are added, moved and deleted. Each message is kept in a separate file with a unique name.

Example of acceptable FROM addresses

How the email is sent FROM address used Explanation of address

SMTP through a mail client

[email protected]

Uses your normal email address while sending email via SMTP

Through a webform on a website named example.com

[email protected]

  • Uses your web server as the hostname.
  • This works, but may look strange.
  • An example would be [email protected].

Through a webform on a website named example.com

[email protected]

  • This works since the email is on the same domain sending the email.
  • However, the email MUST be hosted at DreamHost.

Through a webform on a website named example.com using SMTP authentication.

Any address you like

  • When SMTP authentication is used, the mail is not sent from the webserver. It's sent directly through the SMTP mail server you specify.
  • You can provide SMTP credentials for any email address you wish to send FROM.
  • This is the recommended way to send email in a webform.

Examples of blocked FROM email addresses

Emails should not be sent with a FROM address hosted somewhere else. For example:

If you need to use any address not hosted with DreamHost as your FROM address, you must use SMTP authentication.

Example of a complete email

This is an example of an email sent by a website's contact form, such as when a site visitor fills out a submission form on your website. This example uses the domain example.com which is hosted at DreamHost:

From: Site Visitor <[email protected]>
Reply-To: Site Visitor <[email protected]>
To: Joe Website Owner <[email protected]>
Subject: Contact Form Submission
Date: 15 January 2015 10:47pm

Site Visitor <[email protected]> filled out the contact
form on your website at 10:47pm on 15 January 2015.

Their message was:

Hello. I’m interested in your services. Please call me at 555-555-5555.
  • The 'From' header displays the email address hosted at DreamHost.
  • The ‘From’ header displays the name of the site visitor. This is useful because when Joe checks his email, he can easily see the name of the site visitor.
  • The Site Visitor's information is included in the email body.
  • The Site Visitor’s information is also in the Reply-To header. This is useful because when Joe clicks 'reply', the email is automatically addressed to be sent to the Site Visitor's email address.

See also


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK