Source code for z3c.schema.email.interfaces

##############################################################################
#
# Copyright (c) 2006 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
import zope.schema
import zope.schema.interfaces

from z3c.schema.i18n import MessageFactory as _


[docs]class IRFC822MailAddress(zope.schema.interfaces.ITextLine): """A valid RFC822 email address field."""
[docs]class NotValidRFC822MailAdress(zope.schema.ValidationError): __doc__ = _("""Not a valid email address""")