Have mimify raise a DeprecationWarning.  The docs and PEP 4 have listed the
module as deprecated for a while.
diff --git a/Lib/mimify.py b/Lib/mimify.py
index b6f6143..1c15983 100755
--- a/Lib/mimify.py
+++ b/Lib/mimify.py
@@ -29,6 +29,10 @@
 
 import re
 
+import warnings
+warnings.warn("the mimify module is deprecated; use the email package instead",
+                DeprecationWarning, 2)
+
 __all__ = ["mimify","unmimify","mime_encode_header","mime_decode_header"]
 
 qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I)