Skip to content

Commit

Permalink
Item12130: Respect EnableSMIME in the checkers (otherwiki doesn't hav…
Browse files Browse the repository at this point in the history
…e it) - noticed by George (thanks). Add one for key password.

git-svn-id: http://svn.foswiki.org/trunk@15556 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Oct 10, 2012
1 parent 2f27412 commit 1b29788
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 4 deletions.
Expand Up @@ -10,10 +10,7 @@ use base 'Foswiki::Configure::Checkers::Certificate::EmailChecker';
sub check {
my $this = shift;

return ''
unless ( defined $Foswiki::cfg{SmimeCertificateFile}
&& length $Foswiki::cfg{SmimeCertificateFile} );

return '' unless ( $Foswiki::cfg{Email}{EnableSMIME} );
return $this->SUPER::check(@_);
}
1;
Expand Down
1 change: 1 addition & 0 deletions core/lib/Foswiki/Configure/Checkers/Email/SmimeKeyFile.pm
Expand Up @@ -10,6 +10,7 @@ use base 'Foswiki::Configure::Checkers::Certificate::KeyChecker';
sub check {
my $this = shift;

return '' unless ( $Foswiki::cfg{Email}{EnableSMIME} );
return $this->SUPER::check( @_, '{Email}{SmimeKeyPassword}' );
}

Expand Down
62 changes: 62 additions & 0 deletions core/lib/Foswiki/Configure/Checkers/Email/SmimeKeyPassword.pm
@@ -0,0 +1,62 @@
# See bottom of file for license and copyright information

package Foswiki::Configure::Checkers::Email::SmimeKeyPassword;

use strict;
use warnings;

use base 'Foswiki::Configure::Checker';

sub check {
my $this = shift;
my $valobj = shift;

my $value = $Foswiki::cfg{SmimeKeyPassword};

# Expand any references to other variables

Foswiki::Configure::Load::expandValue($value);

# Unused passwords should not be hanging around.

unless ( $Foswiki::cfg{Email}{EnableSMIME} ) {
return $this->WARN(
"Unused password field is not empty, please clear it")
if ( defined $value && length $value );
return '';
}

# I'm not going to nag about length or complexity, though I could..

return '';
}

1;

__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2008-2010 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
Additional copyrights apply to some or all of the code in this
file as follows:
Copyright (C) 2000-2006 TWiki Contributors. All Rights Reserved.
TWiki Contributors are listed in the AUTHORS file in the root
of this distribution. NOTE: Please extend that file, not this notice.
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 the Free Software Foundation; either version 2
of the License, or (at your option) any later version. For
more details read LICENSE in the root of this distribution.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
As per the GPL, removal of this notice is prohibited.

0 comments on commit 1b29788

Please sign in to comment.