Trying out running Ubuntu on my mid-2015 MacBook Pro. Except for some quirks (and some lag, due to…well, the os being mounted from a thumb drive), it’s remarkably enjoyable.
I’d like to relay all my Ubuntu 22.04 email through Amazon SES.
FYI
Use at your own risk. Like seriously, do some research prior to implementing any of this into your own environment. Consider factors like costs, scalability, etc.
Solution
To relay all your email through Amazon SES (Simple Email Service) on an Ubuntu 22.04 server, you will need to:
Set up an Amazon SES account and verify your email/domain.
Install and configure Postfix to relay email through SES.
Ensure proper authentication and security configurations.
Here are the detailed steps:
1. Set up Amazon SES
Sign up for AWS and SES
Sign in to AWS: If you don’t already have an AWS account, create one at AWS Sign-Up.
Navigate to SES: Go to the SES dashboard in the AWS Management Console.
Verify Email/Domain
Verify an Email Address:
Go to the SES console.
In the left pane, click “Email Addresses”.
Click “Verify a New Email Address”.
Enter your email address and click “Verify This Email Address”.
Check your email and follow the verification link.
Verify a Domain (recommended for sending from multiple addresses):
Go to the SES console.
In the left pane, click “Domains”.
Click “Verify a New Domain”.
Enter your domain name.
Follow the instructions to add a DNS record to your domain’s DNS settings.
Obtain SMTP Credentials
Create SMTP Credentials:
Go to the SES console.
In the left pane, click “SMTP Settings”.
Click “Create My SMTP Credentials”.
Follow the prompts to create a new IAM user with SES permissions.
Download or copy the SMTP credentials (SMTP username and password).
2. Install and Configure Postfix
Install Postfix
Open a terminal on your Ubuntu server and install Postfix:
sudoaptupdatesudoaptinstallpostfix
During installation, choose “Internet Site” and set the system mail name to your domain name (e.g., example.com).
Configure Postfix
Edit the Postfix configuration file:
sudonano /etc/postfix/main.cf
Add or modify the following lines to configure Postfix to use Amazon SES as a relay host:
Replace email-smtp.us-east-1.amazonaws.com with the correct SES SMTP endpoint for your region. You can find the list of SMTP endpoints in the Amazon SES documentation.
Create the SASL Password File
Create and edit the SASL password file:
sudonano /etc/postfix/sasl_passwd
Add the following line, replacing the SMTP endpoint, username, and password with your SES SMTP details:
SPF: Add an SPF record to your DNS to authorize Amazon SES to send emails on behalf of your domain. Example SPF record:
v=spf1include:amazonses.com ~all
DKIM: Enable DKIM in the SES console for your domain to sign your emails. Follow the instructions in the SES console to add the necessary DNS records.
Testing
Send a test email to ensure everything is configured correctly:
echo"Test email body" | mail -s"Test email subject"your-email@example.com
Check the recipient’s inbox and the /var/log/mail.log file on your server for any errors.
Summary
Sign up for Amazon SES and verify your email or domain.
Install and configure Postfix to relay through SES.
Ensure SPF and DKIM are properly set up.
This setup ensures your emails are securely relayed through Amazon SES, leveraging its robust infrastructure.
Disclaimer
The information provided in this blog post is for educational and informational purposes only. The steps and instructions are based on personal experience and research, and are intended to help users configure email relaying through Amazon SES on Ubuntu 22.04.
No Warranty: The author and publisher make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability, or availability with respect to the information, products, services, or related graphics contained in this blog post for any purpose. Any reliance you place on such information is therefore strictly at your own risk.
Limitation of Liability: In no event will the author or publisher be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this blog post.
External Links: Through this blog post, you are able to link to other websites which are not under the control of the author. We have no control over the nature, content, and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them.
By using the information in this blog post, you agree to the terms of this disclaimer. If you do not agree to these terms, please do not use the information provided.
While instance properties can be determined at launch, some of them can be updated after the instance has been created. Specifically, an instance’s memory, disk space, and the number of its CPUs are exposed via daemon settings: local..(cpus|disk|memory).
Setting up cron jobs on a Linux system like Ubuntu is a straightforward process. Cron jobs are scheduled tasks that your system runs at specified times or intervals. Here’s how you can set them up:
Accessing the Cron Table:
Open the Terminal: Launch your terminal application.
Edit Cron Jobs for Your User: To edit the cron jobs for your current user, use the following command: crontab -e This command opens your user’s cron file in the default text editor. If it’s your first time using crontab, it may ask you to select an editor (like nano, vi, etc.).
Add a New Cron Job: In the text editor, you can add a new cron job in the following format: * * * * * command-to-execute This is broken down as:
Minute (0 - 59)
Hour (0 - 23)
Day of the month (1 - 31)
Month (1 - 12)
Day of the week (0 - 6) (Sunday = 0)
For example, to run a script every day at 5 AM, you would write: 0 5 * * * /path/to/script.sh Make sure your script (script.sh in this example) is executable. You can make it executable with chmod +x /path/to/script.sh.
Save and Exit: After adding your cron job, save and exit the editor. This will install the new cron job.
Verify Your Cron Jobs: To ensure your cron job is listed, use: crontab -l
Special Syntax:
Instead of the asterisks, you can use special strings for common intervals:
@reboot: Run once, at startup.
@yearly or @annually: Run once a year, “0 0 1 1 *”.
@monthly: Run once a month, “0 0 1 * *”.
@weekly: Run once a week, “0 0 * * 0”.
@daily: Run once a day, “0 0 * * *”.
@hourly: Run once an hour, “0 * * * *”.
Common Examples:
Backup Every Day at Midnight:
0 0 * * * /path/to/backup/script.sh
Run a PHP Script Every Hour:
0 * * * * /usr/bin/php /path/to/your/script.php
Tips:
Environment Variables: Cron jobs run in a minimal environment, so you might need to define environment variables that your task requires.
Output Handling: By default, cron sends the output of the job to the user’s mail (local mail, not internet email). You can redirect the output to a file or to /dev/null if you don’t need it.
Logging: To log the output of a cron job, redirect the output to a file: