File: lmtp.rst

package info (click to toggle)
python-aiosmtpd 1.2.2-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,704 kB
  • sloc: python: 3,838; makefile: 39
file content (16 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.. _LMTP:

================
 The LMTP class
================

`RFC 2033 <http://www.faqs.org/rfcs/rfc2033.html>`_ defines the Local Mail
Transport Protocol.  In many ways, this is very similar to SMTP, but with no
guarantees of queuing.  It is, in a sense, an alternative to ESMTP, and is
often used for local mail routing (e.g. from a Mail Transport Agent to a local
command or system) where the unreliability of internet connectivity is not an
issue.

The ``LMTP`` class subclasses the ``SMTP`` class and its only functional
difference is that it implements the ``LHLO`` command, and prohibits the use
of ``HELO`` and ``EHLO``.