Possible Duplicate:
Separating configuration data and script logic in Perl scripts
StevedoreUtil.pm sets a value used for email addresses:
my $STEVE_SITE_EMAIL_DOMAIN = "mydomain.net";
Unfortunately, this should not be hard coded in the Perl script. Is there a standard way to set a value like this once when the application is first installed?
See Stevedore Project on launchpad.net and the Stevedore Web Site for the context of StevedoreUtil.pm.