from base import Setting, SettingSet\r
from django.utils.translation import ugettext_lazy as _\r
+from django.forms.widgets import PasswordInput\r
\r
EMAIL_SET = SettingSet('email', _('Email Settings'), _("Email server and other email related settings."), 50)\r
\r
help_text = _("""\r
The password for your SMTP connection.\r
"""),\r
-required=False))\r
+required=False,\r
+widget=PasswordInput))\r
\r
EMAIL_USE_TLS = Setting('EMAIL_USE_TLS', False, EMAIL_SET, dict(\r
label = _("Use TLS"),\r