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

  1. GUI Email Clients
  2. Terminal Email Clients
  3. Email Configuration
  4. Troubleshooting

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:

  1. Launch Thunderbird
  2. File > New > Existing Mail Account
  3. Enter email and password
  4. 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


This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.