summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-03-12 12:17:11 -0400
committerJesse Luehrs <doy@tozt.net>2014-03-12 12:18:17 -0400
commitaaa125fca8464bbe63d2bdad65e9f2920bedc9c0 (patch)
treea1e2f9f06b271301a473735f73afba65461d0335 /Makefile
parent9b325b923e7acad088415624471b5ee3b920f44e (diff)
downloadconf-aaa125fca8464bbe63d2bdad65e9f2920bedc9c0.tar.gz
conf-aaa125fca8464bbe63d2bdad65e9f2920bedc9c0.zip
msmtprc needs to have 600 permissions
not really sure why, since there isn't anything secret in there, but shrug
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f1603e1..e308f87 100644
--- a/Makefile
+++ b/Makefile
@@ -102,6 +102,11 @@ $(INTO)/Maildir/.notmuch: notmuch
@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
$(LN) $(PWD)/$< $@
+$(INTO)/.msmtprc: msmtprc
+ @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
+ $(LN) $(PWD)/$< $@
+ @chmod 600 $(PWD)/$<
+
%.spl : %
@vim -u NONE -c':mkspell! $< | :q'