File: README

package info (click to toggle)
smtpfeed 1.18-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 832 kB
  • ctags: 796
  • sloc: ansic: 13,800; sh: 203; perl: 133; makefile: 98
file content (36 lines) | stat: -rw-r--r-- 1,713 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
SMTP feed -- SMTP Fast Exploding External Deliverer for Sendmail


SMTPfeed is a SMTP delivery agent which is called by sendmail, and it
improves time required to complete delivery a message to huge number of
recipients. SMTPfeed is effective for delivery of large mailing lists.

Delay of delivery by using sendmail causes by the fact that implementation
of SMTP delivery routine in sendmail processes all delivery in a series.
By this reason,  when it takes long time for delivery to one recipient
which is in a huge list, delivery to following recipients is greatly
influenced.

To avoid such a problem, delivery agents should be implemented so that
a delivery is not influenced by preceding delivery -- DNS queries should
be processed in parallel and SMTP deliveries should also be processed
in parallel.  Smtpfeed is the SMTP delivery agent for sendmail
implemented with this idea.

In current implementation as a first step, DNS queries are processed
in parallel, and then deliveries with SMTP in parallel are started.

Smtpfeed requires the LMTP(RFC2033) feature available since sendmail
8.9. But with other hacks into sendmail will make feature of SMTPfeed
more effective. A patch (3.4W) for the hacks is also available.
If you do not use special configurations which are introduced by the
patch, you may not want to apply the patch any more with sendmail 8.12
or later, which does not have limitation on number of recipients passed
from sendmail to smtpfeed.

Smtpfeed can not deliver huge messages because SMTPfeed stores all
information (includes message data) in memory. You should configure
sendmail.cf to deliver huge messages by internal SMTP delivery routine
of the sendmail.

- Motonori Nakamura