Yuris Cakranegara
Yuris Cakranegara
@petodavid Yes, that pull request fixes the PDF opening issue on iOS. If you see the changes, @LazyDave76 did a brilliant hack on removing the "file://" prefix on the file...
I'm facing the same issue, is there a possible workaround for this?
@forehalo Yes, sure. I used a `.env` file and it looks like this: ``` [email protected] AFFINE_ADMIN_PASSWORD=password AFFINE_SERVER_HOST=mydomain.dev AFFINE_SERVER_PORT=3010 AFFINE_SERVER_HTTPS=true MAILER_HOST=smtp.gmail.com MAILER_PORT=587 [email protected] MAILER_PASSWORD=password ``` I also changed my compose file...
@Jycreyn I managed to get the mailing service working with Gmail. You have the `MAILER_HOST` and `MAILER_PORT` correct. `MAILER_USER` needs to be your email address `MAILER_PASSWORD` is the app password...
@Jycreyn no, I didn't
@Jycreyn no, the password should be the 16 digits characters without spaces.
@Jycreyn did you add those environment variable to your docker compose file? It should look like this for the environment variable of the affine container: ``` environment: - NODE_OPTIONS="--import=./scripts/register.js" -...
@Jycreyn Ah, I forgot to exclude those variables in my example. `AFFINE_SERVER_HOST`, `AFFINE_SERVER_PORT`, and `AFFINE_SERVER_HTTPS` are extra variables that I added myself and are not related to the mailing service....
@Jycreyn As for the members limit, I only added one other member and haven't added more. You can try adding more and let me know how it goes :). Also,...
> you sure these configuration items are included? didn't see it in this link https://docs.affine.pro/docs/self-host-affine Yes, those are the environment variables accessed by the app. We can add that to...