blob: dae2dc7d3176f6d2ba3823b9d47f4969d42567e5 [file] [log] [blame]
R David Murrayc27e5222012-05-25 15:01:48 -04001"""This will be the home for the policy that hooks in the new
2code that adds all the email6 features.
R David Murray3edd22a2011-04-18 13:59:37 -04003"""
4
R David Murrayc27e5222012-05-25 15:01:48 -04005from email._policybase import Policy, compat32, Compat32
R David Murray3edd22a2011-04-18 13:59:37 -04006
R David Murrayc27e5222012-05-25 15:01:48 -04007# XXX: temporarily derive everything from compat32.
R David Murray3edd22a2011-04-18 13:59:37 -04008
R David Murrayc27e5222012-05-25 15:01:48 -04009default = compat32
R David Murray3edd22a2011-04-18 13:59:37 -040010strict = default.clone(raise_on_defect=True)
11SMTP = default.clone(linesep='\r\n')
12HTTP = default.clone(linesep='\r\n', max_line_length=None)