Arch Linux Email Clients - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Arch Linux Email Clients Guide
Complete beginner-friendly guide to email clients on Arch Linux, including Thunderbird, Evolution, Mutt, and email client configuration.
Table of Contents
GUI Email Clients
Thunderbird
Install Thunderbird:
# Install Thunderbird
sudo pacman -S thunderbird
# Launch
thunderbird
Evolution
Install Evolution:
# Install Evolution
sudo pacman -S evolution
# Launch
evolution
Geary
Install Geary:
# Install Geary
sudo pacman -S geary
# Launch
geary
⌨ Terminal Email Clients
Mutt
Install Mutt:
# Install Mutt
sudo pacman -S mutt
# Launch
mutt
Alpine
Install Alpine:
# Install Alpine
sudo pacman -S alpine
# Launch
alpine
Email Configuration
Thunderbird Setup
Configure account:
- Launch Thunderbird
- File > New > Existing Mail Account
- Enter email and password
- Configure server settings
Mutt Configuration
Configure Mutt:
# Create config
vim ~/.muttrc
Example:
set imap_user = "[email protected]"
set imap_pass = "password"
set smtp_url = "smtp://[email protected]@smtp.example.com:587/"
set smtp_pass = "password"
Troubleshooting
Connection Issues
Check settings:
# Test IMAP
telnet imap.example.com 993
# Test SMTP
telnet smtp.example.com 587
Authentication Errors
Check credentials:
# Verify username/password
# Check app passwords if using 2FA
Summary
This guide covered GUI and terminal email clients, configuration, and troubleshooting.
Next Steps
- Arch Linux Networking - Network setup
- Arch Linux Security Configuration - Security
- ArchWiki Email Clients: https://wiki.archlinux.org/title/List_of_applications/Internet#Email_clients
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.