package scrubber1; require Exporter; use config1; our @ISA = qw(Exporter); our @EXPORT = qw( get_ftp_object get_html_filenames kill_files ); sub get_ftp_object { use strict; use Net::FTP; use 5.010; my $sub_hash = "my_ftp"; my $domain = $config{$sub_hash}->{'domain'}; my $username = $config{$sub_hash}->{'username'}; my $password = $config{$sub_hash}->{'password'}; #dial up the server my $ftp = Net::FTP->new( $domain, Debug => 1, Passive => 1 ) or die "Can't connect: $!\n"; $ftp->login( $username, $password ) or die "Couldn't login\n"; return $ftp; } #### package config1; use Exporter qw(import); our @EXPORT = qw(%config); our %config = ( my_ftp => { domain => 'redacted', username => 'redacted', password => 'redacted', }, ); 1;