diff --git a/mu4e/org-mu4e.el b/mu4e/org-mu4e.el index 3a14eb1c..b9e96882 100644 --- a/mu4e/org-mu4e.el +++ b/mu4e/org-mu4e.el @@ -125,7 +125,7 @@ Example usage: the query (for paths starting with 'query:')." (cond ((string-match "^msgid:\\(.+\\)" path) - (mu4e-view-message-with-msgid (match-string 1 path))) + (mu4e-view-message-with-message-id (match-string 1 path))) ((string-match "^query:\\(.+\\)" path) (mu4e-headers-search (match-string 1 path) current-prefix-arg)) (t (mu4e-error "mu4e: unrecognized link type '%s'" path)))) diff --git a/mu4e/org-old-mu4e.el b/mu4e/org-old-mu4e.el index 845d2393..d73a7806 100644 --- a/mu4e/org-old-mu4e.el +++ b/mu4e/org-old-mu4e.el @@ -95,7 +95,7 @@ the query (for paths starting with 'query:')." (require 'mu4e) (cond ((string-match "^msgid:\\(.+\\)" path) - (mu4e-view-message-with-msgid (match-string 1 path))) + (mu4e-view-message-with-message-id (match-string 1 path))) ((string-match "^query:\\(.+\\)" path) (mu4e-headers-search (match-string 1 path) current-prefix-arg)) (t (mu4e-error "mu4e: unrecognized link type '%s'" path))))