Seafile pro edition 10.0.6 is ready!

This is a maintenance release with following fixes:

  • [fix] Fix “all notifications” page link broken when the new notification server is used
  • [fix] Fix a UI bug of notifications dialog
  • [fix] Fix a bug in listing shared out libraries/folders in multi-tenancy mode
  • [fix] Fix a bug in sending emails to admin when finding virus

If we applied the fix for the notification server in 10.0.5, do we need to adjust something when upgrading?
https://forum.seafile.com/t/notification-link-is-broken-seafile-pro-10-0-5/18150/2

No extra configuration change is needed.

1 Like

Just for the record, this is not correct @daniel.pan The fix needs to be reverted in order for it to work correctly. (change notification-server back to notification)

No more updates for community v10 edition? :frowning:

Hi
the Seafile manual has been updated recently, a version 10.0.3 for CE is coming and a version 10.0.7 for PRO, read the database configuration passage in the manual:

https://manual.seafile.com/config/seafile-conf/#database-configuration

When set `use_ssl` to true and `skip_verify` to false, it will check whether the MySQL server certificate is legal through the CA configured in `ca_path`. The `ca_path` is a trusted CA certificate path for signing MySQL server certificates. When `skip_verify` is true, there is no need to add the `ca_path` option. The MySQL server certificate won't be verified at this time.

Since Seafile 10.0.3 and 10.0.7 Pro, you can use unix_socket authentication plugin provided by MariaDB/MySQL. To enable it, you need to specify the `unix_socket` option without user name and password.

```
[database]
#user = root
#password = root
unix_socket = /var/run/mysqld/mysqld.sock
```