]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/email.py
render the value of the email password in the settings page, otherwise it gets lost...
[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 from django.forms.widgets import RadioSelect\r
5 from forms import TestEmailSettingsWidget\r
6 \r
7 EMAIL_SET = SettingSet('email', _('Email settings'), _("Email server and other email related settings."), 50)\r
8 \r
9 TEST_EMAIL_SETTINGS = Setting('TEST_EMAIL_SETTINGS', '', EMAIL_SET, dict(\r
10 label = _("E-Mail settings test"),\r
11 help_text = _("Test the current E-Mail configuration."),\r
12 required=False,\r
13 widget=TestEmailSettingsWidget))\r
14 \r
15 EMAIL_HOST = Setting('EMAIL_HOST', '', EMAIL_SET, dict(\r
16 label = _("Email Server"),\r
17 help_text = _("The SMTP server through which your application will be sending emails."),\r
18 required=False))\r
19 \r
20 EMAIL_PORT = Setting('EMAIL_PORT', 25, EMAIL_SET, dict(\r
21 label = _("Email Port"),\r
22 help_text = _("The port on which your SMTP server is listening to. Usually this is 25, but can be something else."),\r
23 required=False))\r
24 \r
25 EMAIL_HOST_USER = Setting('EMAIL_HOST_USER', '', EMAIL_SET, dict(\r
26 label = _("Email User"),\r
27 help_text = _("The username for your SMTP connection."),\r
28 required=False))\r
29 \r
30 EMAIL_HOST_PASSWORD = Setting('EMAIL_HOST_PASSWORD', '', EMAIL_SET, dict(\r
31 label = _("Email Password"),\r
32 help_text = _("The password for your SMTP connection."),\r
33 required=False,\r
34 widget=PasswordInput(render_value=True)))\r
35 \r
36 EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
37 label = _("Use TLS"),\r
38 help_text = _("Whether to use TLS for authentication with your SMTP server."),\r
39 required=False))\r
40 \r
41 DEFAULT_FROM_EMAIL = Setting('DEFAULT_FROM_EMAIL', '', EMAIL_SET, dict(\r
42 label = _("Site 'from' Email Address"),\r
43 help_text = _("The address that will show up on the 'from' field on emails sent by your website."),\r
44 required=False))\r
45 \r
46 DEFAULT_REPLY_TO_EMAIL = Setting('DEFAULT_REPLY_TO_EMAIL', '', EMAIL_SET, dict(\r
47 label = _("Site 'reply-to' Email Address"),\r
48 help_text = _("The address that will show up on the 'reply-to' field on emails sent by your website."),\r
49 required=False))\r
50 \r
51 EMAIL_SUBJECT_PREFIX = Setting('EMAIL_SUBJECT_PREFIX', '', EMAIL_SET, dict(\r
52 label = _("Email Subject Prefix"),\r
53 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 easily set up a filter on their email clients."),\r
54 required=False))\r
55 \r
56 EMAIL_FOOTER_TEXT = Setting(u'EMAIL_FOOTER_TEXT', '', EMAIL_SET, dict(\r
57 label = _("Email Footer Text"),\r
58 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
59 required=False))\r
60 \r
61 EMAIL_BORDER_COLOR = Setting('EMAIL_BORDER_COLOR', '#e5ebf8', EMAIL_SET, dict(\r
62 label = _("Email Border Color"),\r
63 help_text = _("The outter border color of the email base template"),\r
64 required=False))\r
65 \r
66 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
67 label = _("Email Paragraph Style"),\r
68 help_text = _("A valid css string to be used to style email paragraphs (the P tag)."),\r
69 required=False))\r
70 \r
71 EMAIL_ANCHOR_STYLE = Setting('EMAIL_ANCHOR_STYLE', "text-decoration:none;color:#3060a8;font-weight:bold;", EMAIL_SET, dict(\r
72 label = _("Email Link Style"),\r
73 help_text = _("A valid css string to be used to style email links (the A tag)."),\r
74 required=False))\r
75 \r
76 SEND_DIGEST_ONLY_TO_ACTIVE_USERS = Setting('SEND_DIGEST_ONLY_TO_ACTIVE_USERS', True, EMAIL_SET, dict(\r
77 label = _("Send digest only to active users"),\r
78 help_text = _("If checked the daily digest won't be sent to users that have been suspended."),\r
79 required=False))\r
80 \r
81 SEND_DIGEST_ONLY_TO_VALIDATED_USERS = Setting('SEND_DIGEST_ONLY_TO_VALIDATED_USERS', True, EMAIL_SET, dict(\r
82 label = _("Send digest only to validated users"),\r
83 help_text = _("If checked the daily digest won't be sent to users that haven't validated their emails."),\r
84 required=False))\r
85 \r
86 EMAIL_DIGEST_FLAG = Setting('EMAIL_DIGEST_FLAG', None)\r