#8638 closed Uncategorized (fixed)
Provide setting to disable e-mail sending
Reported by: | Marc Fargas | Owned by: | Marc Fargas |
---|---|---|---|
Component: | Core (Mail) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | treborhudson@…, orzel@… | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
When running the development server with live data, it would be nice to have a setting like: settings.SEND_EMAIL to disable all e-mail sending in django (just as the test runner does)
So you do not accidentaly start sending mails :))
No need to have the test runner outbox :)
Attachments (2)
Change History (20)
comment:1 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 16 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Whoops.. typo in commit message. Ignore the above commit.
comment:3 by , 16 years ago
Cc: | added |
---|
Having the email get written to stdout might be a nice option for testing emails or seeing what would get sent vs. shutting it off completely.
follow-up: 6 comment:4 by , 16 years ago
I was thinking more in what the Testclient does now, having an "outbox" to read from. Printing on stdout can be bad. Imagine you are testing something that sends, ie: 100 mails in a row. You can't check this. But you also *dont want* those mails to go out ;)
comment:6 by , 16 years ago
Replying to telenieko:
I was thinking more in what the Testclient does now, having an "outbox" to read from. Printing on stdout can be bad. Imagine you are testing something that sends, ie: 100 mails in a row. You can't check this. But you also *dont want* those mails to go out ;)
Right... I misunderstood this bug and thought it wanted to discard all emails. The outbox idea is much better than stdout, I agree.
comment:7 by , 16 years ago
Personally, I feel that stdout would be a wonderful option actually. While the email box is awesome, we need to create a bit of code to check that box for the email. While..well, it's not a pain, it'd be nice to just switch to the stdout (server) and see the email pop up there. I just was running into this today, but feel honestly that this sort of feature would be really helpful.
Kinda +1ing this as well, but having an option if we want to suppress stdout in the case of telenieko's feelings makes sense, for the 1-2 emails that I'm working with stdout would be optimal. Having an option for both would be great :)
comment:8 by , 16 years ago
Why not just use fakemail or something similar? It will dump emails to files in the directory of your choice, so they don't get sent out, but they can be inspected without special tools if necessary. I don't see the need to include something like this in Django when there are perfectly good existing solutions.
comment:9 by , 16 years ago
BTW, if you want to monitor the directory fastmail dumps into, you could do that with some simple scripting e.g.
watch 'find /path/to/fakemail/dir -type f | xargs cat'
comment:10 by , 16 years ago
I've started a thread on the Django Developers list:
http://groups.google.com/group/django-developers/browse_thread/thread/e7c7228e1f12f174
Python does have it's own built-in version of "fakemail":
python /path/to/python/lib/python2.5/smtpd.py -n -c DebuggingServer localhost:1025
But there may be some ways to make it a little more nicely integrated that the discussion thread brings up.
comment:11 by , 16 years ago
Following some the mailing list discussion and some conversations with Rob Hudson, it looks like the best option here will be to fix this with documentation. There are some easy tricks you can do with Python's included batteries to fake a debug mail server:
python -m smtpd -n -c DebuggingServer localhost:1025
If you need more than this, you can hunt down fakemail or similar product.
comment:12 by , 16 years ago
Triage Stage: | Unreviewed → Accepted |
---|
Anyone has done anywork in the documentation? (to start it).
comment:13 by , 16 years ago
I have it on my list of things to do, but have not yet started anything. Feel free to jump in and I'd be happy to post comments or update a patch if needed.
comment:14 by , 16 years ago
Owner: | changed from | to
---|---|
Status: | reopened → new |
comment:15 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:16 by , 16 years ago
comment:18 by , 12 years ago
Easy pickings: | unset |
---|---|
Severity: | → Normal |
Type: | → Uncategorized |
UI/UX: | unset |
This can now be done by selecting the dummy email backend: https://docs.djangoproject.com/en/dev/topics/email/#dummy-backend
(In [8695]) Fixed #8638 -- Show by example that the File.name attribute includes the upload
directory as well as the filename. Patch from Ramiro Morales.