Common subdirectories: ./Doc and ../majordomo-1.94.2#3/Doc
diff -u ./README ../majordomo-1.94.2#3/README
--- ./README Mon Dec 23 15:29:56 1996
+++ ../majordomo-1.94.2#3/README Mon Apr 7 20:56:56 1997
@@ -46,7 +46,7 @@
Majordomo is a program which automates the management of Internet
mailing lists. Commands are sent to Majordomo via electronic mail to
- handle all aspects of list maintainance. Once a list is set up,
+ handle all aspects of list maintenance. Once a list is set up,
virtually all operations can be performed remotely, requiring no
intervention upon the postmaster of the list site.
@@ -118,7 +118,7 @@
Majordomo and digest were originally written by Brent Chapman, however
he doesn't have the time currently to do more development on it. John
Rouillard did a lot of work for configuration files and managed the
-releases for the 1.62 to 1.93 timeframe. Chan Wilson
+releases for the 1.62 to 1.93 time frame. Chan Wilson
(
[email protected]) is currently "release coordinator" for 1.94 and
beyond.
@@ -354,15 +354,15 @@
open/append/read a to a file that it was supposed to be able to
access. Usually this is caused by improper permissions.
- chmod(, link(, operation not permited -- the corresponding chmod or
+ chmod(, link(, operation not permitted -- the corresponding chmod or
link operation failed when it shouldn't have. Usually this is caused
by improper permissions, most often on the wrapper. Make certain
- that it is unstalled setuid, and that "wrapper config-test" run as a
+ that it is installed setuid, and that "wrapper config-test" run as a
normal user (not root or the majordomo user) reports no problems.
Can't invoke -- the program majordomo wanted to invoke to send mail
couldn't be invoked. This error is usually only seen when you are
- tracing the smtp connection using /usr/ucb/Mail -v.
+ tracing the SMTP connection using /usr/ucb/Mail -v.
Can't connect to sendmail -- for some reason the attempt to run
sendmail in the function resend_sendmail in the resend program
@@ -372,30 +372,31 @@
could not be run; make certain that config-test reports that the
mailer is properly accessible. Bugs in previous versions caused
errors of the form "mailer -fMajordomo-Owner not executable." These
- bugs should be fixed; please report any occurrances of this type of
+ bugs should be fixed; please report any occurrences of this type of
error just in case the bugs persist.
- mailer exited unexpectedly with error XXXX -- it is expected that the
- mailer will return a zero exit code upon success, so any nonzero code
- is reported as an error. The mail may or may not have been propperly
- sent to your list. To track down the source of this error, first
- inspect the debug logs (see Debugging below) to see if the mailer
- emitted any diagnostics. Failing that, the true exit status of the
- program can be obtained by dividing the error number by 256. Consult
- your mailer's documentation for the meaning of the exit statis, or if
- you use Sendmail, consult the chart below for some of the more common
+ mailer exited unexpectedly with error XX -- it is expected that the
+ mailer will return a zero exit code upon success, so any nonzero
+ code is reported as an error. The mail may or may not have been
+ properly sent to your list. To track down the source of this
+ error, first inspect the debug logs (see Debugging below) to see
+ if the mailer emitted any diagnostics. Failing that, consult your
+ mailer's documentation for the meaning of the exit status, or if you
+ use Sendmail, consult the chart below for some of the more common
errors:
64 - EX_USAGE - Sendmail uses this to indicate a command line usage
error, but it also uses it to report a general error condition.
Some versions of Sendmail do this somewhat unpredictably and for
- this reason the '-oee' flag has been added to the defaut mailer
+ this reason the '-oee' flag has been added to the default mailer
definitions. This flag should prevent these errors for versions of
Sendmail that support it.
+
67 - EX_NOUSER - The alias that is used to send out list mail (which
is passed as the last argument on resend's command line) does not
exist. Make certain that there are no typographical errors in your
alias file, and that the file has been properly rebuilt.
+
69 through 74, 77 - These are generally serious errors that are
caused by either lack of resources or improper configuration of
Sendmail. You should consult the Sendmail documentation.
@@ -492,7 +493,7 @@
that contains this list if the file name used for the -I flag to
resend. For example the filename "<listname>-can_post" can be
created in the majordomo mailing lists directory. This list should
- be unadvertized and closed. Don't bother creating any sendmail
+ be unadvertised and closed. Don't bother creating any sendmail
aliases for it. This allows people to be added to or removed from
the list using majordomo commands.
@@ -538,7 +539,7 @@
If you want to change the defaults, change the values assigned to each
keyword. There is some documentation in the config_parse.pl file. The
-config_parse.pl file is also a man page describing the programatic
+config_parse.pl file is also a man page describing the programmatic
interface to the config file parser and some other details about the
config file parser.
diff -u ./approve ../majordomo-1.94.2#3/approve
--- ./approve Wed Apr 2 12:34:09 1997
+++ ../majordomo-1.94.2#3/approve Sat Apr 5 21:18:36 1997
@@ -56,8 +56,8 @@
# +1 415 962 0841 Mountain View, CA 94041
# $Source: /sources/cvsrepos/majordomo/approve,v $
-# $Revision: 1.14 $
-# $Date: 1997/04/02 10:34:09 $
+# $Revision: 1.15 $
+# $Date: 1997/04/05 19:18:36 $
# $Author: cwilson $
# $State: Exp $
#
@@ -155,11 +155,12 @@
if (defined($opt_d)) {
open(MAIL, ">&STDOUT");
print MAIL "-" x 20, "\n";
- print MAIL "To: $reply_to\n\n";
} else {
open(MAIL, "|$MAILER $reply_to") ||
die ("open(\"|$MAILER ...\"): $!");
}
+
+ print MAIL "To: $reply_to\n\n";
print MAIL "approve $passwd $_";
close(MAIL);
last;
Common subdirectories: ./contrib and ../majordomo-1.94.2#3/contrib
Common subdirectories: ./include and ../majordomo-1.94.2#3/include
diff -u ./majordomo_version.pl ../majordomo-1.94.2#3/majordomo_version.pl
--- ./majordomo_version.pl Wed Apr 2 16:05:15 1997
+++ ../majordomo-1.94.2#3/majordomo_version.pl Mon Apr 7 20:59:16 1997
@@ -1,5 +1,5 @@
-# $Header: /sources/cvsrepos/majordomo/majordomo_version.pl,v 1.20 1997/04/02 14:05:15 cwilson Exp $
+# $Header: /sources/cvsrepos/majordomo/majordomo_version.pl,v 1.21 1997/04/07 18:59:16 cwilson Exp $
-$majordomo_version = "1.94.2_spin2";
+$majordomo_version = "1.94.2_spin3";
1;
Common subdirectories: ./md-sub and ../majordomo-1.94.2#3/md-sub
Common subdirectories: ./regress and ../majordomo-1.94.2#3/regress
diff -u ./sample.cf ../majordomo-1.94.2#3/sample.cf
--- ./sample.cf Wed Apr 2 12:33:13 1997
+++ ../majordomo-1.94.2#3/sample.cf Mon Apr 7 20:57:43 1997
@@ -284,6 +284,7 @@
/^subject:\s*Returned mail\b/i
/^subject:\s*unable to deliver mail\b/i
/^subject:\s.*\baway from my mail\b/i
+/^subject:\s*Autoreply/i
END
# Taboo body contents to catch and forward to the approval address
@@ -303,4 +304,4 @@
$majordomo_dont_reply = '(mailer-daemon|uucp|listserv|majordomo|listproc)\@';
1;
-# $Header: /sources/cvsrepos/majordomo/sample.cf,v 1.31 1997/04/02 10:33:13 cwilson Exp $
+# $Header: /sources/cvsrepos/majordomo/sample.cf,v 1.32 1997/04/07 18:57:43 cwilson Exp $
Only in .: wrapper