-
Notifications
You must be signed in to change notification settings - Fork 2
/
apple-mail-memo-export.html
115 lines (83 loc) · 4.06 KB
/
apple-mail-memo-export.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Akkunchoi.github.com : " />
<link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/rainbow-github.css">
<link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/stylesheet.css">
<title>Apple Mail (Mail.app) のメモをエクスポートする | akkunchoi@github</title>
<link rel="alternate" type="application/rss+xml" title="RSS Feed for mysite.com" href="/feed.xml" />
<script type="text/javascript" src="/javascripts/rainbow-custom.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function($){
//$('pre > code').highlight({source: 1, zebra: 1, indent: 'space', list: 'ol'});
});
</script>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/akkunchoi">View on GitHub</a>
<h1 id="project_title">
<a href="/">akkunchoi.github.com</a>
</h1>
<h2 id="project_tagline"></h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<article class="posts">
<header>
<h1>Apple Mail (Mail.app) のメモをエクスポートする</h1>
<ul class="tags">
<li class="inline archive_list"><a class="tag_list_link" href="/tag/MacOSX">MacOSX</a></li>
</ul>
</header>
<div class="posts-content">
<p>Apple Mail (Mail.app) のメモは保存が早く、iPhoneと同期できて重宝していたのだけど、<a href="/apple-mail-memory-problem.html">変な問題</a> が解決できず、別のツールに乗り換えすることを検討してみた。</p>
<p>問題はエクスポートをどうするか。メモはgmailに保存しているので、最悪IMAPでアクセスすれば取得できるのだけど、良いスクリプトを発見。</p>
<p><a href="http://veritrope.com/tech/export-apple-mail-messages-and-notes-to-text-files/">http://veritrope.com/tech/export-apple-mail-messages-and-notes-to-text-files/</a></p>
<p>Apple MailをAppleScriptで操作してファイルに書き出すというスクリプト。
期待通り1メモが1ファイルで保存された。
これはすごい。製作者に感謝。
AppleScript習得したら色んなことができそうだ。</p>
<p>使い方はの通り。</p>
<ol>
<li>上記スクリプトをファイルに保存。</li>
<li>AppleScriptエディタで開く。</li>
<li>Apple Mailでエクスポートしたいメモを選択状態にして</li>
<li>実行する。</li>
<li>するとデスクトップの “Temp Export Folder” に保存される</li>
</ol>
<p>Notational Velocityに移行する予定なため、ファイル名の連番を消す(重複する場合は付ける)ように少し書き換えた。</p>
<p><a href="https://gist.github.com/2847462">https://gist.github.com/2847462</a></p>
</div>
<footer>
<p>Last updated at <time>2012-08-07 22:14:31 +0900</time></p>
<!-- <p>Published at <time>2012-07-28</time></p> -->
</footer>
</article>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36469923-5']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>