Emacs mail guide

5 réponses [Dernière contribution]
남작
Hors ligne
A rejoint: 08/19/2025

Hello?
Is there good guide on how to use Emacs to send emails?
I understand you need to configure extra apps like msmtp and isync?

knife

I am a member!

Hors ligne
A rejoint: 01/02/2019

Hello,
There is an tutorial about using Gnus here:
https://www.emacswiki.org/emacs/GnusTutorial

regards

남작
Hors ligne
A rejoint: 08/19/2025

Great!

남작
Hors ligne
A rejoint: 08/19/2025
tonlee
Hors ligne
A rejoint: 09/08/2014

https://aerc-mail.org/
Email on emacs is nothing like aerc? Email on emacs has no menu and cannot be called an email client with an user interface? Email on emacs is nothing more than some commands?

Can you configure emacs such that everything internet emacs does is over tor? Or in other words does emacs support socks5 port 9150 proxy dns over socks5?

knife

I am a member!

Hors ligne
A rejoint: 01/02/2019

There is a menu for some Gnus-commands in Emacs.

Gnus doesn't have an own proxy configuration.

Instead use the following example in your Emacs config
(require 'tramp)
(setq tramp-default-method "ssh")
(setq socks-server '("DEFAULT" "127.0.0.1" 9050 5))
(setq url-proxy-services
'(("no_proxy" . "localhost:3000") ;; example
("http" . "socks5://127.0.0.1:9050") ;; SOCKS-Proxy
("https" . "socks5://127.0.0.1:9050"))) ;; SOCKS-Proxy