summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-11-11 06:38:32 +0000
committerZac Medico <zmedico@gentoo.org>2009-11-11 06:38:32 +0000
commitdeff8d5d832692055d6e1705c5ac473a44062ad0 (patch)
treefbcf953bd4568453bbb7eed73848ea584f018ab2 /pym
parentBug #278336 - Use adjust_config to set PORTAGE_QUIET when the config is (diff)
downloadportage-idfetch-deff8d5d832692055d6e1705c5ac473a44062ad0.tar.gz
portage-idfetch-deff8d5d832692055d6e1705c5ac473a44062ad0.tar.bz2
portage-idfetch-deff8d5d832692055d6e1705c5ac473a44062ad0.zip
Bug #292528 - Specify UTF-8 in the MIMEText constructor arguments, in order
to avoid conversiont to ascii and subsequent UnicodeEncodeError when sending mail. The idea comes from here: http://bugs.python.org/issue4403#msg76425. svn path=/main/trunk/; revision=14806
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/mail.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/pym/portage/mail.py b/pym/portage/mail.py
index 9a69f960..64774cda 100644
--- a/pym/portage/mail.py
+++ b/pym/portage/mail.py
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-from email.mime.text import MIMEText as TextMessage
+from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart as MultipartMessage
from email.mime.base import MIMEBase as BaseMessage
from email.header import Header
@@ -21,6 +21,9 @@ import portage
if sys.hexversion >= 0x3000000:
basestring = str
+def TextMessage(_text):
+ return MIMEText(_text, _charset="UTF-8")
+
def create_message(sender, recipient, subject, body, attachments=None):
if sys.hexversion < 0x3000000:
@@ -127,9 +130,7 @@ def send_mail(mysettings, message):
myconn = smtplib.SMTP(mymailhost, mymailport)
if mymailuser != "" and mymailpasswd != "":
myconn.login(mymailuser, mymailpasswd)
- msg = _unicode_encode(message.as_string(),
- encoding=_encodings['content'], errors='backslashreplace')
- myconn.sendmail(myfrom, myrecipient, msg)
+ myconn.sendmail(myfrom, myrecipient, message)
myconn.quit()
except smtplib.SMTPException as e:
raise portage.exception.PortageException(_("!!! An error occured while trying to send logmail:\n")+str(e))