about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-08-31 04:41:31 +0000
committerEric Wong <e@80x24.org>2020-09-01 00:19:02 +0000
commit47b7047874ed7d6f39b9758134f112cdc46489cf (patch)
tree85fc40fe2b2a4a3e3a0ec8be62e950fdca9ad99f
parentbb8aaee10d771f7e1461efd8ec86269215787e52 (diff)
downloadpublic-inbox-47b7047874ed7d6f39b9758134f112cdc46489cf.tar.gz
Declare 5.10.1 to avoid potential compatibility problems with
Perl 7/8 down the line.  We'll rely on the command-line to set
or drop warnings during development, at least.
-rw-r--r--lib/PublicInbox/WatchMaildir.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/WatchMaildir.pm b/lib/PublicInbox/WatchMaildir.pm
index 5176ef69..1c7ac6c0 100644
--- a/lib/PublicInbox/WatchMaildir.pm
+++ b/lib/PublicInbox/WatchMaildir.pm
@@ -5,7 +5,7 @@
 #        http://wiki2.dovecot.org/MailboxFormat/Maildir
 package PublicInbox::WatchMaildir;
 use strict;
-use warnings;
+use v5.10.1;
 use PublicInbox::Eml;
 use PublicInbox::InboxWritable qw(eml_from_path warn_ignore_cb);
 use PublicInbox::Filter::Base qw(REJECT);