diff options
author | erwin <erwin@FreeBSD.org> | 2003-07-15 16:50:52 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-07-15 16:50:52 +0800 |
commit | 7a173fc7c835335a9ff74c7c5c121f76de82e672 (patch) | |
tree | ff2a97cec8a1ac68a0bc70b10f504527b9555b59 /mail/esmtp/files | |
parent | 281b1cb92f9a5d9bb3bf65d4d72447a3b0aa4f1e (diff) | |
download | freebsd-ports-gnome-7a173fc7c835335a9ff74c7c5c121f76de82e672.tar.gz freebsd-ports-gnome-7a173fc7c835335a9ff74c7c5c121f76de82e672.tar.zst freebsd-ports-gnome-7a173fc7c835335a9ff74c7c5c121f76de82e672.zip |
Add esmtp 0.4.1,
esmtp is a user configurable relay-only Mail Transfer Agent
(MTA) with a sendmail compatible syntax. It's based on libESMTP
supporting the AUTH (including the CRAM-MD5 and NTLM SASL
mechanisms) and the StartTLS SMTP extensions.
These are the esmtp features:
* fully sendmail command line compatible,
* supports the AUTH SMTP extension, with the CRAM-MD5 and
* NTLM SASL mechanisms,
* support the StartTLS SMTP extension,
* requires no administration privileges,
* individual user configuration,
* does not receive mail, expand aliases or manage a queue.
PR: 54491
Submitted by: Kirill Ponomarew <ponomarew@oberon.net>
Diffstat (limited to 'mail/esmtp/files')
-rw-r--r-- | mail/esmtp/files/patch-esmtprc.5 | 13 | ||||
-rw-r--r-- | mail/esmtp/files/patch-lexer.c | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/mail/esmtp/files/patch-esmtprc.5 b/mail/esmtp/files/patch-esmtprc.5 new file mode 100644 index 000000000000..03e77453bde0 --- /dev/null +++ b/mail/esmtp/files/patch-esmtprc.5 @@ -0,0 +1,13 @@ +--- esmtprc.5.orig Tue Jul 15 07:57:07 2003 ++++ esmtprc.5 Tue Jul 15 07:58:05 2003 +@@ -96,8 +96,8 @@ + place a %T. The mail message's \fBFrom\fR address will be inserted where you + place an %F. + +-Some common MDAs are "/usr/bin/procmail -d %T", +-"/usr/bin/deliver" and "/usr/lib/mail.local %T". ++Some common MDAs are "/usr/local/bin/procmail -d %T" ++and "/usr/libexec/mail.local %T". + + .SH SEE ALSO + esmtp(1) diff --git a/mail/esmtp/files/patch-lexer.c b/mail/esmtp/files/patch-lexer.c new file mode 100644 index 000000000000..1b0f2d1935e3 --- /dev/null +++ b/mail/esmtp/files/patch-lexer.c @@ -0,0 +1,12 @@ +--- lexer.c.orig Sat Jul 12 09:26:44 2003 ++++ lexer.c Sat Jul 12 09:27:04 2003 +@@ -20,7 +20,9 @@ + #include <string.h> + #include <errno.h> + #include <stdlib.h> ++#ifdef HAVE_STDINT_H + #include <stdint.h> /* May break IA64 test-noansi-r */ ++#endif + + /* end standard C headers. */ + |