Hi,
in SOA save script of BIND 8 module,
if I write an e-mail in name.surname@domain.com form
the script saves this information as
"name\.surname.domain.com" (with '\"' character).
With bind 9.1.3 this causes an error.
I resolve this problem changing save_soa.cgi script:
if( $in{'email'} =~ /\@/ ) {
$in{'email'} = &email_to_dotted($in{'email'});
$in{'email'} =~ s/\"//g; #<-- added row
}
Sorry for my terrible english, BYE
Andrea Frigido