Changes between Initial Version and Version 2 of Ticket #12666


Ignore:
Timestamp:
May 14, 2010, 9:06:46 AM (14 years ago)
Author:
Ramiro Morales
Comment:

(re-formatted description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12666

    • Property Resolutionwontfix
    • Property Status newclosed
  • Ticket #12666 – Description

    initial v2  
    22
    33Changes 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)"`
Back to Top