1
0
Fork 0
mirror of https://github.com/lukesmithxyz/emailwiz synced 2024-05-19 14:06:14 +02:00
emailwiz/README.md

137 lines
6.0 KiB
Markdown
Raw Normal View History

2019-05-27 22:15:26 +02:00
# Email server setup script
2020-06-20 21:43:27 +02:00
I wrote this script during the gruelling process of installing and setting up
an email server. It perfectly reproduces my successful steps to ensure the
same setup time and time again.
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
I've linked this file on Github to a shorter, more memorable address on my
website so you can get it on your machine with this short command:
2019-05-27 22:15:26 +02:00
```
2019-05-28 01:33:08 +02:00
curl -LO lukesmith.xyz/emailwiz.sh
2019-05-27 22:15:26 +02:00
```
2020-06-20 21:43:27 +02:00
When prompted by a dialog menu at the beginning, select "Internet Site", then
give your full domain without any subdomain, i.e. `lukesmith.xyz`.
2019-05-28 01:24:23 +02:00
2020-06-20 21:43:27 +02:00
Read this readme and peruse the script's comments before running it. Expect it
to fail and you have to do bug testing and you will be very happy when it
actually works perfectly.
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
## This script installs
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
- **Postfix** to send mail.
- **Dovecot** to receive mail.
- Config files that unique the two above securely with native log-ins.
- **Spamassassin** to prevent spam and allow you to make custom filters.
- **OpenDKIM** to validate you so you can send to Gmail and other big sites.
2019-05-27 22:15:26 +02:00
## This script does _not_
2020-06-20 21:43:27 +02:00
- use a SQL database or anything like that.
- set up a graphical interface for mail like Roundcube or Squirrel Mail. If you
want that, you'll have to install it yourself. I just use
[isync/msmtp/mutt-wizard](https://github.com/lukesmithxyz/mutt-wizard) to
have an offline mirror of my email setup and I recommend the same. There are
other ways of doing it though, like Thunderbird, etc.
2019-05-27 22:15:26 +02:00
## Requirements
2020-06-20 21:43:27 +02:00
1. A **Debian or Ubuntu server**. I've tested this on a
[Vultr](https://www.vultr.com/?ref=8384069-6G) Debian server and one running
Ubuntu and their setup works, but I suspect other VPS hosts will have
similar/possibly identical default settings which will let you run this on
them. Note that the affiliate link there to Vultr gives you a $100 credit
for the first month to play around.
2. **A Let's Encrypt SSL certificate for your site's `mail.` subdomain**.
Create a nginx/apache site at `mail.<yourdomain.com>` and get a certificate
for it with Let's Encrypt's [Certbot](https://certbot.eff.org/).
2020-06-21 14:46:11 +02:00
3. You need two little DNS records set on your domain registrar's site/DNS
2020-06-20 21:43:27 +02:00
server: (1) an **MX record** pointing to your own main domain/IP and (2) a
**CNAME record** for your `mail.` subdomain.
4. **A Reverse DNS entry for your site.** Go to your VPS settings and add an
entry for your IPV4 Reverse DNS that goes from your IP address to
`mail.<yourdomain.com>`. If you would like IPV6, you can do the same for
that. This has been tested on Vultr, and all decent VPS hosts will have
a section on their instance settings page to add a reverse DNS PTR entry.
You can use the 'Test Email Server' or ':smtp' tool on
[mxtoolbox](https://mxtoolbox.com/SuperTool.aspx) to test if you set up
a reverse DNS correctly. This step is not required for everyone, but some
big email services like gmail will stop emails coming from mail servers
with no/invalid rDNS lookups. This means your email will fail to even
make it to the receipients spam folder; it will never make it to them.
5. `apt purge` all your previous (failed) attempts to install and configure a
2020-06-20 21:43:27 +02:00
mailserver. Get rid of _all_ your system settings for Postfix, Dovecot,
OpenDKIM and everything else. This script builds off of a fresh install.
6. Some VPS providers block port 25 (used to send mail). You may need to
2020-06-21 14:46:11 +02:00
request that this port be opened to send mail successfully. Although I have
never had to do this on a Vultr VPS, others have had this issue so if you
cannot send, contact your VPS provider.
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
## Post-install requirement!
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
- After the script runs, you'll have to add two *additional DNS TXT records*
which involves the OpenDKIM key that it generates during the script.
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
## Making new users/mail accounts
2019-05-27 22:15:26 +02:00
2020-06-20 21:43:27 +02:00
Let's say we want to add a user Billy and let him receive mail, run this:
2019-06-11 07:56:46 +02:00
2020-06-20 21:43:27 +02:00
```
useradd -m -G mail billy
passwd billy
```
Any user added to the `mail` group will be able to receive mail. Suppose a user
Cassie already exists and we want to let her receive mail to. Just run:
```
usermod -a -G mail cassie
```
A user's mail will appear in `~/.Mail/`. I you want to see your mail while
ssh'd in the server, you could just install mutt, add `set spoolfile="+Inbox"`
to your `~/.muttrc` and use mutt to view and reply to mail. You'll probably
want to log in remotely though:
## Logging in from Thunderbird or mutt (and others) remotely
Let's say you want to access your mail with Thunderbird or mutt or another
email program. For my domain, the server information will be as follows:
- SMTP server: `mail.lukesmith.xyz`
- SMTP port: 587
- IMAP server: `mail.lukesmith.xyz`
- IMAP port: 993
- Username `luke` (I.e. *not* `luke@lukesmith.xyz`)
The last point is important. Many email systems use a full email address on
login. Since we just simply use local PAM logins, only the user's name is used
(this makes a difference if you're using my
[mutt-wizard](https://github.com/lukesmithxyz/mutt-wizard), etc.).
## Tweaking things
You're a big boy now if you have your own mail server!
You can tweak Postfix (sending mail
## Benefited from this?
2019-05-28 02:12:11 +02:00
2020-06-20 21:43:27 +02:00
If this script or documentation has saved you some frustration, you can donate
to support me at [lukesmith.xyz/donate](https://lukesmith.xyz/donate.html).
2020-06-22 22:35:13 +02:00
## Troubleshooting -- Can't send mail?
- Always check `journalctl -xe` to see the specific problem.
- Go to [this site](https://appmaildev.com/en/dkim) to text your TXT records.
If your DKIM, SPF or DMARC tests fail you probably copied in the TXT records
incorrectly.
- If everything looks good and you *can* send mail, but it still goes to Gmail
or another big provider's spam directory, your domain (especially if it's a
new one) might be on a public spam list. Check
[this site](https://mxtoolbox.com/blacklists.aspx) to see if it is. Don't
worry if you are: sometimes especially new domains are automatically assumed
to be spam temporaily. If you are blacklisted by one of these, look into it
and it will explain why and how to remove yourself.