Should be fixed by 8415bbcb. You should also be able to fix your database with an ALTER TABLE.
Remi Rampin (8415bbcb) at 05 Feb 16:55
Use LONGTEXT for documents.contents on MariaDB
Remi Rampin (9b03f151) at 05 Feb 16:50
Use LONGTEXT for documents.contents on MariaDB
It looks like there is a longtext type, we should probably use that.
The table is created with contents text NOT NULL, I am not sure if MariaDB has a maximum size for text columns. I don't use MariaDB. This page says 65 kB.
The Docker image you use is using pipx. This should fix the build.
Remi Rampin (ddb70c4d) at 26 Jan 21:20
CI: Use pipx not pip3 to install pybtex
Remi Rampin (ddb70c4d) at 26 Jan 21:18
CI: Use pipx not pip3 to install pybtex
It seems that it only supports coding entire lines, which is very different from Taguette -- not sure we could interoperate meaningfully.
Fixed by 9dc8fb05
Remi Rampin (9dc8fb05) at 13 Jan 18:49
Fix MAIL_SERVER.ssl=False being refused
Oh oh, it looks like I forgot to handle the False case here in the latest change. I will add it back.
In the meantime, you can use "starttls-or-plaintext", that should work in your setup.
In particular, https://schema.qdasoftware.org/ is dead.
https://github.com/openqda/refi-tools seems to have some info but I am not sure who runs it.
Last time I checked, the problem is that the exchange format was underspecified, especially for unicode documents. It also built on non-open formats which is weird.
Right now I can't even find the specification on their website. I don't know if anyone runs that thing still.
Are you able to test !159 (merged)? I have built quay.io/remram44/taguette:1.5.2-13-g5b19ac3. It should support STARTTLS with the following config:
MAIL_SERVER = {
"ssl": "starttls",
"host": "your-server",
"port": 25,
}
Remi Rampin (648240e8) at 12 Dec 03:01