diff options
author | jlam <jlam> | 2003-06-19 20:39:09 +0000 |
---|---|---|
committer | jlam <jlam> | 2003-06-19 20:39:09 +0000 |
commit | 64f6824bc8475d97d922a037b3f4cbb300ff82ae (patch) | |
tree | 2a6a7b050bc17185255402a6f119002ed8c0adab /mail/ssmtp/patches | |
parent | 9cfaaf0b2b5ad33af72a4e3d063bac226b68005a (diff) | |
download | pkgsrc-64f6824bc8475d97d922a037b3f4cbb300ff82ae.tar.gz |
Initial import of mail/ssmtp, an extremely simple MTA that forwards mail
to a mail hub. Originally from pkgsrc-wip; created by Toru TAKAMIZU
<pkg at pop dot 707 dot to>.
A secure, effective and simple way of getting mail off a system to your
mail hub. It contains no suid-binaries or other dangerous things - no mail
spool to poke around in, and no daemons running in the background. Mail is
simply forwarded to the configured mailhost. Extremely easy configuration.
WARNING: the above is all it does; it does not receive mail, expand aliases
or manage a queue. That belongs on a mail hub with a system administrator.
This program is especially recommended for mutt users who send emails via
ISP's smtp server.
Diffstat (limited to 'mail/ssmtp/patches')
-rw-r--r-- | mail/ssmtp/patches/patch-aa | 13 | ||||
-rw-r--r-- | mail/ssmtp/patches/patch-ab | 12 | ||||
-rw-r--r-- | mail/ssmtp/patches/patch-ac | 15 | ||||
-rw-r--r-- | mail/ssmtp/patches/patch-ad | 13 | ||||
-rw-r--r-- | mail/ssmtp/patches/patch-ae | 17 |
5 files changed, 70 insertions, 0 deletions
diff --git a/mail/ssmtp/patches/patch-aa b/mail/ssmtp/patches/patch-aa new file mode 100644 index 00000000000..45d156b4da5 --- /dev/null +++ b/mail/ssmtp/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ + +--- arpadate.c.orig Sun Dec 8 18:30:13 2002 ++++ arpadate.c Mon Apr 7 01:17:58 2003 +@@ -79,7 +79,7 @@ + time_t now; + + /* RFC822 format string borrowed from GNU shellutils date.c */ +- const char *format = "%a, %_d %b %Y %H:%M:%S %z"; ++ const char *format = "%a, %e %b %Y %H:%M:%S %z"; + + now = time(NULL); + diff --git a/mail/ssmtp/patches/patch-ab b/mail/ssmtp/patches/patch-ab new file mode 100644 index 00000000000..4cfec55cc05 --- /dev/null +++ b/mail/ssmtp/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ + +--- ssmtp.c.orig Sun Dec 8 18:26:20 2002 ++++ ssmtp.c Mon Apr 7 01:24:52 2003 +@@ -14,6 +14,7 @@ + */ + #define VERSION "2.60.1" + ++#include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> + #include <sys/param.h> diff --git a/mail/ssmtp/patches/patch-ac b/mail/ssmtp/patches/patch-ac new file mode 100644 index 00000000000..da1d2d4ecd0 --- /dev/null +++ b/mail/ssmtp/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ + +--- Makefile.in.orig Thu Jun 5 17:57:07 2003 ++++ Makefile.in Thu Jun 5 17:59:27 2003 +@@ -50,8 +50,8 @@ + $(INSTALL) -d -m 755 $(mandir) + $(INSTALL) -m 644 $(srcdir)/ssmtp.8 $(mandir)/ssmtp.8 + $(INSTALL) -d -m 755 $(SSMTPCONFDIR) +- $(INSTALL) -m 644 $(srcdir)/revaliases $(INSTALLED_REVALIASES_FILE) +- $(GEN_CONFIG) $(INSTALLED_CONFIGURATION_FILE) ++# $(INSTALL) -m 644 $(srcdir)/revaliases $(INSTALLED_REVALIASES_FILE) ++# $(GEN_CONFIG) $(INSTALLED_CONFIGURATION_FILE) + + + .PHONY: install-sendmail diff --git a/mail/ssmtp/patches/patch-ad b/mail/ssmtp/patches/patch-ad new file mode 100644 index 00000000000..9993ae1102b --- /dev/null +++ b/mail/ssmtp/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ + +--- configure.orig Fri Sep 27 14:47:52 2002 ++++ configure Mon Apr 7 01:03:46 2003 +@@ -1340,7 +1340,7 @@ + #define HAVE_SSL 1 + EOF + +- LIBS="$LIBS -lssl" ++ LIBS="$LIBS -lssl -lcrypto" + fi + enableval="" + diff --git a/mail/ssmtp/patches/patch-ae b/mail/ssmtp/patches/patch-ae new file mode 100644 index 00000000000..71b1222d8c2 --- /dev/null +++ b/mail/ssmtp/patches/patch-ae @@ -0,0 +1,17 @@ +$NetBSD: patch-ae,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ + +--- ssmtp.8.orig Fri Sep 27 05:48:59 2002 ++++ ssmtp.8 Thu Jun 19 13:12:40 2003 +@@ -1,11 +1,8 @@ + .TH SSMTP 8 "Last change: 5 February 2000" + .SH NAME +-ssmtp, sendmail \- send a message using smtp ++ssmtp \- send a message using smtp + .SH SYNOPSIS + .B ssmtp +-.RI "[ " flags " ] [ " address " " ... " ]" +-.br +-.B /usr/lib/sendmail + .RI "[ " flags " ] [ " address " " ... " ]" + .br + .SH DESCRIPTION |