rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

commit 04bd37b20804e5df2f6841da3dc35b622eb5baa6
parent 88010132813af444a616a44851af6349f557009d
Author: Mark Feller <mark@mfeller.io>
Date:   Wed, 30 Dec 2020 11:47:41 -0700

sync macOS dotfiles

Diffstat:
Mdots/.config/emacs/lisp/init-local.el | 6+++---
Mdots/.config/emacs/modules/module-notmuch.el | 10++++++++++
Mdots/.config/git/config | 4++--
Mdots/.ssh/config | 3+++
4 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/dots/.config/emacs/lisp/init-local.el b/dots/.config/emacs/lisp/init-local.el @@ -35,9 +35,9 @@ ,(mjf/yt-channel-feed "UCgXiTWrFg05fTPfw1YLb5Ug") ; Triforce! )) -(mjf/initialize-gmail) -(setq user-mail-address "mark@getsunday.com") -(setq mml-secure-smime-sign-with-sender "mark@getsunday.com") +(mjf/initialize-personal-email) +(setq user-mail-address "mark@mfeller.io") +(setq mml-secure-smime-sign-with-sender "mark@mfeller.io") (setq message-signature-file "~/.local/share/emacs/signature") (provide 'init-local) diff --git a/dots/.config/emacs/modules/module-notmuch.el b/dots/.config/emacs/modules/module-notmuch.el @@ -36,6 +36,16 @@ smtpmail-stream-type 'ssl smtpmail-smtp-service 465)) +(defun mjf/initialize-personal-email () + "Configure smtpmail to use personal mail server" + (setq message-send-mail-function 'smtpmail-send-it ; message-mode + send-mail-function 'smtpmail-send-it ; mail-mode + smtpmail-default-smtp-server "mail.mfeller.io" + smtpmail-smtp-server "mail.mfeller.io" + smtpmail-local-domain "mfeller.io" + smtpmail-stream-type 'ssl + smtpmail-smtp-service 465)) + (defun mjf/tag-deleted () "Tag mail at point as deleted. This operation will not delete the mail, but tag it for later deletion." diff --git a/dots/.config/git/config b/dots/.config/git/config @@ -1,7 +1,7 @@ [user] name = Mark Feller - email = mark@getsunday.com - signingkey = 95189B138B01C10DC955396A5AB4584E9FF44D46 + email = mark@mfeller.io + signingkey = 8D557E89BE40D1A4B63C6F09B858CCCC0434CA15 [url "ssh://git@github.com/"] insteadOf = https://github.com/ diff --git a/dots/.ssh/config b/dots/.ssh/config @@ -2,14 +2,17 @@ Host work HostName work.margar.org User mjf + Host laptop HostName laptop.margar.org User mjf + Host desktop HostName desktop.margar.org User mjf + Host server HostName mfeller.io User root \ No newline at end of file