diff --git a/README.md b/README.md index 7f2c358e7..6414b4f4c 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re 4 - Webpack Choose from 1, 2, 3, 4 [1]: 1 use_celery [n]: y - use_mailhog [n]: n + use_mailpit [n]: n use_sentry [n]: y use_whitenoise [n]: n use_heroku [n]: y diff --git a/docs/developing-locally-docker.rst b/docs/developing-locally-docker.rst index 6af4fe7c2..9d00b53ca 100644 --- a/docs/developing-locally-docker.rst +++ b/docs/developing-locally-docker.rst @@ -194,7 +194,7 @@ Notice that the ``container_name`` is generated dynamically using your project s Mailhog ~~~~~~~ -When developing locally you can go with MailHog_ for email testing provided ``use_mailhog`` was set to ``y`` on setup. To proceed, +When developing locally you can go with MailHog_ for email testing provided ``use_mailpit`` was set to ``y`` on setup. To proceed, #. make sure ``_local_mailhog`` container is up and running; diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index 88c8b3206..60d0e5506 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -102,7 +102,7 @@ Setup Email Backend MailHog ~~~~~~~ -.. note:: In order for the project to support MailHog_ it must have been bootstrapped with ``use_mailhog`` set to ``y``. +.. note:: In order for the project to support MailHog_ it must have been bootstrapped with ``use_mailpit`` set to ``y``. MailHog is used to receive emails during development, it is written in Go and has no external dependencies. @@ -131,7 +131,7 @@ Now you have your own mail server running locally, ready to receive whatever you Console ~~~~~~~ -.. note:: If you have generated your project with ``use_mailhog`` set to ``n`` this will be a default setup. +.. note:: If you have generated your project with ``use_mailpit`` set to ``n`` this will be a default setup. Alternatively, deliver emails over console via ``EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'``. diff --git a/docs/project-generation-options.rst b/docs/project-generation-options.rst index bd368ae84..4984d4abc 100644 --- a/docs/project-generation-options.rst +++ b/docs/project-generation-options.rst @@ -115,7 +115,7 @@ Both Gulp and Webpack support Bootstrap recompilation with real-time variables a use_celery: Indicates whether the project should be configured to use Celery_. -use_mailhog: +use_mailpit: Indicates whether the project should be configured to use MailHog_. use_sentry: diff --git a/{{cookiecutter.project_slug}}/README.md b/{{cookiecutter.project_slug}}/README.md index 56853f8f7..d22fb851a 100644 --- a/{{cookiecutter.project_slug}}/README.md +++ b/{{cookiecutter.project_slug}}/README.md @@ -78,7 +78,7 @@ celery -A config.celery_app worker -B -l info ``` {%- endif %} -{%- if cookiecutter.use_mailhog == "y" %} +{%- if cookiecutter.use_mailpit == "y" %} ### Email Server