]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/email.py
Fixes a problem preventing digest last sent dates to be saved correctly.
[osqa.git] / forum / settings / email.py
1 from base import Setting, SettingSet\r
2 from django.utils.translation import ugettext_lazy as _\r
3 from django.forms.widgets import PasswordInput\r
4 \r
5 EMAIL_SET = SettingSet('email', _('Email settings'), _("Email server and other email related settings."), 50)\r
6 \r
7 EMAIL_HOST = Setting('EMAIL_HOST', '', EMAIL_SET, dict(\r
8 label = _("Email Server"),\r
9 help_text = _("The SMTP server through which your application will be sending emails."),\r
10 required=False))\r
11 \r
12 EMAIL_PORT = Setting('EMAIL_PORT', 25, EMAIL_SET, dict(\r
13 label = _("Email Port"),\r
14 help_text = _("The port on which your SMTP server is listening to. Usually this is 25, but can be something else."),\r
15 required=False))\r
16 \r
17 EMAIL_HOST_USER = Setting('EMAIL_HOST_USER', '', EMAIL_SET, dict(\r
18 label = _("Email User"),\r
19 help_text = _("The username for your SMTP connection."),\r
20 required=False))\r
21 \r
22 EMAIL_HOST_PASSWORD = Setting('EMAIL_HOST_PASSWORD', '', EMAIL_SET, dict(\r
23 label = _("Email Password"),\r
24 help_text = _("The password for your SMTP connection."),\r
25 required=False,\r
26 widget=PasswordInput))\r
27 \r
28 EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
29 label = _("Use TLS"),\r
30 help_text = _("Does your SMTP server usFes TLS for authentication."),\r
31 required=False))\r
32 \r
33 DEFAULT_FROM_EMAIL = Setting('DEFAULT_FROM_EMAIL', '', EMAIL_SET, dict(\r
34 label = _("Site 'from' email address"),\r
35 help_text = _("The address that will show up on the 'from' field on emails sent by your website."),\r
36 required=False))\r
37 \r
38 EMAIL_SUBJECT_PREFIX = Setting('EMAIL_SUBJECT_PREFIX', '', EMAIL_SET, dict(\r
39 label = _("Email subject prefix"),\r
40 help_text = _("Every email sent through your website will have the subject prefixed by this string. It's usually a good idea to have such a prefix so your users can easilly set up a filter on theyr email clients."),\r
41 required=False))\r
42 \r
43 EMAIL_FOOTER_TEXT = Setting(u'EMAIL_FOOTER_TEXT', '', EMAIL_SET, dict(\r
44 label = _("Email Footer Text"),\r
45 help_text = _("Email footer text, usually \"CAN SPAM\" compliance, or the physical address of the organization running the website. See <a href=\"http://en.wikipedia.org/wiki/CAN-SPAM_Act_of_2003\">this Wikipedia article</a> for more info."),\r
46 required=False))\r
47 \r
48 EMAIL_BORDER_COLOR = Setting('EMAIL_BORDER_COLOR', '#e5ebf8', EMAIL_SET, dict(\r
49 label = _("Email Border color"),\r
50 help_text = _("The outter border color of the email base template"),\r
51 required=False))\r
52 \r
53 EMAIL_PARAGRAPH_STYLE = Setting('EMAIL_PARAGRAPH_STYLE', "color:#333333;font-family:'helvetica neue', arial, Helvetica, sans-serif;line-height:18px;font-size:14px;margin-top:10px;", EMAIL_SET, dict(\r
54 label = _("Email Paragraph style"),\r
55 help_text = _("A valid css string to be used to style email paragraphs (the P tag)."),\r
56 required=False))\r
57 \r
58 EMAIL_ANCHOR_STYLE = Setting('EMAIL_ANCHOR_STYLE', "text-decoration:none;color:#3060a8;font-weight:bold;", EMAIL_SET, dict(\r
59 label = _("Email link style"),\r
60 help_text = _("A valid css string to be used to style email links (the A tag)."),\r
61 required=False))\r
62 \r
63 \r
64 \r
65 EMAIL_DIGEST_FLAG = Setting('EMAIL_DIGEST_FLAG', None)\r