I've got
Code: Select all
$Self->{'SendmailModule::Port'} = '25';
in my Config.pm. When I go into the admin sysconfig interface, it shows the setting disabled. If I change the port to anything else in Config.pm, for instance
Code: Select all
$Self->{'SendmailModule::Port'} = '465';
or
Code: Select all
$Self->{'SendmailModule::Port'} = 'PotatoSalad';
the setting shows up in the admin sysconfig interface as enabled with the value specified. But when it's port 25 that's specified, I guess the interface is just seeing the default value and marking the setting disabled, despite the fact that it's explicitly defined in Config.pm.
Is there something else I have to add to tell it that I want the setting enabled even when I've specified port 25?