diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2015-01-27 21:35:30 -0800 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-01-30 10:14:12 +0000 |
commit | 61ff788630422f3a99da03034c34e0a5d0c24910 (patch) | |
tree | a3993005aa5d1f0b868a3c272e4cec3c3b38ea03 /testing/heirloom-mailx/makevars.patch | |
parent | a1bb1663fd7682effa65665509b72eb834eb3516 (diff) | |
download | aports-61ff788630422f3a99da03034c34e0a5d0c24910.tar.bz2 aports-61ff788630422f3a99da03034c34e0a5d0c24910.tar.xz |
testing/heirloom-mailx: new aport
heirloom-mailx is a clone of System V "mailx", based on Berkeley Mail 8.1.
It has been enhanced to provide all the command line options
required by POSIX, as well as several other features:
* support for MIME, S/MIME, and attachments
* support for SMTP(S), POP3(S), and IMAP(S)
* support for maildir-format email archives
... and much more.
This is updated from CVS to get current OpenSSL compat.
NSS could be used instead of OpenSSL.
Some security fixes from Florian Weimer are included - see
http://seclists.org/oss-sec/2014/q4/1066
krb5 is used for IMAP authentication over GSS; our libgss doesn't work
(and might not be OK to link with openssl?) and using libgssglue
will probably require some patching of the makefile.
Diffstat (limited to 'testing/heirloom-mailx/makevars.patch')
-rw-r--r-- | testing/heirloom-mailx/makevars.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/heirloom-mailx/makevars.patch b/testing/heirloom-mailx/makevars.patch new file mode 100644 index 0000000000..94d97eb850 --- /dev/null +++ b/testing/heirloom-mailx/makevars.patch @@ -0,0 +1,33 @@ +commit 31527ffd5d77c6cf21850bddd9ae7e97e37721ca +Author: Isaac Dunham <ibid.ag@gmail.com> +Date: Sat Sep 13 09:48:34 2014 -0700 + + Use more standard defaults + +diff --git a/Makefile b/Makefile +index 5f4b124..05d0635 100644 +--- a/Makefile ++++ b/Makefile +@@ -6,18 +6,18 @@ + # See the file INSTALL if you need help. + # + +-PREFIX = /usr/local ++PREFIX = /usr + BINDIR = $(PREFIX)/bin + MANDIR = $(PREFIX)/share/man + SYSCONFDIR = /etc + + MAILRC = $(SYSCONFDIR)/nail.rc +-MAILSPOOL = /var/mail +-SENDMAIL = /usr/lib/sendmail ++MAILSPOOL = /var/spool/mail ++SENDMAIL = /usr/sbin/sendmail + + DESTDIR = + +-UCBINSTALL = /usr/ucb/install ++UCBINSTALL = /usr/bin/install + + # Define compiler, preprocessor, and linker flags here. + # Note that some Linux/glibc versions need -D_GNU_SOURCE in CPPFLAGS, or |