Jesse Norell wrote:
> One other thing I just thought of - that patch
doesn't honor the old
> regenerate_key setting, and it needs to. Just change:
>
> my $literal_key = $options->;
>
> to something like:
>
> my $literal_key = $options-> ||
($options->
> && !$options->);
Close--looks like you just forgot the 'exists' in there
my $literal_key = $options-> || (exists
$options-> &&
!$options->);
--
Robert LeBlanc <rjl renaissoft.com>
Renaissoft, Inc.
Maia Mailguard <http://www.maiamail
guard.com/>
_______________________________________________
Maia-users mailing list
Maia-users renaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users
|