From bryan@stansell.org Sun Jan 18 09:42:42 2004 Received: from underdog.stansell.org (localhost [127.0.0.1]) by underdog.stansell.org (8.12.10/8.12.10) with ESMTP id i0IHgfP0025511; Sun, 18 Jan 2004 09:42:41 -0800 (PST) Received: (from bryan@localhost) by underdog.stansell.org (8.12.10/8.12.10/Submit) id i0IHgf89025510; Sun, 18 Jan 2004 09:42:41 -0800 (PST) Date: Sun, 18 Jan 2004 09:42:41 -0800 From: Bryan Stansell To: users@conserver.com, announce@conserver.com Message-ID: <20040118174241.GA25308@underdog.stansell.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Scanned-By: MIMEDefang 2.39 Cc: Subject: conserver-8.1.0 is available X-BeenThere: announce@conserver.com X-Mailman-Version: 2.1.3 Precedence: list List-Id: Conserver Announcements List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2004 17:42:43 -0000 The first 2004 release is available...happy new year! There are a couple of slight changes, cleanups, etc, and one big change with the client-server protocol. The good news is I was able to send files via xmodem and zmodem from the client to the console using the ^Ec| syntax, which failed before the protocol change. I've also enhanced the telnet protocol code and I believe it will now operate properly with standard telnet ports. I hope everyone enjoys the new code and finds that it fixes any problems you might have seen. If not, please let me know what's wrong! version 8.1.0 (Jan 18, 2004): - fixes for HP-UX compilation - patch by Petter Reinholdtsen - fixes for compilation under various operating systems - patch by Albert Chin - added a 'protocol' option for either 'telnet' or 'raw' socket communication - also reflected in -i output - changed the client/server protocol to use 0xff as a command character for sending control commands - similiar to the telnet protocol - improves the ^Ec| interaction - client -E option now disables ssl encryption attempts, useful for broken SSL environents - suggested by Graydon Dodson - bad error message connecting non-ssl client with ssl-required server - reported by Graydon Dodson - added note about pam configuration to conserver.passwd.man - suggested by Erik Sjolund - improved telnet protocol option handling such that connections to standard telnet ports should work properly Bryan Stansell From bryan@stansell.org Mon Jan 19 07:05:08 2004 Received: from underdog.stansell.org (localhost [127.0.0.1]) by underdog.stansell.org (8.12.11/8.12.11) with ESMTP id i0JF58nH008849; Mon, 19 Jan 2004 07:05:08 -0800 (PST) Received: (from bryan@localhost) by underdog.stansell.org (8.12.11/8.12.11/Submit) id i0JF57AX008848; Mon, 19 Jan 2004 07:05:07 -0800 (PST) Date: Mon, 19 Jan 2004 07:05:07 -0800 From: Bryan Stansell To: users@conserver.com, announce@conserver.com Message-ID: <20040119150507.GG25308@underdog.stansell.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Scanned-By: MIMEDefang 2.39 Cc: Subject: conserver-8.1.0 rpm build issue X-BeenThere: announce@conserver.com X-Mailman-Version: 2.1.3 Precedence: list List-Id: Conserver Announcements List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2004 15:05:09 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline If you try and use rpmbuild, things fail because I goofed up a couple Makefiles. All works fine with a standard './configure; make', however. I've attached a patch you can apply to fix this. (Big thanks to Martin Evans for pointing this out) If anyone sees further problems, please let me know! Bryan --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=makefile-rpm-patch Index: conserver/Makefile.in =================================================================== RCS file: /home/bryan/cvsroot/conserver/conserver/Makefile.in,v retrieving revision 1.19 diff -c -r1.19 Makefile.in *** conserver/Makefile.in 20 Dec 2003 06:11:53 -0000 1.19 --- conserver/Makefile.in 19 Jan 2004 14:26:20 -0000 *************** *** 6,12 **** sbindir = @sbindir@ sysconfdir = @sysconfdir@ mandir = @mandir@ ! exampledir = @datadir@/examples/conserver ### Installation programs and flags INSTALL = @INSTALL@ --- 6,13 ---- sbindir = @sbindir@ sysconfdir = @sysconfdir@ mandir = @mandir@ ! datadir = @datadir@ ! exampledir = $(datadir)/examples/conserver ### Installation programs and flags INSTALL = @INSTALL@ Index: conserver.cf/Makefile.in =================================================================== RCS file: /home/bryan/cvsroot/conserver/conserver.cf/Makefile.in,v retrieving revision 1.6 diff -c -r1.6 Makefile.in *** conserver.cf/Makefile.in 20 Dec 2003 06:12:06 -0000 1.6 --- conserver.cf/Makefile.in 19 Jan 2004 14:25:20 -0000 *************** *** 3,9 **** prefix = @prefix@ mandir = @mandir@ sysconfdir = @sysconfdir@ ! exampledir = @datadir@/examples/conserver ### Installation programs and flags INSTALL = @INSTALL@ --- 3,10 ---- prefix = @prefix@ mandir = @mandir@ sysconfdir = @sysconfdir@ ! datadir = @datadir@ ! exampledir = $(datadir)/examples/conserver ### Installation programs and flags INSTALL = @INSTALL@ --x+6KMIRAuhnl3hBn--