Hello,
I read tens of topics about people saying "you need to update your exim.pl, search in the forum", but i never found a topic about how to update it. So here is my exim conf:
And here is exim.pl:
What should i do?
I read tens of topics about people saying "you need to update your exim.pl, search in the forum", but i never found a topic about how to update it. So here is my exim conf:
Code:
SpamBlockerTechnology* powered exim.conf, Version 4.4.6
# Dec 5, 2015
# Exim configuration file for DirectAdmin
# Requires exim.pl as distributed by DirectAdmin here:
# http://files.directadmin.com/services/exim.pl version 21 or higher
# ClamAV optional
# SpamAssassin optional
# Dovecot/IMAP Mandatory
# *SpamBlockerTechnology is a Trademark of NoBaloney Internet Services:
# http://www.nobaloney.net
And here is exim.pl:
Code:
#!/usr/bin/perl
#VERSION=16
sub get_domain_owner
{
my ($domain) = @_;
my $username="";
open(DOMAINOWNERS,"/etc/virtual/domainowners");
while (<DOMAINOWNERS>)
{
$_ =~ s/\n//;
my ($dmn,$usr) = split(/: /, $_);
if ($dmn eq $domain)
{
close(DOMAINOWNERS);
return $usr;
}
}
close(DOMAINOWNERS);
return -1;
}
# hit_limit_user
# checks to see if a username has hit the send limit.
# returns:
What should i do?