-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users created after v11 have to use <random>@auth.local emailaddress for OCM #2784
Comments
Bump, I'm also seeing this. Also, when spinning up a new Seafile deployment via docker compose, the |
The OCM feature should have already been fixed in the latest version. For SEAFILE_ADMIN_EMAIL issue, the SEAFILE_ADMIN_EMAIL should have been stored in the contact_email field for the user and can be used in loging. |
Hmm, I'm definitely still having problems logging in. What I do is:
I see in I can add a new superuser with
|
Btw, I'm also getting lots of these warnings as described in #2508 |
I followed the steps to install and did not reproduce the above problem. |
This is very weird! You could not reproduce neither the failed login, nor the ignored email when running For reference, this is my full docker-compose.yml: services:
db:
image: mariadb:10.11
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD=db_dev # Required, set the root's password of MySQL service.
- MYSQL_LOG_CONSOLE=true
- MARIADB_AUTO_UPGRADE=1
volumes:
- /opt/seafile/volumes/seafile-mysql/db:/var/lib/mysql # Required, specifies the path to MySQL data persistent store.
networks:
- seafile-net
memcached:
image: memcached:1.6.18
container_name: seafile-memcached
entrypoint: memcached -m 256
networks:
- seafile-net
»»»»»»»»»»
seafile:
image: seafileltd/seafile-mc:11.0-latest
container_name: seafile
ports:
- "8000:80"
# - "443:443" # If https is enabled, cancel the comment.
volumes:
- /opt/seafile/volumes/seafile-data:/shared # Required, specifies the path to Seafile data persistent store.
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=db_dev # Required, the value should be root's password of MySQL service.
- TIME_ZONE=Europe/Copenhagen # Optional, default is UTC. Should be uncomment and set to your local time zone.
- [email protected] # Specifies Seafile admin user, default is '[email protected]'.
- SEAFILE_ADMIN_PASSWORD=asecret # Specifies Seafile admin password, default is 'asecret'.
- SEAFILE_SERVER_LETSENCRYPT=false # Whether to use https or not.
- SEAFILE_SERVER_HOSTNAME=seafile.adamschoenemann.dk # Specifies your host name if https is enabled.
depends_on:
- db
- memcached
networks:
- seafile-net
networks:
seafile-net: As you can see, it's exactly the same that I linked, except for
The server is behind an nginx ssl terminating proxy |
When setting up OCM and sharing files I need to share it to @auth.local emailaddres instead of my contact-email.
I'd like to see shares to be able to be shared with contact emailaddresses. a
The text was updated successfully, but these errors were encountered: