Changes between Initial Version and Version 2 of Ticket #12666
- Timestamp:
- 05/14/2010 09:06:46 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12666
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
wontfix
-
Property
Status
changed from
-
Ticket #12666 – Description
initial v2 2 2 3 3 Changes needed (based on Django 1.1.1): 4 * django/conf/global_settings.py:5 * Add "EMAIL_USE_LOCALTIME = False"(won't sent using local time by default unless you explicitly enable it)6 * django/core/mail.py:7 * Change "msg['Date'] = formatdate()" to "msg['Date'] = formatdate(localtime=settings.EMAIL_USE_LOCALTIME)"4 * `django/conf/global_settings.py`: 5 * Add `"EMAIL_USE_LOCALTIME = False"` (won't sent using local time by default unless you explicitly enable it) 6 * `django/core/mail.py`: 7 * Change `"msg['Date'] = formatdate()"` to `"msg['Date'] = formatdate(localtime=settings.EMAIL_USE_LOCALTIME)"`