hobo/hobo/emails/forms.py

40 lines
1.6 KiB
Python

# hobo - portal to configure and deploy applications
# Copyright (C) 2015-2016 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django import forms
from django.core.validators import validate_email
from django.utils.translation import ugettext_lazy as _
from hobo.emails.validators import validate_email_address, validate_email_spf
class ValidEmailField(forms.EmailField):
def validate(self, value):
validate_email(value)
validate_email_address(value)
validate_email_spf(value)
class EmailsForm(forms.Form):
default_from_email = ValidEmailField(label=_('Default From'))
global_email_prefix = forms.CharField(label=_('Prefix'), required=False,
help_text=_('Custom prefix for emails subject (defaults to global title)'))
email_signature = forms.CharField(label=_('Signature'), required=False,
widget=forms.Textarea)
def __init__(self, *args, **kwargs):
super(EmailsForm, self).__init__(*args, **kwargs)
self.fields['email_signature'].widget.attrs = {'rows': 4, 'cols': 80}