summaryrefslogtreecommitdiffhomepage
path: root/attic/jao-osx-mail.el
diff options
context:
space:
mode:
Diffstat (limited to 'attic/jao-osx-mail.el')
-rw-r--r--attic/jao-osx-mail.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/attic/jao-osx-mail.el b/attic/jao-osx-mail.el
deleted file mode 100644
index 8b9efda..0000000
--- a/attic/jao-osx-mail.el
+++ /dev/null
@@ -1,13 +0,0 @@
-(defun jao--gnus-message-id ()
- (require 'org-gnus)
- (let ((header (with-current-buffer gnus-summary-buffer
- (gnus-summary-article-header))))
- (and header (org-remove-angle-brackets (mail-header-id header)))))
-
-(defun jao-gnus-open-in-mail ()
- (interactive)
- (let ((id (jao--gnus-message-id)))
- (unless id (error "no message selected"))
- (shell-command-to-string (format "open 'message:<%s>'" id))))
-
-(provide 'jao-osx-mail)