Python django.conf.settings.EMAIL_BACKEND Examples
The following are 25
code examples of django.conf.settings.EMAIL_BACKEND().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django.conf.settings
, or try the search function
.
Example #1
Source File: utils.py From GTDWeb with GNU General Public License v2.0 | 6 votes |
def setup_test_environment(): """Perform any global pre-test setup. This involves: - Installing the instrumented test renderer - Set the email backend to the locmem email backend. - Setting the active locale to match the LANGUAGE_CODE setting. """ Template._original_render = Template._render Template._render = instrumented_test_render # Storing previous values in the settings module itself is problematic. # Store them in arbitrary (but related) modules instead. See #20636. mail._original_email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' request._original_allowed_hosts = settings.ALLOWED_HOSTS settings.ALLOWED_HOSTS = ['*'] mail.outbox = [] deactivate()
Example #2
Source File: test_mailbox_base.py From django_mail_admin with MIT License | 6 votes |
def setUp(self): self._ALLOWED_MIMETYPES = get_allowed_mimetypes() self._STRIP_UNALLOWED_MIMETYPES = ( strip_unallowed_mimetypes() ) self._TEXT_STORED_MIMETYPES = get_text_stored_mimetypes() self.mailbox = Mailbox.objects.create(from_email='from@example.com') self.test_account = os.environ.get('EMAIL_ACCOUNT') self.test_password = os.environ.get('EMAIL_PASSWORD') self.test_smtp_server = os.environ.get('EMAIL_SMTP_SERVER') self.test_from_email = 'nobody@nowhere.com' self.maximum_wait_seconds = 60 * 5 settings.EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' settings.EMAIL_HOST = self.test_smtp_server settings.EMAIL_PORT = 587 settings.EMAIL_HOST_USER = self.test_account settings.EMAIL_HOST_PASSWORD = self.test_password settings.EMAIL_USE_TLS = True super(EmailMessageTestCase, self).setUp()
Example #3
Source File: test_template.py From doccano with MIT License | 6 votes |
def test_form_submission(self): with setenv('ALLOW_SIGNUP', 'True'): self.factory = RequestFactory() if hasattr(settings, 'EMAIL_BACKEND'): EMAIL_BACKEND = settings.EMAIL_BACKEND else: EMAIL_BACKEND = False settings.EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' request = self.factory.post('/signup') request.POST = {'username': 'username5648', 'email': 'email@example.com', 'password1': 'pwd0000Y00$$', 'password2': 'pwd0000Y00$$' } response = SignupView.as_view()(request) needle = '<span>emailed you instructions to activate your account</span>' if not EMAIL_BACKEND: delattr(settings, 'EMAIL_BACKEND') else: settings.EMAIL_BACKEND = EMAIL_BACKEND self.assertInHTML(needle, str(response.content))
Example #4
Source File: utils.py From openhgsenti with Apache License 2.0 | 6 votes |
def teardown_test_environment(): """Perform any global post-test teardown. This involves: - Restoring the original test renderer - Restoring the email sending functions """ Template._render = Template._original_render del Template._original_render settings.EMAIL_BACKEND = mail._original_email_backend del mail._original_email_backend settings.ALLOWED_HOSTS = request._original_allowed_hosts del request._original_allowed_hosts del mail.outbox
Example #5
Source File: utils.py From openhgsenti with Apache License 2.0 | 6 votes |
def setup_test_environment(): """Perform any global pre-test setup. This involves: - Installing the instrumented test renderer - Set the email backend to the locmem email backend. - Setting the active locale to match the LANGUAGE_CODE setting. """ Template._original_render = Template._render Template._render = instrumented_test_render # Storing previous values in the settings module itself is problematic. # Store them in arbitrary (but related) modules instead. See #20636. mail._original_email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' request._original_allowed_hosts = settings.ALLOWED_HOSTS settings.ALLOWED_HOSTS = ['*'] mail.outbox = [] deactivate()
Example #6
Source File: __init__.py From luscan-devel with GNU General Public License v2.0 | 6 votes |
def get_connection(backend=None, fail_silently=False, **kwds): """Load an email backend and return an instance of it. If backend is None (default) settings.EMAIL_BACKEND is used. Both fail_silently and other keyword arguments are used in the constructor of the backend. """ path = backend or settings.EMAIL_BACKEND try: mod_name, klass_name = path.rsplit('.', 1) mod = import_module(mod_name) except ImportError as e: raise ImproperlyConfigured(('Error importing email backend module %s: "%s"' % (mod_name, e))) try: klass = getattr(mod, klass_name) except AttributeError: raise ImproperlyConfigured(('Module "%s" does not define a ' '"%s" class' % (mod_name, klass_name))) return klass(fail_silently=fail_silently, **kwds)
Example #7
Source File: utils.py From luscan-devel with GNU General Public License v2.0 | 6 votes |
def teardown_test_environment(): """Perform any global post-test teardown. This involves: - Restoring the original test renderer - Restoring the email sending functions """ Template._render = Template._original_render del Template._original_render settings.EMAIL_BACKEND = mail._original_email_backend del mail._original_email_backend settings.ALLOWED_HOSTS = request._original_allowed_hosts del request._original_allowed_hosts del mail.outbox
Example #8
Source File: utils.py From luscan-devel with GNU General Public License v2.0 | 6 votes |
def setup_test_environment(): """Perform any global pre-test setup. This involves: - Installing the instrumented test renderer - Set the email backend to the locmem email backend. - Setting the active locale to match the LANGUAGE_CODE setting. """ Template._original_render = Template._render Template._render = instrumented_test_render # Storing previous values in the settings module itself is problematic. # Store them in arbitrary (but related) modules instead. See #20636. mail._original_email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' request._original_allowed_hosts = settings.ALLOWED_HOSTS settings.ALLOWED_HOSTS = ['*'] mail.outbox = [] deactivate()
Example #9
Source File: panel.py From coursys with GNU General Public License v3.0 | 6 votes |
def settings_info(): info = [] info.append(('Deploy mode', settings.DEPLOY_MODE)) info.append(('Database engine', settings.DATABASES['default']['ENGINE'])) info.append(('Authentication Backends', settings.AUTHENTICATION_BACKENDS)) info.append(('Cache backend', settings.CACHES['default']['BACKEND'])) info.append(('Haystack engine', settings.HAYSTACK_CONNECTIONS['default']['ENGINE'])) info.append(('Email backend', settings.EMAIL_BACKEND)) if hasattr(settings, 'CELERY_EMAIL') and settings.CELERY_EMAIL: info.append(('Celery email backend', settings.CELERY_EMAIL_BACKEND)) if hasattr(settings, 'CELERY_BROKER_URL'): info.append(('Celery broker', settings.CELERY_BROKER_URL.split(':')[0])) DATABASES = copy.deepcopy(settings.DATABASES) for d in DATABASES: if 'PASSWORD' in DATABASES[d]: DATABASES[d]['PASSWORD'] = '*****' info.append(('DATABASES', mark_safe('<pre>'+escape(pprint.pformat(DATABASES))+'</pre>'))) return info
Example #10
Source File: utils.py From GTDWeb with GNU General Public License v2.0 | 6 votes |
def teardown_test_environment(): """Perform any global post-test teardown. This involves: - Restoring the original test renderer - Restoring the email sending functions """ Template._render = Template._original_render del Template._original_render settings.EMAIL_BACKEND = mail._original_email_backend del mail._original_email_backend settings.ALLOWED_HOSTS = request._original_allowed_hosts del request._original_allowed_hosts del mail.outbox
Example #11
Source File: __init__.py From GTDWeb with GNU General Public License v2.0 | 5 votes |
def get_connection(backend=None, fail_silently=False, **kwds): """Load an email backend and return an instance of it. If backend is None (default) settings.EMAIL_BACKEND is used. Both fail_silently and other keyword arguments are used in the constructor of the backend. """ klass = import_string(backend or settings.EMAIL_BACKEND) return klass(fail_silently=fail_silently, **kwds)
Example #12
Source File: mocks.py From canvas with BSD 3-Clause "New" or "Revised" License | 5 votes |
def override_send_messages(fun): global _dispatch old_email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'canvas.mocks.MockEmailBackend' old_dispatch = _dispatch _dispatch = fun try: yield finally: _dispatch = old_dispatch settings.EMAIL_BACKEND = old_email_backend
Example #13
Source File: test_template.py From doccano with MIT License | 5 votes |
def test_mail_not_set_up(self): with setenv('ALLOW_SIGNUP', 'True'): if hasattr(settings, 'EMAIL_HOST'): has_EMAIL_HOST = True EMAIL_HOST = settings.EMAIL_HOST delattr(settings, 'EMAIL_HOST') else: has_EMAIL_HOST = False if hasattr(settings, 'EMAIL_BACKEND'): has_EMAIL_BACKEND = True EMAIL_BACKEND = settings.EMAIL_BACKEND delattr(settings, 'EMAIL_BACKEND') else: has_EMAIL_BACKEND = False request = HttpRequest() request.method = 'POST' response = SignupView.as_view()(request, as_string=True) if has_EMAIL_HOST: settings.EMAIL_HOST = EMAIL_HOST if has_EMAIL_BACKEND: settings.EMAIL_BACKEND = EMAIL_BACKEND needle = "<span>has not set up any emails</span>" self.assertInHTML(needle, str(response.content))
Example #14
Source File: tests.py From govready-q with GNU General Public License v3.0 | 5 votes |
def setUpClass(cls): super(SeleniumTest, cls).setUpClass() # Override the email backend so that we can capture sent emails. from django.conf import settings settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' # Override ALLOWED_HOSTS, SITE_ROOT_URL, etc. # because they may not be set or set properly in the local environment's # non-test settings for the URL assigned by the LiveServerTestCase server. settings.ALLOWED_HOSTS = ['localhost', 'testserver'] settings.SITE_ROOT_URL = cls.live_server_url # In order for these tests to succeed when not connected to the # Internet, disable email deliverability checks which query DNS. settings.VALIDATE_EMAIL_DELIVERABILITY = False ## Turn on DEBUG so we can see errors better. #settings.DEBUG = True # Start a headless browser. import selenium.webdriver from selenium.webdriver.chrome.options import Options as ChromeOptions options = selenium.webdriver.ChromeOptions() if SeleniumTest.window_geometry == "maximized": options.add_argument("--start-maximized") # too small screens make clicking some things difficult else: options.add_argument("--window-size=" + ",".join(str(dim) for dim in SeleniumTest.window_geometry)) cls.browser = selenium.webdriver.Chrome(chrome_options=options) cls.browser.implicitly_wait(3) # seconds # Clean up and quit tests if Q is in SSO mode if getattr(settings, 'PROXY_HEADER_AUTHENTICATION_HEADERS', None): print("Cannot run tests.") print("Tests will not run when IAM Proxy enabled (e.g., when `local/environment.json` sets `trust-user-authentication-headers` parameter.)") cls.browser.quit() super(SeleniumTest, cls).tearDownClass() exit()
Example #15
Source File: utils.py From python2017 with MIT License | 5 votes |
def teardown_test_environment(): """ Perform any global post-test teardown, such as restoring the original template renderer and restoring the email sending functions. """ saved_data = _TestState.saved_data settings.ALLOWED_HOSTS = saved_data.allowed_hosts settings.DEBUG = saved_data.debug settings.EMAIL_BACKEND = saved_data.email_backend Template._render = saved_data.template_render del _TestState.saved_data del mail.outbox
Example #16
Source File: utils.py From python2017 with MIT License | 5 votes |
def setup_test_environment(debug=None): """ Perform global pre-test setup, such as installing the instrumented template renderer and setting the email backend to the locmem email backend. """ if hasattr(_TestState, 'saved_data'): # Executing this function twice would overwrite the saved values. raise RuntimeError( "setup_test_environment() was already called and can't be called " "again without first calling teardown_test_environment()." ) if debug is None: debug = settings.DEBUG saved_data = SimpleNamespace() _TestState.saved_data = saved_data saved_data.allowed_hosts = settings.ALLOWED_HOSTS # Add the default host of the test client. settings.ALLOWED_HOSTS = list(settings.ALLOWED_HOSTS) + ['testserver'] saved_data.debug = settings.DEBUG settings.DEBUG = debug saved_data.email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' saved_data.template_render = Template._render Template._render = instrumented_test_render mail.outbox = [] deactivate()
Example #17
Source File: utils.py From Hands-On-Application-Development-with-PyCharm with MIT License | 5 votes |
def setup_test_environment(debug=None): """ Perform global pre-test setup, such as installing the instrumented template renderer and setting the email backend to the locmem email backend. """ if hasattr(_TestState, 'saved_data'): # Executing this function twice would overwrite the saved values. raise RuntimeError( "setup_test_environment() was already called and can't be called " "again without first calling teardown_test_environment()." ) if debug is None: debug = settings.DEBUG saved_data = SimpleNamespace() _TestState.saved_data = saved_data saved_data.allowed_hosts = settings.ALLOWED_HOSTS # Add the default host of the test client. settings.ALLOWED_HOSTS = list(settings.ALLOWED_HOSTS) + ['testserver'] saved_data.debug = settings.DEBUG settings.DEBUG = debug saved_data.email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' saved_data.template_render = Template._render Template._render = instrumented_test_render mail.outbox = [] deactivate()
Example #18
Source File: test_mail_backends.py From desec-stack with MIT License | 5 votes |
def test_lanes(self): debug_params = {'foo': 'bar'} debug_params_orig = debug_params.copy() with self.settings(EMAIL_BACKEND='desecapi.mail_backends.MultiLaneEmailBackend'): for lane in ['email_slow_lane', 'email_fast_lane', None]: subject = f'Test subject for lane {lane}' connection = get_connection(lane=lane, backbackend=self.test_backend, debug=debug_params) EmailMessage(subject=subject, to=['to@test.invalid'], connection=connection).send() self.assertEqual(mail.outbox[-1].connection.task_kwargs['debug'], {'lane': lane or 'email_slow_lane', **debug_params}) self.assertEqual(mail.outbox[-1].subject, subject) # Check that the backend hasn't modified the dict we passed self.assertEqual(debug_params, debug_params_orig)
Example #19
Source File: utils.py From FIR with GNU General Public License v3.0 | 5 votes |
def check_smime_status(): if 'djembe' in settings.INSTALLED_APPS \ and settings.EMAIL_BACKEND == 'djembe.backends.EncryptingSMTPBackend': return True return False
Example #20
Source File: utils.py From bioforum with MIT License | 5 votes |
def setup_test_environment(debug=None): """ Perform global pre-test setup, such as installing the instrumented template renderer and setting the email backend to the locmem email backend. """ if hasattr(_TestState, 'saved_data'): # Executing this function twice would overwrite the saved values. raise RuntimeError( "setup_test_environment() was already called and can't be called " "again without first calling teardown_test_environment()." ) if debug is None: debug = settings.DEBUG saved_data = SimpleNamespace() _TestState.saved_data = saved_data saved_data.allowed_hosts = settings.ALLOWED_HOSTS # Add the default host of the test client. settings.ALLOWED_HOSTS = list(settings.ALLOWED_HOSTS) + ['testserver'] saved_data.debug = settings.DEBUG settings.DEBUG = debug saved_data.email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' saved_data.template_render = Template._render Template._render = instrumented_test_render mail.outbox = [] deactivate()
Example #21
Source File: utils.py From bioforum with MIT License | 5 votes |
def teardown_test_environment(): """ Perform any global post-test teardown, such as restoring the original template renderer and restoring the email sending functions. """ saved_data = _TestState.saved_data settings.ALLOWED_HOSTS = saved_data.allowed_hosts settings.DEBUG = saved_data.debug settings.EMAIL_BACKEND = saved_data.email_backend Template._render = saved_data.template_render del _TestState.saved_data del mail.outbox
Example #22
Source File: utils.py From python with Apache License 2.0 | 5 votes |
def teardown_test_environment(): """ Perform any global post-test teardown, such as restoring the original template renderer and restoring the email sending functions. """ saved_data = _TestState.saved_data settings.ALLOWED_HOSTS = saved_data.allowed_hosts settings.DEBUG = saved_data.debug settings.EMAIL_BACKEND = saved_data.email_backend Template._render = saved_data.template_render del _TestState.saved_data del mail.outbox
Example #23
Source File: utils.py From python with Apache License 2.0 | 5 votes |
def setup_test_environment(debug=None): """ Perform global pre-test setup, such as installing the instrumented template renderer and setting the email backend to the locmem email backend. """ if hasattr(_TestState, 'saved_data'): # Executing this function twice would overwrite the saved values. raise RuntimeError( "setup_test_environment() was already called and can't be called " "again without first calling teardown_test_environment()." ) if debug is None: debug = settings.DEBUG saved_data = SimpleNamespace() _TestState.saved_data = saved_data saved_data.allowed_hosts = settings.ALLOWED_HOSTS # Add the default host of the test client. settings.ALLOWED_HOSTS = list(settings.ALLOWED_HOSTS) + ['testserver'] saved_data.debug = settings.DEBUG settings.DEBUG = debug saved_data.email_backend = settings.EMAIL_BACKEND settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' saved_data.template_render = Template._render Template._render = instrumented_test_render mail.outbox = [] deactivate()
Example #24
Source File: utils.py From Hands-On-Application-Development-with-PyCharm with MIT License | 5 votes |
def teardown_test_environment(): """ Perform any global post-test teardown, such as restoring the original template renderer and restoring the email sending functions. """ saved_data = _TestState.saved_data settings.ALLOWED_HOSTS = saved_data.allowed_hosts settings.DEBUG = saved_data.debug settings.EMAIL_BACKEND = saved_data.email_backend Template._render = saved_data.template_render del _TestState.saved_data del mail.outbox
Example #25
Source File: tests.py From govready-q with GNU General Public License v3.0 | 4 votes |
def setUpClass(cls): super(SeleniumTest, cls).setUpClass() # Override the email backend so that we can capture sent emails. from django.conf import settings settings.EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' # Override ALLOWED_HOSTS, SITE_ROOT_URL, etc. # because they may not be set or set properly in the local environment's # non-test settings for the URL assigned by the LiveServerTestCase server. settings.ALLOWED_HOSTS = ['localhost', 'testserver'] settings.SITE_ROOT_URL = cls.live_server_url # In order for these tests to succeed when not connected to the # Internet, disable email deliverability checks which query DNS. settings.VALIDATE_EMAIL_DELIVERABILITY = False ## Turn on DEBUG so we can see errors better. #settings.DEBUG = True # Start a headless browser. import selenium.webdriver from selenium.webdriver.chrome.options import Options as ChromeOptions options = selenium.webdriver.ChromeOptions() if os.path.exists("/usr/bin/chromium-browser"): options.binary_location = "/usr/bin/chromium-browser" options.add_argument("disable-infobars") # "Chrome is being controlled by automated test software." if SeleniumTest.window_geometry == "maximized": options.add_argument("start-maximized") # too small screens make clicking some things difficult else: options.add_argument("--window-size=" + ",".join(str(dim) for dim in SeleniumTest.window_geometry)) options.add_argument("--incognito") cls.browser = selenium.webdriver.Chrome(chrome_options=options) cls.browser.implicitly_wait(3) # seconds # Clean up and quit tests if Q is in SSO mode if getattr(settings, 'PROXY_HEADER_AUTHENTICATION_HEADERS', None): print("Cannot run tests.") print("Tests will not run when IAM Proxy enabled (e.g., when `local/environment.json` sets `trust-user-authentication-headers` parameter.)") cls.browser.quit() super(SeleniumTest, cls).tearDownClass() exit()