Bulk emails sending too fast causing gmail to block account. Is there a way to rate limit?

@oedx
If you are using tutor, you can apply my changes in a simple one file tutor plugin, where we can use a git cherry-pick as a patched and then rebuild the openedx image to apply changes, the steps:

1- Go to tutor plugins directory:
cd $(tutor plugins printroot)
2- Create a plugin as a file:
touch myplugin.yml

3- Write the following in file: e.g. using nano, vim or any editor:

name: myplugin
version: 1.0.0
patches:
  openedx-dockerfile-git-patches-default: |
    RUN git fetch --depth=2 https://github.com/ghassanmas/edx-platform/ 91e7a0eb729f3e66587b154f5e4444dbe2414422 && git cherry-pick 91e7a0eb729f3e66587b154f5e4444dbe2414422

4- Activate the plugin tutor plugins enable myplugin
5- Save config tutor config save
6 Build the openedx image tutor images build openedx

Then you can start as you start normally and to check that my changes are applied, you run a command in the lms e.g. git log you should see this log on top

1 Like