diff --git a/ChangeLog b/ChangeLog index 8851f28..c2cabf1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ yapfaq 1.1.0 (unreleased) * Add conversion script for old status files. * Accept a posting-frequency of "never", too. * Check for illegal headers and stop posting, if found. + * Disabled projects must be posted, if forced. yapfaq 1.0.1 (2025-01-24) * Add %t placeholder for Message-ID (feature parity with 0.9). diff --git a/bin/yapfaq.pl b/bin/yapfaq.pl index 11494cc..81b645d 100755 --- a/bin/yapfaq.pl +++ b/bin/yapfaq.pl @@ -527,7 +527,7 @@ sub BuildPosting { } # not due if Posting-Freqency is "none" or never - if ($PostingFrequency =~ /none|never/) { + if ($PostingFrequency =~ /none|never/ && !$OptForce) { print "... is disabled.\n" if $Config{'verbose'} or $Config{'debug'}; return ''; }