mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 06:35:03 +01:00
Update notes for 2019-02-13
This commit is contained in:
parent
d11b75d251
commit
17e03193e3
@ -563,4 +563,43 @@ $ identify -verbose alc_contrastes_desafios.pdf.jpg
|
||||
|
||||
- I will read the PDFBox thumbnailer documentation to see if I can change the size and quality
|
||||
|
||||
## 2019-02-13
|
||||
|
||||
- ILRI ICT reset the password for the CGSpace mail account, but I still can't get it to send mail from DSpace's `test-email` utility
|
||||
- I even added extra mail properties to `dspace.cfg` as suggested by someone on the dspace-tech mailing list:
|
||||
|
||||
```
|
||||
mail.extraproperties = mail.smtp.starttls.required = true, mail.smtp.auth=true
|
||||
```
|
||||
|
||||
- But the result is still:
|
||||
|
||||
```
|
||||
Error sending email:
|
||||
- Error: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.57 SMTP; Client was not authenticated to send anonymous mail during MAIL FROM [AM6PR06CA0001.eurprd06.prod.outlook.com]
|
||||
```
|
||||
|
||||
- I tried to log into the Outlook 365 web mail and it doesn't work so I've emailed ILRI ICT again
|
||||
- After reading the [common mistakes in the JavaMail FAQ](https://javaee.github.io/javamail/FAQ#commonmistakes) I reconfigured the extra properties in DSpace's mail configuration to be simply:
|
||||
|
||||
```
|
||||
mail.extraproperties = mail.smtp.starttls.enable=true
|
||||
```
|
||||
|
||||
- ... and then I was able to send a mail using my personal account where I know the credentials work
|
||||
- The CGSpace account still gets this error message:
|
||||
|
||||
```
|
||||
Error sending email:
|
||||
- Error: javax.mail.AuthenticationFailedException
|
||||
```
|
||||
|
||||
- I updated the [DSpace SMTP settings in `dspace.cfg`](https://github.com/ilri/DSpace/pull/410) as well as the [variables in the DSpace role of the Ansible infrastructure scripts](https://github.com/ilri/rmg-ansible-public/commit/ab5fe4d10e16413cd04ffb1bc3179dc970d6d47c)
|
||||
- Thierry from CTA is having issues with his account on DSpace Test, and there is no admin password reset function on DSpace (only via email, which is disabled on DSpace Test), so I have to delete and re-create his account:
|
||||
|
||||
```
|
||||
$ dspace user --delete --email blah@cta.int
|
||||
$ dspace user --add --givenname Thierry --surname Lewyllie --email blah@cta.int --password 'blah'
|
||||
```
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -42,7 +42,7 @@ sys 0m1.979s
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2019-02/" />
|
||||
<meta property="article:published_time" content="2019-02-01T21:37:30+02:00"/>
|
||||
<meta property="article:modified_time" content="2019-02-12T09:24:28+02:00"/>
|
||||
<meta property="article:modified_time" content="2019-02-12T20:12:43+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="February, 2019"/>
|
||||
@ -89,9 +89,9 @@ sys 0m1.979s
|
||||
"@type": "BlogPosting",
|
||||
"headline": "February, 2019",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2019-02/",
|
||||
"wordCount": "3049",
|
||||
"wordCount": "3280",
|
||||
"datePublished": "2019-02-01T21:37:30+02:00",
|
||||
"dateModified": "2019-02-12T09:24:28+02:00",
|
||||
"dateModified": "2019-02-12T20:12:43+02:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -798,6 +798,50 @@ dspacestatistics=# SELECT * FROM items WHERE downloads > 0 ORDER BY downloads
|
||||
<li>I will read the PDFBox thumbnailer documentation to see if I can change the size and quality</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2019-02-13">2019-02-13</h2>
|
||||
|
||||
<ul>
|
||||
<li>ILRI ICT reset the password for the CGSpace mail account, but I still can’t get it to send mail from DSpace’s <code>test-email</code> utility</li>
|
||||
<li>I even added extra mail properties to <code>dspace.cfg</code> as suggested by someone on the dspace-tech mailing list:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>mail.extraproperties = mail.smtp.starttls.required = true, mail.smtp.auth=true
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>But the result is still:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>Error sending email:
|
||||
- Error: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.57 SMTP; Client was not authenticated to send anonymous mail during MAIL FROM [AM6PR06CA0001.eurprd06.prod.outlook.com]
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>I tried to log into the Outlook 365 web mail and it doesn’t work so I’ve emailed ILRI ICT again</li>
|
||||
<li>After reading the <a href="https://javaee.github.io/javamail/FAQ#commonmistakes">common mistakes in the JavaMail FAQ</a> I reconfigured the extra properties in DSpace’s mail configuration to be simply:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>mail.extraproperties = mail.smtp.starttls.enable=true
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>… and then I was able to send a mail using my personal account where I know the credentials work</li>
|
||||
<li>The CGSpace account still gets this error message:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>Error sending email:
|
||||
- Error: javax.mail.AuthenticationFailedException
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>I updated the <a href="https://github.com/ilri/DSpace/pull/410">DSpace SMTP settings in <code>dspace.cfg</code></a> as well as the <a href="https://github.com/ilri/rmg-ansible-public/commit/ab5fe4d10e16413cd04ffb1bc3179dc970d6d47c">variables in the DSpace role of the Ansible infrastructure scripts</a></li>
|
||||
<li>Thierry from CTA is having issues with his account on DSpace Test, and there is no admin password reset function on DSpace (only via email, which is disabled on DSpace Test), so I have to delete and re-create his account:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>$ dspace user --delete --email blah@cta.int
|
||||
$ dspace user --add --givenname Thierry --surname Lewyllie --email blah@cta.int --password 'blah'
|
||||
</code></pre>
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2019-02/</loc>
|
||||
<lastmod>2019-02-12T09:24:28+02:00</lastmod>
|
||||
<lastmod>2019-02-12T20:12:43+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
@ -209,7 +209,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2019-02-12T09:24:28+02:00</lastmod>
|
||||
<lastmod>2019-02-12T20:12:43+02:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -220,7 +220,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||
<lastmod>2019-02-12T09:24:28+02:00</lastmod>
|
||||
<lastmod>2019-02-12T20:12:43+02:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -232,13 +232,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2019-02-12T09:24:28+02:00</lastmod>
|
||||
<lastmod>2019-02-12T20:12:43+02:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2019-02-12T09:24:28+02:00</lastmod>
|
||||
<lastmod>2019-02-12T20:12:43+02:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user