Skip to content

Commit

Permalink
Fix copyright attributions
Browse files Browse the repository at this point in the history
Add copyright years and original authors to INN::Config,
INN::Utils::Shlock, mailpost and sendinpaths.
  • Loading branch information
Julien-Elie committed Dec 22, 2024
1 parent 3572ba0 commit a4bed09
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 8 deletions.
8 changes: 6 additions & 2 deletions backends/sendinpaths.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@

## Submit Path header field statistics based on ninpaths.
##
## A rewrite of the sendinpaths shell script in Perl, based on Mohan Kokal's
## initial work. Improved by Julien Elie.
## sendinpaths was originally written by Olaf Titz in shell. This is a
## rewrite in Perl, based on Mohan Kokal's initial work, integrated in 2011
## into INN, and improved by Julien Élie.
##
## Various bug fixes, code and documentation improvements since then
## in 2011, 2021-2024.
##
## Prerequisites:
## ninpaths dump files are in the ${INN::Config::pathlog}/path directory.
Expand Down
6 changes: 5 additions & 1 deletion doc/pod/sendinpaths.pod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
=encoding utf-8

=head1 NAME

sendinpaths - Send Usenet Path header field statistics via e-mail
Expand Down Expand Up @@ -77,7 +79,9 @@ for two addresses:

=head1 HISTORY

B<sendinpaths> was written by Olaf Titz <olaf@bigred.inka.de>.
B<sendinpaths> was originally written by Olaf Titz <olaf@bigred.inka.de>
in shell. The version shipped with INN is a rewrite in Perl based on Mohan
Kokal's initial work, and improved by Julien Élie.

=head1 SEE ALSO

Expand Down
11 changes: 9 additions & 2 deletions frontends/mailpost.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
# fixscript will replace this line with code to load INN::Config

# mailpost - Yet another mail-to-news filter
# vixie 14jun92 [original]
#
# Originally written by Paul Vixie, and released on June, 14th 1992.
# Hacked up by James Brister for INN integration in 1998.
#
# Various bug fixes, code and documentation improvements
# in 1992, 1993, 1995, 1998-2004, 2007-2012, 2015, 2017, 2021-2024.

use strict;
use warnings;
Expand Down Expand Up @@ -671,6 +676,8 @@ sub append_newsgroups($$) {

__END__
=encoding utf-8
=head1 NAME
mailpost - Feed an e-mail message into a newsgroup
Expand Down Expand Up @@ -878,7 +885,7 @@ The default database files which record previously seen message-IDs.
=head1 HISTORY
Written by Paul Vixie long ago and then hacked up by James Brister for INN
integration. Documentation improved by Julien Elie.
integration. Documentation improved by Julien Élie.
=head1 SEE ALSO
Expand Down
10 changes: 9 additions & 1 deletion perl/INN/Config.pm.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Perl module which sets up any and all variables that an
## INN Perl script might need.
##
## Originally written by James Brister in 1996 as innshellvars.pl, and
## converted to this INN::Config Perl module by Julien Élie in 2007.
##
## Various bug fixes, code and documentation improvements since then
## in 2007-2011, 2013, 2018, 2021, 2022, 2024.

package INN::Config;

Expand Down Expand Up @@ -210,6 +216,8 @@ if (-x "${pathetc}/innshellvars.pl.local") {

__END__

=encoding utf-8

=head1 NAME

INN::Config - Export all the variables an INN Perl script might need
Expand Down Expand Up @@ -283,7 +291,7 @@ module.

F<innshellvars.pl> was written by James Brister <brister@vix.com>
for InterNetNews in 1996. It was converted to the INN::Config Perl
module by Julien Elie in 2007.
module by Julien Élie in 2007.

=head1 SEE ALSO

Expand Down
10 changes: 8 additions & 2 deletions perl/INN/Utils/Shlock.pm.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#! /usr/bin/perl
# fixscript will replace this line with code to load INN::Config

##
## Perl module for wrapping the shlock program shipped with INN.
## Originally written by Julien Élie in 2011 from existing code duplicated
## and used by several INN programs.
##
## Various bug fixes, code and documentation improvements since then
## in 2012, 2021-2024.
##
package INN::Utils::Shlock;

Expand Down Expand Up @@ -80,6 +84,8 @@ our @EXPORT_OK = qw(lock unlock releaselocks);

__END__
=encoding utf-8
=head1 NAME
INN::Utils::Shlock - Wrapper around the shlock program
Expand Down Expand Up @@ -176,7 +182,7 @@ This function returns C<1> on success, C<0> on failure.
=head1 HISTORY
Documentation written by Julien Elie for InterNetNews.
Documentation and Perl module written by Julien Élie for InterNetNews.
=head1 SEE ALSO
Expand Down

0 comments on commit a4bed09

Please sign in to comment.