I am creating a script for checking mail id inbox exist or not (mail probing), i am using Mail::CheckUser module for this.but the problem is when i continuously run the script, there may be a chance to block my ip , so i would like to use change my ip simultaneously. i have server with 10 ips attached , i would like to use this ips randomly,please give me any idea
code i am using is given below
use Mail::CheckUser;
use Data::Dumper;
my $res = Mail::CheckUser::check_email('xxxxx@example.com');
print $res."\n\n\n";
my $res1 = Mail::CheckUser::last_check();
print Dumper($res1)."\n\n";
thanks for any help