blob: 8c30608ac1f8e4bcbde7408f00b93e27a64a4ed2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# IMAP.
set imap_user = d@ilvokhin.com
set folder = imaps://mail.ilvokhin.com
set spoolfile = +INBOX
set record = +INBOX/Sent
set postponed = +INBOX/Drafts
set mbox = +INBOX/All
# SMTP.
set smtp_url = smtps://$imap_user@mail.ilvokhin.com
set smtp_pass = $imap_pass
set ssl_force_tls = yes
# Composition.
set editor = `echo \$EDITOR`
set edit_headers = yes
set charset = UTF-8
unset use_domain
set realname = "Dmitry Ilvokhin"
set from = "d@ilvokhin.com"
set use_from = yes
set sort=threads
set sort_browser=date
set sort_aux=reverse-last-date-received
# Color definitions from CentOS.
color hdrdefault red default
color quoted brightblue default
color signature red default
color indicator brightyellow red
color error brightred default
color status yellow blue
# The thread tree in the index menu.
color tree magenta default
color tilde magenta default
color message brightcyan default
color markers brightcyan default
color attachment brightmagenta default
# How to hilite search patterns in the pager.
color search default green
color header brightred default ^(From|Subject):
# Point out URLs.
color body magenta default "(ftp|http|https)://[^ ]+"
# E-mail addresses.
color body magenta default [-a-z_0-9.]+@[-a-z_0-9.]+
color underline brightgreen default
# Attributes when using a mono terminal.
mono quoted bold
|