diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-10-27 11:37:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-10-27 11:37:01 (GMT) |
commit | 1192044445670bbd9a21eb04992dac2f66932a01 (patch) | |
tree | 07ea74996f1322fd6c6901325a0cf06431dad2ee /Doc | |
parent | 2c184e6703988fc4e2d1d925f9663692653f9136 (diff) | |
download | cpython-1192044445670bbd9a21eb04992dac2f66932a01.zip cpython-1192044445670bbd9a21eb04992dac2f66932a01.tar.gz cpython-1192044445670bbd9a21eb04992dac2f66932a01.tar.bz2 |
Some wording changes and markup fixes
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsmtplib.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libsmtplib.tex b/Doc/lib/libsmtplib.tex index 9943d9f..611cd01 100644 --- a/Doc/lib/libsmtplib.tex +++ b/Doc/lib/libsmtplib.tex @@ -32,12 +32,12 @@ included below. local_hostname\optional{, keyfile\optional{, certfile}}}}}} -A \class{SMTP_SSL} instance behaves exactly the same as instance \class{SMTP}. -\class{SMTP_SSL} should be used for the situations where SSL is required from -the beginning of the connection and \method{starttls()} is not appropriate. -If host is not specified, the local host is used. If port is -omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile -are also optional - they can contain a PEM formatted private key and +A \class{SMTP_SSL} instance behaves exactly the same as instances of \class{SMTP}. +\class{SMTP_SSL} should be used for situations where SSL is required from +the beginning of the connection and using \method{starttls()} is not appropriate. +If \var{host} is not specified, the local host is used. If \var{port} is +omitted, the standard SMTP-over-SSL port (465) is used. \var{keyfile} and \var{certfile} +are also optional, and can contain a PEM formatted private key and certificate chain file for the SSL connection. \end{classdesc} |