diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-26T13·13+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-26T13·13+0100 |
commit | cf9dd380f345f9ef5c6421c6f79495b961534ee5 (patch) | |
tree | e84f96819d83af66cbad6320676458dac7271c05 /tools/emacs/config/functions.el | |
parent | 39aa74ed6132c3e8467d8ea3835b59968d85066c (diff) |
chore(emacs.d): Remove GPG agent warmup from mail sending r/305
Fetching credentials is no longer handled by msmtp itself.
Diffstat (limited to 'tools/emacs/config/functions.el')
-rw-r--r-- | tools/emacs/config/functions.el | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/emacs/config/functions.el b/tools/emacs/config/functions.el index 193e1a7412d1..2b9713006837 100644 --- a/tools/emacs/config/functions.el +++ b/tools/emacs/config/functions.el @@ -138,15 +138,6 @@ :sort t :action #'magit-status)) -(defun warmup-gpg-agent (arg &optional exit) - "Function used to warm up the GPG agent before use. This is - useful in cases where there is no easy way to make pinentry run - in the correct context (such as when sending email)." - (interactive) - (message "Warming up GPG agent") - (epg-sign-string (epg-make-context) "dummy") - nil) - (defun bottom-right-window-p () "Determines whether the last (i.e. bottom-right) window of the active frame is showing the buffer in which this function is |