Edit History Actions Discussion

Diff for "Howto/Mutt"

Differences between revisions 4 and 5
Revision 4 as of 2017-01-08 12:16:00
Size: 1302
Editor: independence
Comment: test
Revision 5 as of 2017-01-08 12:18:23
Size: 1298
Editor: independence
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
/!\ '''Work in progress''' '''Work in progress'''

Mutt

Work in progress

To use mutt for your email client with the blinkenshell email server here is a minimal ~/.muttrc that will work. Consider this just a starting point,there are many other options you can set (see man mutt and man muttrc).

Note: Your triton ~/.forward must not exist, or not have a forwarding address in it. Otherwise emails sent to you will be forwarded rather than collected on the server.

Note: Mutt can't write files to /tmp on Triton, therefore you have to create your own ~/tmp directory and configure it in .muttrc:

# the tmpdir line probably will not be needed unless you are running mutt on triton
set tmpdir = ~/tmp

# imap: (to read emails)
set spoolfile = 'imap://yourusername:yourpassword@mail.blinkenshell.org:143/INBOX'
set folder = 'imap://mail.blinkenshell.org/INBOX'

#smtp: (to send emails)
set envelope_from_address = 'yourusername@blinkenshell.org'
set use_envelope_from = yes

# use the following line if you are running mutt on triton:
set smtp_url = 'smtp://yourusername:yourpassword@mail.blinkenshell.org'

# use this line if you are using mutt from another computer outside of the blinkenshell network:
#set smtp_url = 'smtp://yourusername:yourpassword@mail.blinkenshell.org:587'