summaryrefslogtreecommitdiffstats
path: root/pym/portage/mail.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-15 23:24:31 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-15 23:24:31 +0200
commit7ba599709990b35cddcd0d0163e172d6ad9bcc0f (patch)
tree6e076c6c2e9aa45d95773ccf8eaae1dbc69bd53a /pym/portage/mail.py
parent5eef84cb4b72695548937445019eac24f53d252b (diff)
downloadportage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.tar.gz
portage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.tar.bz2
portage-7ba599709990b35cddcd0d0163e172d6ad9bcc0f.zip
Fix some typos.
Diffstat (limited to 'pym/portage/mail.py')
-rw-r--r--pym/portage/mail.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/mail.py b/pym/portage/mail.py
index aa41854c3..688b5181d 100644
--- a/pym/portage/mail.py
+++ b/pym/portage/mail.py
@@ -107,8 +107,8 @@ def send_mail(mysettings, message):
myrecipient = "root@localhost"
# Syntax for PORTAGE_ELOG_MAILURI (if defined):
- # adress [[user:passwd@]mailserver[:port]]
- # where adress: recipient adress
+ # address [[user:passwd@]mailserver[:port]]
+ # where address: recipient address
# user: username for smtp auth (defaults to none)
# passwd: password for smtp auth (defaults to none)
# mailserver: smtp server that should be used to deliver the mail (defaults to localhost)
@@ -159,7 +159,7 @@ def send_mail(mysettings, message):
myconn = smtplib.SMTP(mymailhost, int(mymailport) - 100000)
myconn.ehlo()
if not myconn.has_extn("STARTTLS"):
- raise portage.exception.PortageException(_("!!! TLS support requested for logmail but not suported by server"))
+ raise portage.exception.PortageException(_("!!! TLS support requested for logmail but not supported by server"))
myconn.starttls()
myconn.ehlo()
else:
@@ -171,8 +171,8 @@ def send_mail(mysettings, message):
myconn.sendmail(myfrom, myrecipient, message_str)
myconn.quit()
except smtplib.SMTPException as e:
- raise portage.exception.PortageException(_("!!! An error occured while trying to send logmail:\n")+str(e))
+ raise portage.exception.PortageException(_("!!! An error occurred while trying to send logmail:\n")+str(e))
except socket.error as e:
- raise portage.exception.PortageException(_("!!! A network error occured while trying to send logmail:\n%s\nSure you configured PORTAGE_ELOG_MAILURI correctly?") % str(e))
+ raise portage.exception.PortageException(_("!!! A network error occurred while trying to send logmail:\n%s\nSure you configured PORTAGE_ELOG_MAILURI correctly?") % str(e))
return