diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2015-01-15 14:18:45 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2015-01-19 16:35:37 +0000 |
commit | 96dd07e7c1dab2c8f9250af435caad2c2818b5a2 (patch) | |
tree | 26bfb3063a46929d9d6ede8a737c1b2f7009b9fd /bin/handlemail | |
parent | b203e7907fa4808966521da8e18d9796e28e9b9a (diff) |
Use env in shebang lines, and remove unneeded ones
Diffstat (limited to 'bin/handlemail')
-rwxr-xr-x | bin/handlemail | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/handlemail b/bin/handlemail index 8bc016241..5d4ac753c 100755 --- a/bin/handlemail +++ b/bin/handlemail @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # handlemail: # Handle an individual incoming mail message. @@ -14,6 +14,7 @@ my $rcsid = ''; $rcsid .= '$Id: handlemail,v 1.2 2009-02-11 11:04:48 matthew Exp $'; use strict; +use warnings; require 5.8.0; # Horrible boilerplate to set up appropriate library paths. |