]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/email.py
initial import
[osqa.git] / forum / settings / email.py
1 from base import Setting, SettingSet\r
2 from django.utils.translation import ugettext_lazy as _\r
3 \r
4 EMAIL_SET = SettingSet('email', _('Email Settings'), _("Email server and other email related settings."), 50)\r
5 \r
6 EMAIL_HOST = Setting('EMAIL_HOST', '', EMAIL_SET, dict(\r
7 label = _("Email Server"),\r
8 help_text = _("""\r
9 The SMTP server through which your application will be sending emails.\r
10 """),\r
11 required=False))\r
12 \r
13 EMAIL_PORT = Setting('EMAIL_PORT', 25, EMAIL_SET, dict(\r
14 label = _("Email Port"),\r
15 help_text = _("""\r
16 The port on which your SMTP server is listening to. Usually this is 25, but can be something else.\r
17 """),\r
18 required=False))\r
19 \r
20 EMAIL_HOST_USER = Setting('EMAIL_HOST_USER', '', EMAIL_SET, dict(\r
21 label = _("Email User"),\r
22 help_text = _("""\r
23 The username for your SMTP connection.\r
24 """),\r
25 required=False))\r
26 \r
27 EMAIL_HOST_PASSWORD = Setting('EMAIL_HOST_PASSWORD', '', EMAIL_SET, dict(\r
28 label = _("Email Password"),\r
29 help_text = _("""\r
30 The password for your SMTP connection.\r
31 """),\r
32 required=False))\r
33 \r
34 EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
35 label = _("Use TLS"),\r
36 help_text = _("""\r
37 Does your SMTP server uses TLS for authentication.\r
38 """),\r
39 required=False))\r
40 \r
41 DEFAULT_FROM_EMAIL = Setting('DEFAULT_FROM_EMAIL', '', EMAIL_SET, dict(\r
42 label = _("Site email address"),\r
43 help_text = _("""\r
44 The address that will show up on the 'from' field on emails sent by your website.\r
45 """),\r
46 required=False))\r
47 \r
48 EMAIL_SUBJECT_PREFIX = Setting('EMAIL_SUBJECT_PREFIX', '', EMAIL_SET, dict(\r
49 label = _("Email subject prefix"),\r
50 help_text = _("""\r
51 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
52 """),\r
53 required=False))