Mercurial > hg > Members > kent > dotfiles
comparison muttrc @ 1:c8c579f62d99
add rc files that have relation with mailer.
and symlink.py was modified as adding subroutin that make
hardlink for fetchmailrc.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 15 Nov 2008 00:57:04 +0900 |
parents | |
children | 8812f32e6124 |
comparison
equal
deleted
inserted
replaced
0:6d5c73fe5744 | 1:c8c579f62d99 |
---|---|
1 | |
2 | |
3 ### mutt-jp test | |
4 set charset='utf-8' | |
5 set send_charset="us-ascii:iso-2022-jp" | |
6 #set strict_mime=no | |
7 set assumed_charset="utf-8:iso-2022-jp:euc-jp:shift_jis" | |
8 set edit_headers=yes | |
9 | |
10 | |
11 | |
12 | |
13 ### メールフォルダ設定 | |
14 set folder = $HOME/Mail | |
15 set mbox_type = Maildir | |
16 | |
17 ### メールボックス | |
18 mailboxes =inbox | |
19 mailboxes =ie-admin | |
20 mailboxes =GCC | |
21 mailboxes =concurrency | |
22 | |
23 ### 送信設定 | |
24 set from = "kent@cr.ie.u-ryukyu.ac.jp" | |
25 set realname = "kent" | |
26 set record = "$HOME/Mail/sent" | |
27 set postponed = "$HOME/Mail/postponed" | |
28 set include = yes | |
29 set smtp_url = smtp://k088511@nirai.ie.u-ryukyu.ac.jp:587/ | |
30 ## 最初はmsmtpを使ってたんだけど、必要ないっぽい。smtp_urlがあればignored | |
31 #set sendmail = "/opt/local/bin/msmtp -a nirai" | |
32 | |
33 set alias_file=~/Mail/aliases | |
34 source ~/Mail/aliases | |
35 set signature = "~/.signature" | |
36 | |
37 ### KeyBindings | |
38 # for Pager | |
39 bind pager j next-line | |
40 bind pager k previous-line | |
41 bind pager o exit | |
42 bind pager J next-entry | |
43 bind pager K previous-entry | |
44 bind pager \Cd half-down | |
45 bind pager \Cu half-up | |
46 bind pager < top | |
47 bind pager > bottom | |
48 # for Index | |
49 bind index \Cd half-down | |
50 bind index \Cu half-up | |
51 #bind index < top | |
52 #bind index > bottom | |
53 | |
54 | |
55 ### カラー設定 | |
56 # 通常 | |
57 color search black yellow | |
58 color status yellow blue | |
59 color indicator brightyellow magenta | |
60 color tree yellow black | |
61 # bodies | |
62 color normal white black | |
63 color quoted cyan black | |
64 color quoted1 green black | |
65 color quoted2 red black | |
66 color attachment brightmagenta black | |
67 # ヘッダ | |
68 color hdrdefault black white | |
69 color header yellow black ^(From|Subject|Date|Reply-To|To|Cc): | |
70 # メッセージ | |
71 color message brightwhite black | |
72 color error red black | |
73 | |
74 #color markers brightcyan black # the + for wrapped pager lines | |
75 #color signature brightyellow black # signature (after "-- ") | |
76 #color tilde blue black # ~'s after message body | |
77 #color header brightyellow black ^(From|Subject): # Important headers | |
78 #color body cyan black "(ftp|http)://[^ ]+" | |
79 #color body magenta black [-a-z_0-9.]+@[-a-z_0-9.]+ # picks up email addresses | |
80 | |
81 | |
82 ### ヘッダ非表示 | |
83 ignore * | |
84 unignore from to subject cc date reply-to | |
85 |