Browse Source

Merge pull request #361 from ymarkus/master

fix vacation.pl resolver
pull/12/head
David Goodwin 6 years ago
committed by GitHub
parent
commit
62f2bd32ef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      VIRTUAL_VACATION/vacation.pl

2
VIRTUAL_VACATION/vacation.pl

@ -454,7 +454,7 @@ sub send_vacation_email {
my $to = $orig_from;
# part of the username in the email && part of the domain in the email
my ($email_username_part, $email_domain_part) = split(/@/, $orig_from);
my ($email_username_part, $email_domain_part) = split(/@/, $email);
my $resolver = Net::DNS::Resolver->new;
my @mx = mx($resolver, $email_domain_part);

Loading…
Cancel
Save