Skip to content

Instantly share code, notes, and snippets.

-- Based on Chris Russell's 2017 Medium post (https://medium.com/@chris.russell/integrating-things-3-with-microsoft-outlook-on-mac-63a9ba43abc3)
-- and related GitHub gist (https://gist.github.com/crsrusl/67eee8497dd296879fe1a832b3205f0a).
--
-- IMPORTANT
-- As of Microsoft Outlook for Mac version 16.105.2, this script only works when using the "Legacy Outlook" variant.
-- AppleScript support in New Outlook for Mac is tracked with roadmap ID 88537
-- (see https://www.microsoft.com/en-us/microsoft-365/roadmap?id=88537)
--
tell application "Microsoft Outlook"
-- Stop if no message is selected
@fclad
fclad / Makefile
Created September 19, 2019 14:18
draft generation and snapshots
KDRFC = ${HOME}/.gem/ruby/2.3.0/bin/kramdown-rfc2629
XML2RFC = xml2rfc
RM = rm -f
SRC = $(wildcard *.md)
.PHONY: snapshot cleanall
all: $(SRC:.md=.xml) $(SRC:.md=.txt) $(SRC:.md=.html)