<?xml version="1.0" encoding="utf-8"?><!DOCTYPE article  PUBLIC '-//OASIS//DTD DocBook XML V4.4//EN'  'http://www.docbook.org/xml/4.4/docbookx.dtd'><article><articleinfo><title>MemberManual/Email/Mutt</title><revhistory><revision><revnumber>1</revnumber><date>2015-06-05 10:30:09</date><authorinitials>DaniilFrumin</authorinitials><revremark>Add page about mutt</revremark></revision></revhistory></articleinfo><para>You can use <ulink url="http://mutt.org">Mutt</ulink> to receive and send email on the HCoop server. However, in order to use Mutt, you have to set it up for working with the <ulink url="http://dev.mutt.org/trac/wiki/MuttFaq/Maildir">Maildir</ulink> format; add the following to your <code>.muttrc</code>: </para><screen><![CDATA[set mbox_type=Maildir
set folder="~/Maildir"
set mask="!^\\.[^.]"
set mbox="~/Maildir"
set record="+.Sent"
set postponed="+.Drafts"
set spoolfile="~/Maildir"
mailboxes `echo -n "+ "; find ~/Maildir -maxdepth 1 -type d -name ".*" -printf "+'%f' "`
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"]]></screen></article>