-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ Upstream-Contact: raf <[email protected]> | |
Source: https://raf.org/textmail | ||
|
||
Files: * | ||
Copyright: 2003-2007, 2011, 2020 raf <[email protected]> | ||
Copyright: 2003-2007, 2011, 2020-2023 raf <[email protected]> | ||
License: GPL-2.0-or-later | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
CHANGELOG | ||
========= | ||
|
||
1.1 (20230313) | ||
|
||
- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2 | ||
- Fix mbox From_ header parsing (handle single-letter as an email address substitute) (spotted by github/traut21) | ||
- Add CODE_OF_CONDUCT.md | ||
- Add LICENSES/* and .reuse/dep5 (REUSE 3.0 compliant) | ||
- Add references to the codeberg repository | ||
|
||
1.0 (20200625) | ||
|
||
- When replacing text-versus-HTML alternatives, choose the translated HTML alternative instead | ||
|
@@ -98,6 +106,6 @@ CHANGELOG | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20200625 | ||
Date: 20230313 | ||
Author: raf <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ COPYING | |
======= | ||
textmail - mail filter to replace MS Word/HTML attachments with plain text | ||
|
||
Copyright (C) 2003-2007, 2011, 2020 raf <[email protected]> | ||
Copyright (C) 2003-2007, 2011, 2020-2023 raf <[email protected]> | ||
|
||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -22,6 +22,6 @@ Copyright (C) 2003-2007, 2011, 2020 raf <[email protected]> | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20200625 | ||
Date: 20230313 | ||
Author: raf <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,6 @@ Requires the following external programs for various functions: | |
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20200625 | ||
Date: 20230313 | ||
Author: raf <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# textmail - mail filter to replace MS Word/HTML attachments with plain text | ||
# | ||
# Copyright (C) 2003-2007, 2011, 2020 raf <[email protected]> | ||
# Copyright (C) 2003-2007, 2011, 2020-2023 raf <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -15,10 +15,10 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, see <https://www.gnu.org/licenses/>. | ||
# | ||
# 20200625 raf <[email protected]> | ||
# 20230313 raf <[email protected]> | ||
|
||
NAME := textmail | ||
VERSION := 1.0 | ||
VERSION := 1.1 | ||
DIST := $(NAME)-$(VERSION) | ||
DISTDIR := ../$(DIST) | ||
DISTFILE := ../$(DIST).tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,13 +82,13 @@ programs. It should run on any system with the following software: | |
|
||
There is a manual entry: | ||
|
||
- [textmail(1)](http://raf.org/textmail/manpages/textmail.1.html) - the *textmail(1)* manpage | ||
- [textmail(1)](https://raf.org/textmail/manual/textmail.1.html) - the *textmail(1)* manpage | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
URL: https://raf.org/textmail | ||
GIT: https://github.com/raforg/textmail | ||
GIT: https://codeberg.org/raforg/textmail | ||
Date: 20200625 | ||
Date: 20230313 | ||
Author: raf <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/env perl | ||
BEGIN { pop @INC if $INC[-1] eq '.' } | ||
use 5.006; # and v7 | ||
use warnings; | ||
use strict; | ||
BEGIN { pop @INC if $INC[-1] eq '.' } | ||
|
||
# textmail - mail filter to replace MS Word/HTML attachments with plain text | ||
# | ||
# Copyright (C) 2003-2007, 2011, 2020 raf <[email protected]> | ||
# Copyright (C) 2003-2007, 2011, 2020-2023 raf <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -21,7 +21,7 @@ BEGIN { pop @INC if $INC[-1] eq '.' } | |
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, see <https://www.gnu.org/licenses/>. | ||
# | ||
# 20200625 raf <[email protected]> | ||
# 20230313 raf <[email protected]> | ||
|
||
=head1 NAME | ||
|
@@ -498,11 +498,11 @@ I<pod2man(1)>, | |
I<pod2html(1)>, | ||
I<vcalendar-filter>, | ||
I<mutt.vcard.filter>, | ||
C<http://raf.org/minimail/> | ||
C<https://raf.org/minimail> | ||
=head1 AUTHOR | ||
20200625 raf <[email protected]> | ||
20230313 raf <[email protected]> | ||
=head1 URL | ||
|
@@ -1058,8 +1058,8 @@ sub winmail | |
# Documentation functions: usage and manpage (via $PAGER or as nroff or html) | ||
my ($name) = $0 =~ /([^\/]+)$/; | ||
my $version = '1.0'; | ||
my $date = '20200625'; | ||
my $version = '1.1'; | ||
my $date = '20230313'; | ||
$ENV{LANG} = 'C'; | ||
|
@@ -1124,7 +1124,7 @@ sub help | |
"GIT: https://github.com/raforg/textmail\n", | ||
"GIT: https://codeberg.org/raforg/textmail\n", | ||
"\n", | ||
"Copyright (C) 2003-2007, 2011, 2020 raf <raf\@raf.org>\n", | ||
"Copyright (C) 2003-2007, 2011, 2020-2023 raf <raf\@raf.org>\n", | ||
"\n", | ||
"This is free software released under the terms of the GPLv2+:\n", | ||
"\n", | ||
|