From e00c3ab9e22b1c43fd04a1310f2c0096b0213add Mon Sep 17 00:00:00 2001 From: Vladyslav Matsiiako Date: Mon, 5 Dec 2022 00:07:03 -0500 Subject: [PATCH] Expanded contributing docs --- docs/contributing/FAQ.mdx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 docs/contributing/FAQ.mdx diff --git a/docs/contributing/FAQ.mdx b/docs/contributing/FAQ.mdx new file mode 100644 index 000000000..be65f5ca7 --- /dev/null +++ b/docs/contributing/FAQ.mdx @@ -0,0 +1,16 @@ +--- +title: "Frequently Asked Questions" +description: "Have any questions? [Join our Slack community](https://join.slack.com/t/infisical-users/shared_invite/zt-1kdbk07ro-RtoyEt_9E~fyzGo_xQYP6g)." +--- + +## Problem with SMTP + +You can normally populate `SMTP_USERNAME` and `SMTP_PASSWORD` with your usual login and password (you could also create a 'burner' email). Sometimes, there still are problems. + +You can go to your Gmail account settings > security and enable “less secure apps”. This would allow Infisical to use your Gmail to send emails. + +If it still doesn't work, [this](https://stackoverflow.com/questions/72547853/unable-to-send-email-in-c-sharp-less-secure-app-access-not-longer-available/72553362#72553362) should help. + +## `MONGO_URL` issues + +Your `MONGO_URL` should be something like `mongodb://root:example@mongo:27017/?authSource=admin`. If you want to change it (not recommended), you should make sure that you keep this URL in line with `MONGO_USERNAME=root` and `MONGO_PASSWORD=example`. \ No newline at end of file