adding flat open document support (fixes #47)

This commit is contained in:
Julien Neuhart
2019-02-18 13:46:58 +01:00
parent 40eef457ab
commit 4827a45f22
3 changed files with 3 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ You may send one or more Office documents. Following file extensions are accepte
* `.txt`
* `.rtf`
* `.fodt`
* `.doc`
* `.docx`
* `.odt`

View File

@@ -647,6 +647,7 @@ $client->store($request, $dest);
<ul>
<li><code>.txt</code></li>
<li><code>.rtf</code></li>
<li><code>.fodt</code></li>
<li><code>.doc</code></li>
<li><code>.docx</code></li>
<li><code>.odt</code></li>

View File

@@ -10,6 +10,7 @@ import (
var officeExts = []string{
".txt",
".rtf",
".fodt",
".doc",
".docx",
".odt",