-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (140 loc) · 6.63 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2024-03-04 Mon 09:53 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Attachment Converter</title>
<meta name="author" content="Matt Teichman" />
<meta name="generator" content="Org Mode" />
<link rel="stylesheet" type="text/css" href="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/css/htmlize.css"/>
<link rel="stylesheet" type="text/css" href="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/css/readtheorg.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://fniessen.github.io/org-html-themes/src/lib/js/jquery.stickytableheaders.min.js"></script>
<script type="text/javascript" src="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/js/readtheorg.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&family=Inter:wght@400;600&family=Poppins:wght@600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/c69874a979.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<div id="content" class="content">
<h1 class="title">Attachment Converter</h1>
<div id="table-of-contents" role="doc-toc">
<h2>Table of Contents</h2>
<div id="text-table-of-contents" role="doc-toc">
<ul>
<li><a href="#orgf78a58d">0.0.1. an open-source tool for batch-converting email attachments to preservation formats</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#orga44d31d">1. Quick Start Commands</a></li>
<li><a href="#org2bd7a57">2. About</a></div>
</div>
<div id="org9911960" class="figure">
<p><a href="./index.html" class="attc-logo"><img src="images/attc_logo.svg" alt="attc_logo.svg" class="attc-logo" /></a>
</p>
</div>
<p class="tab-navs">
<a href="./guide/" class="tab-navs">Guide</a> <a href="./docs/">Docs</a> <a href="./api/index.html">API</a> <a href="https://github.com/uchicago-library/attachment-converter"><img src="images/github.svg" alt="github.svg" class="org-svg" /></a>
</p>
<div id="outline-container-orgf78a58d" class="outline-4">
<h4 id="orgf78a58d"><span class="section-number-4">0.0.1.</span> an open-source tool for batch-converting email attachments to preservation formats</h4>
<div class="outline-text-4" id="text-0-0-1">
<p>
Attachment Converter is an open-source command-line
tool for digital archivists. Given an email mailbox
in <a href="https://en.wikipedia.org/wiki/Mbox">MBOX</a> format, it will go through that mailbox and
batch convert all the attachments it can into
preservation formats, putting a converted copy of
each attachment back into the email from which it
originated. The user can then re-open the new
mailbox in a mail user agent, such as <a href="https://en.wikipedia.org/wiki/Apple_Mail">Apple Mail</a>,
and browse through the mailbox the normal way.
</p>
<p id="install">
<a href="./docs/index.html" id="install">Install</a>
</p>
</div>
</div>
<div id="outline-container-orga44d31d" class="outline-2">
<h2 id="orga44d31d"><span class="section-number-2">1.</span> Quick Start Commands</h2>
<div class="outline-text-2" id="text-1">
<p>
Get started running Attachment Converter using these commands:
</p>
<pre class="example" id="orgd87d180">
# To convert attachments of a single email
$ attc --single-email < example-email.eml > example-email-converted.eml
# To run a report of a mailbox
$ attc --report < example.mbox
# To convert attachments of a mailbox
$ attc < example.mbox > example-converted.mbox
</pre>
<p>
Note that the input mailbox must be in MBOX format. If you have an
Outlook <code>.pst</code> file and want to convert it to <code>.mbox</code> in order to be
able to run Attachment Converter on it, we have found <a href="https://www.flawlessrhetoric.com/Using-libpst-to-convert-PST-to-MBOX,-and-understanding-Thunderbird's-folder-structure">Libpst</a> to be a
useful utility for doing that conversion.
</p>
</div>
</div>
<div id="outline-container-org2bd7a57" class="outline-2">
<h2 id="org2bd7a57"><span class="section-number-2">2.</span> About</h2>
<div class="outline-text-2" id="text-2">
<p>
This project originates from the UChicago Library Digital Library
Development Center and was funded by an Email Archives: Building
Capacity and Community grant, led by the University of Illinois
with support provided by the Andrew W. Mellon Foundation. The
current development team is:
</p>
<ul class="org-ul">
<li><a href="https://nmmull.github.io/">Nathan Mull</a>
<ul class="org-ul">
<li><code>first letter of first name</code> + <code>last name</code> + <code>@uchicago.edu</code></li>
</ul></li>
<li><a href="https://www.lib.uchicago.edu/about/directory/staff/matt-teichman/">Matt Teichman</a>
<ul class="org-ul">
<li><code>last name</code> + <code>@uchicago.edu</code></li>
</ul></li>
<li><a href="https://www.lib.uchicago.edu/about/directory/staff/emily-schartz/">Emily Schartz</a>
<ul class="org-ul">
<li><code>first letter of first name</code> + j + <code>last name</code> + <code>@uchicago.edu</code></li>
</ul></li>
</ul>
<p>
Matt is currently managing the project. Previous (and possibly
future?) members of our illustrious dev team include:
</p>
<ul class="org-ul">
<li><a href="https://github.com/OwenPriceSkelly">Owen Price Skelly</a></li>
<li><a href="https://github.com/cormacd9818">Cormac Duhamel</a></li>
<li><a href="https://www.linkedin.com/in/nk45/">Nishchay Karle</a></li>
<li><a href="https://theworldofobi.github.io/">Obi Obetta</a></li>
</ul>
<p>
We are also grateful to <a href="https://www2.lib.uchicago.edu/keith/">Keith Waclena</a> for allowing us to tap into his
endless wisdom regarding the email specification, UNIX systems
programming, and the OCaml language throughout our work on this project.
</p>
<div id="org82170d9" class="figure">
<p><img src="images/back_to_top.svg" alt="back_to_top.svg" class="org-svg" id="back-to-top" />
</p>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="author">Author: Matt Teichman</p>
<p class="date">Created: 2024-03-04 Mon 09:53</p>
<p class="validation"><a href="https://validator.w3.org/check?uri=referer">Validate</a></p>
</div>
</body>
</html>