Update notes for 2019-05-08

This commit is contained in:
2019-05-08 15:33:15 +03:00
parent bb929a4488
commit a34c071939
3 changed files with 80 additions and 8 deletions

View File

@ -260,4 +260,36 @@ $ cat dspace.log.2019-05-01 | grep -E 'session_id=[A-Z0-9]{32}' | sort | uniq |
- I send her the link to the collection RSS feed
- Add requests cache to `resolve-addresses.py` script
## 2019-05-08
- A user said that CGSpace emails have stopped sending again
- Indeed, the `dspace test-email` script is showing an authentication failure:
```
$ dspace test-email
About to send test email:
- To: wooooo@cgiar.org
- Subject: DSpace test email
- Server: smtp.office365.com
Error sending email:
- Error: javax.mail.AuthenticationFailedException
Please see the DSpace documentation for assistance.
```
- I checked the settings and apparently I had updated it incorrectly last week after ICT reset the password
- Help Moayad with certbot-auto for Let's Encrypt scripts on the new AReS server (linode20)
- Normalize all `text_lang` values for metadata on CGSpace and DSpace Test (as I had tested last month):
```
UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('ethnob', 'en', '*', 'E.', '');
UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IS NULL;
UPDATE metadatavalue SET text_lang='es_ES' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('es', 'spa');
```
- Send Francesca Giampieri from Bioversity a CSV export of all their items issued in 2018
- They will be doing a migration of 1500 items from their TYPO3 database into CGSpace soon and want an example CSV with all required metadata columns
<!-- vim: set sw=2 ts=2: -->