Initial set up

Email System Configuration

This chapter covers system configuration necessary so that CiviCRM can send and receive email.  This is a complex task which requires system administrator level skills. The correct configuration of your email system is crucial to keep your server off spam lists and black lists.

See the Email sections chapter on Set up for tasks necessary to set up the sending of messages once these email system configuration settings have been configured.

Some parts of the configuration are core CiviCRM functionality (basic sending and receiving of emails) whereas others (mass mailings) require that the CiviMAIL component be enabled.

You will need to be able to change the configuration of your DNS, create email accounts, configure a cron job, read the headers of email messages, and possibly change the configuration of your SMTP server.

This chapter assumes you are running CiviCRM on a Linux server and that you are comfortable working with the shell and running some simple commands.  Most of these steps will be similar on other operating systems, but you will need to adapt them to your system and tools. 

The configuration described works fine for mailings to up to about 10,000 people. If you plan on sending email to hundreds of thousands of contacts, you should benchmark several options and consider a dedicated SMTP server. This more complex configuration is outside the scope of this book but you can find community contributed instructions on the civicrm wiki.

In this chapter we'll use an external Gmail mailbox address to test configuration. So the first step is to create a Gmail account if you don't have one already; alternatively, you can use another address for testing the procedures in this chapter, but you will need to be able to view the source of the mails you receive.

Once your system is properly configured we are going to use cron to trigger CiviCRM's Scheduled Jobs feature to ensure your scheduled mailings are sent.

Configuring outbound email

Outbound email settings are configured at: Administer > System Settings > Outbound Email (SMTP/Sendmail). The choices here are:

After making a choice, send a test email to your account on Gmail and verify that you receive it.

If you receive the following error message, you'll need to configure a default FROM email address (covered in the chapter on CiviMail configuration).

Sorry. A non-recoverable error has occurred. The site administrator needs to enter a valid 'FROM Email Address' in Administer ->  Configure -> Domain Information. The email address used may need to be a valid  mail account with your email service provider.

Once you have received the email, you will need to view the source.  This is done in Gmail by clicking on "Show original" in the email you receive.

The email should contain headers that resemble the following.

Received: from yourmailserver.example.org (xxx.example.org [12.45.120.30])         by mx.google.com with ESMTP id e31si4519230wej.3.2010.04.26.00.38.16;         Mon, 26 Apr 2010 00:38:17 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of     youremail@example.org designates 12.45.120.30     as permitted sender) client-ip=12.45.120.30 

In particular:

  • The "Received: from" header should correspond to your mail server and be properly configured.  It might contain information about your hosting provider instead of your domain name. This is not a problem as long as the mail server is properly configured.  If you have a dedicated IP address for your server, you should try to configure a reverse DNS that represents your organization instead of the default name.
  • The "Received-SPF" header should list "pass" or "neutral".  Sender Policy Framework is described later in more detail.
  • Sending mass mailing is resource intensive.  We don't recommend sending email messages from budget hosting providers.  The time you will spend troubleshooting will often cost more than upgrading to a more professional host.  Check with your hosting provider to find out whether they limit the number of email messages you can send and whether they run PHP in safe mode.

    Some of your recipients' mail servers use DNS based blacklisting services (DNSBL) which keep a blacklist of IP addresses likley to send spam.  Mail from these servers will be flagged as spam and not reach its intended destination.  If your server is blacklisted (for instance, because enough of your recipients flagged your email as spam, or because another website on your server has been flagged as spam), you will need to contact the organizations that have blacklisted you and convince them to remove you from their list.

    They are several websites that help you testing whether you are in a DNSBL. A web search for "blacklisting email" will turn some up. Test regularly to find whether you are on a blacklist.

    Configuring Sender Policy Framework (SPF)

    By default, the Internet allows any mail server to send any email claiming to be from anyone. This makes it easy for spammers to forge addresses and send spam using your email address (or any other). SPF allows you to create a special DNS record listing the IP addresses of the mail servers that can legitimately send email from @yourdomain.org.

    If your domain name already has an SPF record, make sure that it includes the IP address of your CiviCRM mail server (which might be a different from the host used for the web server or from your mail servers), and if it doesn't, add this IP address.

    If you don't have an SPF record, consider adding one. You will need to add at least your mail server and CiviCRM server (if they are different) to the SPF record.

    You can read more about SPF at http://www.openspf.org.

    Configuring inbound email

    This section explains configuration for bounce processing and auto filing incoming emails. Configuring cron to do the actual bounce processing is discussed later in this chapter.

    Bounces

    CiviCRM can automatically receive the bounced email notifications and flag your contacts accordingly. Based on the type of errors (mail server is unreachable, mailbox full, mailbox doesn't exist, dns error...), CiviCRM will either directly set the contact as on hold or wait until several mailings are bounced with the same error for the same contact.

    To accomplish this you will need to set up an email mailbox to receive bounced email messages and a cronjob that will periodically read this mailbox and update your contacts in civicrm.

    The bounce email address is an "invisible" email address visible only in the email message's envelope (hidden fields that precede the headers and message added by the user). Choose any name you like that is meaningful to you. In this example we have chosen return, so the email address we need to set up on a mail server for example.org is return@example.org.

    CiviCRM handles bounces as follow: for each email sent via CiviMail's mass mailing feature, a new unique "invisible" sender address is created using the variable envelope return path or VERP. When CiviCRM receives a bounce, it looks at the invisible sender address to decide which email bounced. Contacts will be marked as on hold when their email bounces. Further messages to those addresses won't be sent.

    Auto filing emails

    CiviCRM can automatically retrieve email from a specified inbox and file it as an email activity against contacts corresponding to sender and recipients of the email. New contacts are created for emails not already in the database.

    There are two ways to do this (either or both ways can be setup at same time):
    Option 1) Set up a special email address for your organization, e.g. civiemails@example.com. Users can then add this address in the Bcc field for your outbound emails; they will get auto filed in CiviCRM as described above. No one who receives the email will see this special address if the Bcc field is used.

    Option 2) Set up a folder in your IMAP Inbox where you can drag emails that you want filed in CiviCRM.  This works with both inbound and outbound emails. (this requires that your email be set up using IMAP.)

    Types of email accounts for incoming email

    There are several ways of configuring your bounce mailbox:

    Adding an incoming email account for handling bounces or auto filing to CiviMail

    Once you have created your email account to receive bounces or emails for auto filing, you need to set up CiviMail so it knows how to read it: Administer > CiviMail > Mail accounts as the default email address.

    Once the Bounce Processing mailbox is configured, you will need to configure CiviMail to empty it, read all these bounced messages and identify the related bounced contacts. This is performed by the Scheduled Jobs feature of CiviCRM .

    We recommend testing the bounce process by running the process manually before setting up CiviCRM to process the bounced email messages automatically. This can be done in Administer > System Settings > Scheduled Jobs. Locate Fetch Bounces and select more > Execute Now. Check the Job Log for any error messages.

    Once you have verified that CiviCRM can properly handle the bounce, you can set it up to automatically process the replies and bounces on a regular basis.

    The different options to set up this periodical task are described on the Scheduling the job section below.

    Configuring cron jobs for scheduled mass mailings

    Mass mailings are generated via the web interface and queued to be sent by a background cron job, a process that periodically checks whether there are any mailings waiting to be processed. The program that cron runs is bin/cron.php. This section explains how to schedule it to run on a regular basis

    If you need to send some email from CiviCRM right away, without waiting for the cron job, you can trigger the sending process by visiting the http://example.org/civicrm/mailing/queue&reset=1 URL. Use this capability sparingly. It could utilize a lot of server resources and cause CiviCRM to slow down noticeably. The administrative settings for sending email are usually configured to minimize the load on the server, and the cron job is a more efficient way to send mass email.

    Scheduling the job

    To handle both outgoing email and bounced email, you should run a process several times an hour. On Linux and other Unix or Unix-like systems, this is done by configuring a cron job.

    The cron job needs to run using an account recognized by your CMS. Create an account dedicated to this task (e.g., mailprocess, civimail, etc), give it a long, secure password (e.g.,seol-lzprm42amv-psyc) and grant it access on CiviCRM and CiviMail. Do not change the account password without changing the password in the configuration files of this cron job.

    To set up your cron job, first, find out whether php-cli is installed. From the shell, type php -v. If you see (cli) in the result, as in:

    PHP 5.2.3-1ubuntu6.5 (cli) (built: Feb 11 2009 19:55:53) Copyright (c) 1997-2007 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies     with eAccelerator v0.9.5.3, Copyright (c) 2004-2006 eAccelerator, by eAccelerator

    This means you have php-cli installed and you should use it, because it has several advantages:

    The following is complete cron configuration to handle CiviCRM's mail requirements:
    # This must be set to the directory where civicrm is installed. CIVI_ROOT=/var/www/civicrm   # Comment: I believe these two lines are unnecessary. # USER=www-data # MAILTO="you@example.org"   # Location of the PHP Command Line Interface binary. # nice -19 forces to run at a lower priority than the web server PHP=nice -n19 /usr/bin/php   # line to be modified according to the informations below # like this: PARAMS= -j -s<default or domain> -u<user> -p<password> -e Job -a process_mailing PARAMS= -j -sdefault -umailprocess -pseol-lzprm42amv-psyc  -e Job -a process_mailing PARAMSBOUNCE= -j -sdefault -umailprocess -pseol-lzprm42amv-psyc  -e Job -a fetch_bounces  # cronjob send # m h dom mon dow command */5 * * * *  cd $CIVI_ROOT; $PHP bin/cli.php $PARAMS */15 * * * * cd $CIVI_ROOT; $PHP bin/cli.php $PARAMSBOUNCE 

    The user that run the scripts (www-data in this example) needs to be able to write into the temporary folder. Your configuration might specify a different user.

    You don't have to run both scripts at the same frequency. The preceding crontab file verifies every 5 minutes whether mail messages need to be sent, but only every 15 minutes whether bounced email needs to be processed.

    PARAMS contains:

    1. The site you used, which is -sdefault on Drupal. If you run multiple CiviCRM sites on a single server, you need to specify your site's domain, such as -sexample.org.
    2. The user login account (-umailprocess).
    3. The password you defined (-pseol-lzprm42amv-psyc).

    From the web server

    You can access the two processes from pages on your web server using commands such as:

    Joomla: wget -O - -q -t 1 'http://[SITEROOT]/administrator/components/com_civicrm/civicrm/bin/cron.php?name=username&pass=password&key=site-key'  Drupal: wget -O - -q -t 1 'http://[SITEROOT]/sites/all/modules/civicrm/bin/cron.php?name=username&pass=password&key=site-key'  Wordpress: wget -O - -q -t 1 'http://[SITEROOT]/wp-content/plugins/civicrm/civicrm/bin/cron.php?name=username&pass=password&key=site-key'

    This works like visiting the web pages in your brower, but can be run automatically as shell commands.

    For security reasons, you need to add an extra key parameter, defined in your civicrm.settings.php file. Read the chapter on the REST interface for more information about this parameter.

    Download this book


    Get involved

    CiviCRM documentation is community driven. You can help improve documentation.


    Powered by Flossmanuals.