Include patchset from the community and Debian package maintainers to support OpenSSL version 1.1. This is the more feature rich version of imapproxy. Last official changelog entries: 2016-09-12 Paul Lesniewski <paul@squirrelmail.org> * Added support for systemd startup * Added support for accepting pre-auth ID commands (RFC 2971) * Added support for DNS RR to cycle through multiple IMAP server backends (thanks to Wolfgang Breyha) * Added ability to restrict DNS lookups to IPv4 or IPv6 only (thanks to Wolfgang Breyha) * Make EGD support conditional, provide compatibility with LibreSSL, other small fixes provided by the BSD team * Fixed anomalous crashes recycling used connections (thanks to Emmanuel Dreyfus) * Retain compatibility with older OpenSSL versions (thanks to Wolfgang Breyha) * Make use of the no_new_privs flag (Linux only) when becoming non-root (thanks to Shawn Landden) 2014-01-20 Paul Lesniewski <paul@squirrelmail.org> * Added support for up to TLS v1.2 (thanks to Emmanuel Dreyfus) * Added support for ECDHE ciphers (thanks to Emmanuel Dreyfus) * Added ability to manually specify TLS ciphers (thanks to Emmanuel Dreyfus) * Added server certificate validation (thanks to Emmanuel Dreyfus) 2012-01-01 Paul Lesniewski <paul@squirrelmail.org> * Fixed problem where default TLS CA data would never be loaded (thanks to Orion Poplawski) * Fixed bug in SSL context initialization
41 lines
1.6 KiB
Text
41 lines
1.6 KiB
Text
$NetBSD: patch-remove-install-chown,v 1.1 2020/04/17 11:28:02 tm Exp $
|
|
|
|
Remove install chown
|
|
This eliminates the chown/chgrp from the install commands, which allows the
|
|
package to be built without root privileges.
|
|
|
|
Author: Richard Laager <rlaager@wiktel.com>
|
|
|
|
--- Makefile.in.orig
|
|
+++ Makefile.in
|
|
@@ -80,23 +80,23 @@
|
|
|
|
install: $(XYD_BIN) $(TAT_BIN)
|
|
mkdir -p $(DESTDIR)$(EBIN)
|
|
- $(INSTALL) -o bin -g bin -m 0755 $(XYD_BIN) $(DESTDIR)$(EBIN)
|
|
- $(INSTALL) -o bin -g bin -m 0755 $(TAT_BIN) $(DESTDIR)$(EBIN)
|
|
+ $(INSTALL) -m 0755 $(XYD_BIN) $(DESTDIR)$(EBIN)
|
|
+ $(INSTALL) -m 0755 $(TAT_BIN) $(DESTDIR)$(EBIN)
|
|
|
|
install-init-linux:
|
|
- $(INSTALL) -o root -g sys -m 0755 ./scripts/imapproxy-linux.init $(DESTDIR)$(ETC)/init.d/imapproxy
|
|
+ $(INSTALL) -m 0755 ./scripts/imapproxy-linux.init $(DESTDIR)$(ETC)/init.d/imapproxy
|
|
ln -s ../init.d/imapproxy $(DESTDIR)/etc/rc2.d/S99imapproxy
|
|
ln -s ../init.d/imapproxy $(DESTDIR)/etc/rc0.d/K10imapproxy
|
|
|
|
install-init-systemd:
|
|
- $(INSTALL) -o root -g root -m 0644 ./scripts/imap_proxy.service $(DESTDIR)/lib/systemd/system
|
|
+ $(INSTALL) -m 0644 ./scripts/imap_proxy.service $(DESTDIR)/lib/systemd/system
|
|
|
|
install-conf:
|
|
- $(INSTALL) -o root -g bin -m 0644 ./scripts/imapproxy.conf $(DESTDIR)$(ETC)
|
|
+ $(INSTALL) -m 0644 ./scripts/imapproxy.conf $(DESTDIR)$(ETC)
|
|
|
|
rpm-install: install
|
|
- $(INSTALL) -o root -g sys -m 0644 ./scripts/imapproxy.conf $(DESTDIR)/etc
|
|
- $(INSTALL) -o root -g sys -m 0755 ./scripts/imapproxy-linux.init $(DESTDIR)/etc/init.d/imapproxy
|
|
+ $(INSTALL) -m 0644 ./scripts/imapproxy.conf $(DESTDIR)/etc
|
|
+ $(INSTALL) -m 0755 ./scripts/imapproxy-linux.init $(DESTDIR)/etc/init.d/imapproxy
|
|
|
|
pkg:
|
|
pkgmk -o -r .
|