diff -Nru ax25mail-utils-0.14/ax25mail-utils.lsm ax25mail-utils-0.15/ax25mail-utils.lsm --- ax25mail-utils-0.14/ax25mail-utils.lsm 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/ax25mail-utils.lsm 2021-02-04 23:50:08.000000000 +0000 @@ -1,7 +1,7 @@ Begin3 Title: ax25mail-utils -Version: 0.14 -Entered-date: 19 Aug 15 +Version: 0.15 +Entered-date: 01 Feb 21 Description: A set of utilities for reading PR mail from a FBB BBS Keywords: AX.25 FBB unproto message list Author: dranch@trinnet.net (David Ranch) diff -Nru ax25mail-utils-0.14/axgetlist/axgetlist.c ax25mail-utils-0.15/axgetlist/axgetlist.c --- ax25mail-utils-0.14/axgetlist/axgetlist.c 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/axgetlist/axgetlist.c 2021-02-04 23:50:08.000000000 +0000 @@ -42,9 +42,10 @@ "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; /* configuration */ -char mycall[32]; -char bbscall[32]; -char bbsport[32]; +static char mycall[32]; +static char bbscall[32]; +static char bbsport[32]; + char cmd_list[256]; char cmd_from[256]; char cmd_disc[256]; diff -Nru ax25mail-utils-0.14/axgetlist/conbbs.c ax25mail-utils-0.15/axgetlist/conbbs.c --- ax25mail-utils-0.14/axgetlist/conbbs.c 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/axgetlist/conbbs.c 2021-02-04 23:50:08.000000000 +0000 @@ -34,10 +34,10 @@ #define CONTIME 300 //connect timeout [seconds] #define BUFSIZE 1024 -char mycall[20]; /* my callsign */ -char bbscall[20]; /* BBS callsign */ -char bcall[20]; /* Base callsign of port */ -char bbspath[256]; /* path to BBS */ +static char mycall[20]; /* my callsign */ +static char bbscall[20]; /* BBS callsign */ +static char bcall[20]; /* Base callsign of port */ +static char bbspath[256]; /* path to BBS */ int sock; /* the socket for connecting BBS */ int connected = 0; /* is the BBS connected ? */ diff -Nru ax25mail-utils-0.14/axgetmail/conbbs.c ax25mail-utils-0.15/axgetmail/conbbs.c --- ax25mail-utils-0.14/axgetmail/conbbs.c 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/axgetmail/conbbs.c 2021-02-04 23:50:08.000000000 +0000 @@ -34,15 +34,15 @@ #define CONTIME 300 //connect timeout [seconds] #define BUFSIZE 1024 -char mycall[20]; /* my callsign */ -char bbscall[20]; /* BBS callsign */ -char bcall[20]; /* Base callsign of port */ -char bbspath[256]; /* path to BBS */ +static char mycall[20]; /* my callsign */ +static char bbscall[20]; /* BBS callsign */ +static char bcall[20]; /* Base callsign of port */ +static char bbspath[256]; /* path to BBS */ int sock; /* the socket for connecting BBS */ int connected = 0; /* is the BBS connected ? */ -FILE *bbs_stream; /* stream for communication with BBS */ +static FILE *bbs_stream; /* stream for communication with BBS */ /*----------------------------------------------------------------------*/ diff -Nru ax25mail-utils-0.14/axgetmail/getmsg.c ax25mail-utils-0.15/axgetmail/getmsg.c --- ax25mail-utils-0.14/axgetmail/getmsg.c 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/axgetmail/getmsg.c 2021-02-04 23:50:08.000000000 +0000 @@ -28,9 +28,9 @@ /*#define ADD_SUBJECT*/ FILE *bbs_stream = NULL; -char dest_dir[256]; /* destination directory */ -char prg_name[256]; /* program name (for tag) */ -char curr_call[20]; /* currently used callsign */ +static char dest_dir[256]; /* destination directory */ +static char prg_name[256]; /* program name (for tag) */ +static char curr_call[20]; /* currently used callsign */ /* save decompressed message (and convert to U*ix text) */ int save_msg(int num, void *data, unsigned long length, char *subj) diff -Nru ax25mail-utils-0.14/ChangeLog ax25mail-utils-0.15/ChangeLog --- ax25mail-utils-0.14/ChangeLog 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/ChangeLog 2021-02-04 23:50:08.000000000 +0000 @@ -1,3 +1,61 @@ +commit d8f6dd1 +Author: David Ranch +Date: 2021-02-04 + + new version + +contrib/packaging/rpm/ax25mail-utils.spec + +commit da9132f +Author: David Ranch +Date: 2021-02-02 + + properly reflect new version for debuild support + +debian/changelog + +commit 8e1dbe1 +Author: David Ranch +Date: 2021-02-02 + + fix GCC 10 compiler issues + +axgetlist/axgetlist.c +axgetlist/conbbs.c +axgetmail/conbbs.c +axgetmail/getmsg.c + +commit aa7c456 +Author: David Ranch +Date: 2021-02-02 + + spelling fixes from Debian packaging team + +man1/axgetlist.1 +man1/axgetmail.1 +man1/axgetmsg.1 +man1/update_routes.1 +man8/ulistd.8 + +commit ef5202b +Author: David Ranch +Date: 2021-02-01 + + Updated version for next release + +README +ax25mail-utils.lsm +configure.ac +contrib/packaging/rpm/ax25mail-utils.spec + +commit 4463775 +Author: David Ranch +Date: 2021-02-01 + + Updated the Changelog based upon recent Git commit comments + +ChangeLog + commit cdf41a7 Author: David Ranch Date: 2021-02-01 diff -Nru ax25mail-utils-0.14/configure ax25mail-utils-0.15/configure --- ax25mail-utils-0.14/configure 2021-02-01 22:39:58.000000000 +0000 +++ ax25mail-utils-0.15/configure 2021-02-04 23:50:16.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.63 for ax25mail-utils 0.14. +# Generated by GNU Autoconf 2.63 for ax25mail-utils 0.15. # # Report bugs to . # @@ -596,8 +596,8 @@ # Identity of this package. PACKAGE_NAME='ax25mail-utils' PACKAGE_TARNAME='ax25mail-utils' -PACKAGE_VERSION='0.14' -PACKAGE_STRING='ax25mail-utils 0.14' +PACKAGE_VERSION='0.15' +PACKAGE_STRING='ax25mail-utils 0.15' PACKAGE_BUGREPORT='ax25mail@trinnet.net' ac_unique_file="ulistd/ulistd.c" @@ -1297,7 +1297,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures ax25mail-utils 0.14 to adapt to many kinds of systems. +\`configure' configures ax25mail-utils 0.15 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1363,7 +1363,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of ax25mail-utils 0.14:";; + short | recursive ) echo "Configuration of ax25mail-utils 0.15:";; esac cat <<\_ACEOF @@ -1452,7 +1452,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -ax25mail-utils configure 0.14 +ax25mail-utils configure 0.15 generated by GNU Autoconf 2.63 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1466,7 +1466,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by ax25mail-utils $as_me 0.14, which was +It was created by ax25mail-utils $as_me 0.15, which was generated by GNU Autoconf 2.63. Invocation command line was $ $0 $@ @@ -2320,7 +2320,7 @@ # Define the identity of the package. PACKAGE='ax25mail-utils' - VERSION='0.14' + VERSION='0.15' cat >>confdefs.h <<_ACEOF @@ -4659,7 +4659,7 @@ # TODO: move VERINFO to a more prominate location or eliminated it cat >>confdefs.h <<\_ACEOF -#define VERINFO "Development snapshot 022121-develop" +#define VERINFO "Development snapshot 020221-develop" _ACEOF @@ -5571,7 +5571,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by ax25mail-utils $as_me 0.14, which was +This file was extended by ax25mail-utils $as_me 0.15, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5634,7 +5634,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ -ax25mail-utils config.status 0.14 +ax25mail-utils config.status 0.15 configured by $0, generated by GNU Autoconf 2.63, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff -Nru ax25mail-utils-0.14/configure.ac ax25mail-utils-0.15/configure.ac --- ax25mail-utils-0.14/configure.ac 2021-02-01 22:39:56.000000000 +0000 +++ ax25mail-utils-0.15/configure.ac 2021-02-04 23:50:14.000000000 +0000 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([ax25mail-utils],[0.14], [ax25mail@trinnet.net], , [http://http://sourceforge.net/projects/ax25mail/]) +AC_INIT([ax25mail-utils],[0.15], [ax25mail@trinnet.net], , [http://http://sourceforge.net/projects/ax25mail/]) AC_PREREQ([2.63]) AC_CONFIG_SRCDIR([ulistd/ulistd.c]) AC_CONFIG_AUX_DIR([build-aux]) @@ -22,7 +22,7 @@ AH_TEMPLATE([NEW_AXLIB], [AXLIB old/new flag]) AH_TEMPLATE([VERINFO], [Version string]) # TODO: move VERINFO to a more prominate location or eliminated it -AC_DEFINE([VERINFO], ["Development snapshot 022121-develop"]) +AC_DEFINE([VERINFO], ["Development snapshot 020221-develop"]) AC_CHECK_HEADER([netax25/axlib.h], diff -Nru ax25mail-utils-0.14/contrib/packaging/rpm/ax25mail-utils.spec ax25mail-utils-0.15/contrib/packaging/rpm/ax25mail-utils.spec --- ax25mail-utils-0.14/contrib/packaging/rpm/ax25mail-utils.spec 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/contrib/packaging/rpm/ax25mail-utils.spec 2021-02-04 23:50:08.000000000 +0000 @@ -1,5 +1,5 @@ Name: ax25mail-utils -Version: 0.14 +Version: 0.15 Release: 1%{?dist} Summary: AX.25 ham radio mail application Group: Applications/Communications @@ -70,6 +70,8 @@ /usr/share/ax25mail-utils/contrib/ax25mail-utils.spec %changelog +* Mon Feb 1 2021 0.0.15-1 +- New version * Mon Feb 1 2021 0.0.14-1 - New version * Sun Jan 7 2018 0.0.14-1 diff -Nru ax25mail-utils-0.14/debian/ax25mail-utils.lintian-overrides ax25mail-utils-0.15/debian/ax25mail-utils.lintian-overrides --- ax25mail-utils-0.14/debian/ax25mail-utils.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ ax25mail-utils-0.15/debian/ax25mail-utils.lintian-overrides 2022-11-05 15:54:32.000000000 +0000 @@ -0,0 +1,3 @@ +# /var/ax25 is specified in Debian Hamradio Maintainers Guide section 2.3.9. +non-standard-dir-in-var [var/ax25/] +file-in-unusual-dir [var/ax25/*] diff -Nru ax25mail-utils-0.14/debian/changelog ax25mail-utils-0.15/debian/changelog --- ax25mail-utils-0.14/debian/changelog 2021-02-03 10:57:43.000000000 +0000 +++ ax25mail-utils-0.15/debian/changelog 2022-11-05 15:54:32.000000000 +0000 @@ -1,3 +1,19 @@ +ax25mail-utils (0.15-1) unstable; urgency=medium + + * Team upload. + + [ Daniele Forsi ] + * Trim trailing whitespace. + * Use secure URI in debian/watch. + * Update standards version to 4.6.0, no changes needed. + * Use secure URI in debian/control. + + [ Christoph Berg ] + * New upstream version 0.15. + * Retire Colin from Uploaders, thanks! (Closes: #990604) + + -- Christoph Berg Sat, 05 Nov 2022 16:54:32 +0100 + ax25mail-utils (0.14-1) unstable; urgency=medium * Team upload. @@ -78,4 +94,3 @@ * Initial Release. -- Joop Stakenborg Sat, 9 Apr 2005 18:20:15 +0200 - diff -Nru ax25mail-utils-0.14/debian/control ax25mail-utils-0.15/debian/control --- ax25mail-utils-0.14/debian/control 2021-02-03 10:57:43.000000000 +0000 +++ ax25mail-utils-0.15/debian/control 2022-11-05 15:53:08.000000000 +0000 @@ -1,11 +1,12 @@ Source: ax25mail-utils Section: hamradio Priority: optional -Homepage: http://sourceforge.net/projects/ax25mail/ +Homepage: https://sourceforge.net/projects/ax25mail/ Maintainer: Debian Hamradio Maintainers -Uploaders: Colin Tuckley Build-Depends: debhelper-compat (= 13), libax25-dev -Standards-Version: 4.5.1 +Standards-Version: 4.6.0 +Vcs-Browser: https://salsa.debian.org/debian-hamradio-team/ax25mail-utils +Vcs-Git: https://salsa.debian.org/debian-hamradio-team/ax25mail-utils.git Package: ax25mail-utils Architecture: any diff -Nru ax25mail-utils-0.14/debian/patches/01-fix-spellings ax25mail-utils-0.15/debian/patches/01-fix-spellings --- ax25mail-utils-0.14/debian/patches/01-fix-spellings 2020-08-03 20:00:28.000000000 +0000 +++ ax25mail-utils-0.15/debian/patches/01-fix-spellings 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ -Fix spelling errors in various files ---- a/man8/ulistd.8 -+++ b/man8/ulistd.8 -@@ -10,12 +10,12 @@ - unproto (UI) frames and gathers the information about messages available in - the BBS. Ulistd can act in two modes. In - .B active --mode it automaticaly sends the requests to keep the lists up to date. In -+mode it automatically sends the requests to keep the lists up to date. In - .B passive - mode it uses only the list entries transmitted by the BBS. When some missing - messages are detected it calls the script - .I /var/ax25/complete_agent --that will complete the list. Typicaly this script runs -+that will complete the list. Typically this script runs - .B axgetlist (1) - to read the missing messages. - Each home BBS must be specified in configuration file ---- a/man1/update_routes.1 -+++ b/man1/update_routes.1 -@@ -6,7 +6,7 @@ - .SH DESCRIPTION - .LP - This program scans all messages downloaded from the specified BBS and --updates the home BBS informations (builds the /var/ax25/mail_routes -+updates the home BBS information (builds the /var/ax25/mail_routes - database). - .SH FILES - .LP ---- a/man1/axgetmail.1 -+++ b/man1/axgetmail.1 -@@ -1,6 +1,6 @@ - .TH axgetmail 1 "22 January 2002" Linux "AX.25 Mail Utilities" - .SH NAME --axgetmail \- automaticaly download messages from the F6FBB BBS -+axgetmail \- automatically download messages from the F6FBB BBS - .SH SYNOPSIS - .B axgetmail - .SH DESCRIPTION -@@ -31,11 +31,11 @@ - downloaded for such user from the BBS. - .LP - .B Axgetmail --can be run automaticaly by -+can be run automatically by - .B ulistd - utility. See ulistd(8). - .SH AUTHORIZATION --After the succesful connect to the BBS -+After the successful connect to the BBS - .B axgetmail - attempts to execute the script - .B /var/ax25/auth_agent ---- a/man1/axgetmsg.1 -+++ b/man1/axgetmsg.1 -@@ -42,7 +42,7 @@ - between bulletins and personal messages is that axgetmsg will remove the - personal messages from the BBS after downloading them. - .SH AUTHORIZATION --After the succesful connect to the BBS -+After the successful connect to the BBS - .B axgetmsg - attempts to execute the script - .B /var/ax25/auth_agent ---- a/man1/axgetlist.1 -+++ b/man1/axgetlist.1 -@@ -11,14 +11,14 @@ - for those users who don\'t have permission to use the unproto lists or who - find it unreliable. Axgetlist connects the home BBS, sends the commands for - getting the list of new messages and adds it to the same file as ulistd --does. This allows to use all the mail utilities the same way as with ulistd. -+does. This allows one to use all the mail utilities the same way as with ulistd. - .LP - Each BBS can use different format of message lists. The format for your BBS - must be carefuly specified in the configuration file - .B /etc/ax25/axgetlist.conf - (see the example configuration file for more information). - .SH AUTHORIZATION --After the succesful connect to the BBS -+After the successful connect to the BBS - .B axgetlist - attempts to execute the script - .B /var/ax25/auth_agent diff -Nru ax25mail-utils-0.14/debian/patches/ax25mail-util-gcc-patchlist.patch ax25mail-utils-0.15/debian/patches/ax25mail-util-gcc-patchlist.patch --- ax25mail-utils-0.14/debian/patches/ax25mail-util-gcc-patchlist.patch 2021-02-03 10:53:29.000000000 +0000 +++ ax25mail-utils-0.15/debian/patches/ax25mail-util-gcc-patchlist.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ ---- a/axgetlist/axgetlist.c -+++ b/axgetlist/axgetlist.c -@@ -42,9 +42,10 @@ char *def_month[] = {"Jan", "Feb", "Mar" - "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; - - /* configuration */ --char mycall[32]; --char bbscall[32]; --char bbsport[32]; -+static char mycall[32]; -+static char bbscall[32]; -+static char bbsport[32]; -+ - char cmd_list[256]; - char cmd_from[256]; - char cmd_disc[256]; ---- a/axgetlist/conbbs.c -+++ b/axgetlist/conbbs.c -@@ -34,10 +34,10 @@ - #define CONTIME 300 //connect timeout [seconds] - #define BUFSIZE 1024 - --char mycall[20]; /* my callsign */ --char bbscall[20]; /* BBS callsign */ --char bcall[20]; /* Base callsign of port */ --char bbspath[256]; /* path to BBS */ -+static char mycall[20]; /* my callsign */ -+static char bbscall[20]; /* BBS callsign */ -+static char bcall[20]; /* Base callsign of port */ -+static char bbspath[256]; /* path to BBS */ - - int sock; /* the socket for connecting BBS */ - int connected = 0; /* is the BBS connected ? */ ---- a/axgetmail/getmsg.c -+++ b/axgetmail/getmsg.c -@@ -28,9 +28,9 @@ - /*#define ADD_SUBJECT*/ - - FILE *bbs_stream = NULL; --char dest_dir[256]; /* destination directory */ --char prg_name[256]; /* program name (for tag) */ --char curr_call[20]; /* currently used callsign */ -+static char dest_dir[256]; /* destination directory */ -+static char prg_name[256]; /* program name (for tag) */ -+static char curr_call[20]; /* currently used callsign */ - - /* save decompressed message (and convert to U*ix text) */ - int save_msg(int num, void *data, unsigned long length, char *subj) ---- a/axgetmail/conbbs.c -+++ b/axgetmail/conbbs.c -@@ -34,15 +34,15 @@ - #define CONTIME 300 //connect timeout [seconds] - #define BUFSIZE 1024 - --char mycall[20]; /* my callsign */ --char bbscall[20]; /* BBS callsign */ --char bcall[20]; /* Base callsign of port */ --char bbspath[256]; /* path to BBS */ -+static char mycall[20]; /* my callsign */ -+static char bbscall[20]; /* BBS callsign */ -+static char bcall[20]; /* Base callsign of port */ -+static char bbspath[256]; /* path to BBS */ - - int sock; /* the socket for connecting BBS */ - int connected = 0; /* is the BBS connected ? */ - --FILE *bbs_stream; /* stream for communication with BBS */ -+static FILE *bbs_stream; /* stream for communication with BBS */ - - /*----------------------------------------------------------------------*/ - diff -Nru ax25mail-utils-0.14/debian/patches/series ax25mail-utils-0.15/debian/patches/series --- ax25mail-utils-0.14/debian/patches/series 2021-02-03 10:57:43.000000000 +0000 +++ ax25mail-utils-0.15/debian/patches/series 2022-11-05 15:54:32.000000000 +0000 @@ -1,3 +1 @@ -01-fix-spellings no-spec-install -ax25mail-util-gcc-patchlist.patch diff -Nru ax25mail-utils-0.14/debian/watch ax25mail-utils-0.15/debian/watch --- ax25mail-utils-0.14/debian/watch 2020-08-03 20:00:27.000000000 +0000 +++ ax25mail-utils-0.15/debian/watch 2022-11-05 15:52:39.000000000 +0000 @@ -1,5 +1,5 @@ version=3 -http://qa.debian.org/watch/sf.php/ax25mail/ \ +https://qa.debian.org/watch/sf.php/ax25mail/ \ (?:.*/|.*=|)ax25mail-utils[\-\._](\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz)(?:/\S*)? diff -Nru ax25mail-utils-0.14/man1/axgetlist.1 ax25mail-utils-0.15/man1/axgetlist.1 --- ax25mail-utils-0.14/man1/axgetlist.1 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/man1/axgetlist.1 2021-02-04 23:50:08.000000000 +0000 @@ -11,14 +11,14 @@ for those users who don\'t have permission to use the unproto lists or who find it unreliable. Axgetlist connects the home BBS, sends the commands for getting the list of new messages and adds it to the same file as ulistd -does. This allows to use all the mail utilities the same way as with ulistd. +does. This allows one to use all the mail utilities the same way as with ulistd. .LP Each BBS can use different format of message lists. The format for your BBS must be carefuly specified in the configuration file .B /etc/ax25/axgetlist.conf (see the example configuration file for more information). .SH AUTHORIZATION -After the succesful connect to the BBS +After the successful connect to the BBS .B axgetlist attempts to execute the script .B /var/ax25/auth_agent diff -Nru ax25mail-utils-0.14/man1/axgetmail.1 ax25mail-utils-0.15/man1/axgetmail.1 --- ax25mail-utils-0.14/man1/axgetmail.1 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/man1/axgetmail.1 2021-02-04 23:50:08.000000000 +0000 @@ -1,6 +1,6 @@ .TH axgetmail 1 "22 January 2002" Linux "AX.25 Mail Utilities" .SH NAME -axgetmail \- automaticaly download messages from the F6FBB BBS +axgetmail \- automatically download messages from the F6FBB BBS .SH SYNOPSIS .B axgetmail .SH DESCRIPTION @@ -31,11 +31,11 @@ downloaded for such user from the BBS. .LP .B Axgetmail -can be run automaticaly by +can be run automatically by .B ulistd utility. See ulistd(8). .SH AUTHORIZATION -After the succesful connect to the BBS +After the successful connect to the BBS .B axgetmail attempts to execute the script .B /var/ax25/auth_agent diff -Nru ax25mail-utils-0.14/man1/axgetmsg.1 ax25mail-utils-0.15/man1/axgetmsg.1 --- ax25mail-utils-0.14/man1/axgetmsg.1 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/man1/axgetmsg.1 2021-02-04 23:50:08.000000000 +0000 @@ -42,7 +42,7 @@ between bulletins and personal messages is that axgetmsg will remove the personal messages from the BBS after downloading them. .SH AUTHORIZATION -After the succesful connect to the BBS +After the successful connect to the BBS .B axgetmsg attempts to execute the script .B /var/ax25/auth_agent diff -Nru ax25mail-utils-0.14/man1/update_routes.1 ax25mail-utils-0.15/man1/update_routes.1 --- ax25mail-utils-0.14/man1/update_routes.1 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/man1/update_routes.1 2021-02-04 23:50:08.000000000 +0000 @@ -6,7 +6,7 @@ .SH DESCRIPTION .LP This program scans all messages downloaded from the specified BBS and -updates the home BBS informations (builds the /var/ax25/mail_routes +updates the home BBS information (builds the /var/ax25/mail_routes database). .SH FILES .LP diff -Nru ax25mail-utils-0.14/man8/ulistd.8 ax25mail-utils-0.15/man8/ulistd.8 --- ax25mail-utils-0.14/man8/ulistd.8 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/man8/ulistd.8 2021-02-04 23:50:08.000000000 +0000 @@ -10,12 +10,12 @@ unproto (UI) frames and gathers the information about messages available in the BBS. Ulistd can act in two modes. In .B active -mode it automaticaly sends the requests to keep the lists up to date. In +mode it automatically sends the requests to keep the lists up to date. In .B passive mode it uses only the list entries transmitted by the BBS. When some missing messages are detected it calls the script .I /var/ax25/complete_agent -that will complete the list. Typicaly this script runs +that will complete the list. Typically this script runs .B axgetlist (1) to read the missing messages. Each home BBS must be specified in configuration file diff -Nru ax25mail-utils-0.14/README ax25mail-utils-0.15/README --- ax25mail-utils-0.14/README 2021-02-01 22:39:48.000000000 +0000 +++ ax25mail-utils-0.15/README 2021-02-04 23:50:08.000000000 +0000 @@ -1,4 +1,4 @@ -ax25mail-utils version 0.14 (stable release) +ax25mail-utils version 0.15 (stable release) Copyright (c) 2021 by David Ranch (KI6ZHD) RELEASE NOTES