-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Email Clients
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to email clients on Arch Linux, including Thunderbird, Evolution, Mutt, and email client configuration.
Install Thunderbird:
# Install Thunderbird
sudo pacman -S thunderbird
# Launch
thunderbirdInstall Evolution:
# Install Evolution
sudo pacman -S evolution
# Launch
evolutionInstall Geary:
# Install Geary
sudo pacman -S geary
# Launch
gearyInstall Mutt:
# Install Mutt
sudo pacman -S mutt
# Launch
muttInstall Alpine:
# Install Alpine
sudo pacman -S alpine
# Launch
alpineConfigure account:
- Launch Thunderbird
- File > New > Existing Mail Account
- Enter email and password
- Configure server settings
Configure Mutt:
# Create config
vim ~/.muttrcExample:
set imap_user = "user@example.com"
set imap_pass = "password"
set smtp_url = "smtp://user@example.com@smtp.example.com:587/"
set smtp_pass = "password"
Check settings:
# Test IMAP
telnet imap.example.com 993
# Test SMTP
telnet smtp.example.com 587Check credentials:
# Verify username/password
# Check app passwords if using 2FAThis guide covered GUI and terminal email clients, configuration, and troubleshooting.
- 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.