From 41d307a2fefc76593dc3be8d12b22929fc555031 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sat, 7 Feb 2026 18:48:27 +0100 Subject: [PATCH] Accept a posting-frequency of "never", too. Signed-off-by: Thomas Hochstein --- ChangeLog | 1 + bin/yapfaq.pl | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b8daa92..1500766 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ yapfaq 1.1.0 (unreleased) * --test: Set Supersedes and don't modify Message-ID if -o is set. * --test: Force -o if -n is not set. * Add conversion script for old status files. + * Accept a posting-frequency of "never", too. 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 be517c0..eebe9b7 100755 --- a/bin/yapfaq.pl +++ b/bin/yapfaq.pl @@ -515,8 +515,8 @@ sub BuildPosting { } } - # not due if Posting-Freqency is "none" - if ($PostingFrequency =~ /none/) { + # not due if Posting-Freqency is "none" or never + if ($PostingFrequency =~ /none|never/) { print "... is disabled.\n" if $Config{'verbose'} or $Config{'debug'}; return ''; }