diff options
Diffstat (limited to 'src/mailman/interfaces/address.py')
| -rw-r--r-- | src/mailman/interfaces/address.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mailman/interfaces/address.py b/src/mailman/interfaces/address.py index d54ea64c3..446bae3f3 100644 --- a/src/mailman/interfaces/address.py +++ b/src/mailman/interfaces/address.py @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2010 by the Free Software Foundation, Inc. +# Copyright (C) 2007-2011 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # @@ -60,20 +60,20 @@ class InvalidEmailAddressError(AddressError): class IAddress(Interface): """Email address related information.""" - address = Attribute( + email = Attribute( """Read-only text email address.""") - original_address = Attribute( - """Read-only original case-preserved address. + original_email = Attribute( + """Read-only original case-preserved email address. - For almost all intents and purposes, addresses in Mailman are case - insensitive, however because RFC 2821 allows for case sensitive local - parts, Mailman preserves the case of the original address when - emailing the user. + For almost all intents and purposes, email addresses in Mailman are + case insensitive, however because RFC 2821 allows for case sensitive + local parts, Mailman preserves the case of the original email address + when delivering a message to the user. - `original_address` will be the same as address if the original address - was all lower case. Otherwise `original_address` will be the case - preserved address; `address` will always be lower case. + `original_email` will be the same as `email` if the original email + address was all lower case. Otherwise `original_email` will be the + case preserved email address; `email` will always be lower case. """) real_name = Attribute( @@ -84,7 +84,7 @@ class IAddress(Interface): Registeration is really the date at which this address became known to us. It may have been explicitly registered by a user, or it may have - been implicitly registered, e.g. by showing up in a non-member + been implicitly registered, e.g. by showing up in a nonmember posting.""") verified_on = Attribute( |
