From 0d434639713d4626b29fd9c65556f1f97795d9c0 Mon Sep 17 00:00:00 2001 From: Matthias Evering <36561948+ewingson@users.noreply.github.com> Date: Fri, 17 Apr 2020 17:10:49 +0200 Subject: [PATCH 1/2] add gmail configuration d2020-04-17 t17:10 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a3653bc1e..96fa643db 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,14 @@ See [Running Solid behind a reverse proxy](https://github.com/solid/node-solid-s ##### How can I send emails to my users with my Gmail? > To use Gmail you may need to configure ["Allow Less Secure Apps"](https://www.google.com/settings/security/lesssecureapps) in your Gmail account unless you are using 2FA in which case you would have to create an [Application Specific](https://security.google.com/settings/security/apppasswords) password. You also may need to unlock your account with ["Allow access to your Google account"](https://accounts.google.com/DisplayUnlockCaptcha) to use SMTP. +also add to `config.json` +``` + "useEmail": true, + "emailHost": "smtp.gmail.com", + "emailPort": "465", + "emailAuthUser": "xxxx@gmail.com", + "emailAuthPass": "gmailPass" +``` ### Upgrading from version 4 To upgrade from version 4 to the current version 5, you need to run a migration script, as explained in the [v5 upgrade notes](https://github.com/solid/node-solid-server/blob/master/CHANGELOG.md#500-upgrade-notes). From e0db7e8ee4e89024a9b82e979064e18fd2d14aff Mon Sep 17 00:00:00 2001 From: Matthias Evering <36561948+ewingson@users.noreply.github.com> Date: Fri, 17 Apr 2020 17:15:20 +0200 Subject: [PATCH 2/2] newline d2020-04-17 t17:15 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 96fa643db..277011bae 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ See [Running Solid behind a reverse proxy](https://github.com/solid/node-solid-s ##### How can I send emails to my users with my Gmail? > To use Gmail you may need to configure ["Allow Less Secure Apps"](https://www.google.com/settings/security/lesssecureapps) in your Gmail account unless you are using 2FA in which case you would have to create an [Application Specific](https://security.google.com/settings/security/apppasswords) password. You also may need to unlock your account with ["Allow access to your Google account"](https://accounts.google.com/DisplayUnlockCaptcha) to use SMTP. + also add to `config.json` ``` "useEmail": true,