9 lines
281 B
Plaintext
9 lines
281 B
Plaintext
{
|
|
if (( $qpsmtpd{DMARCReporting} || 'disabled' ) =~ m/^1|on|enabled|yes$/){
|
|
$OUT .= '15 0 * * * qpsmtpd /usr/bin/dmarc_send_reports 2>&1 | grep -v "SSL connection failed" | logger -t "DMARC Reporting"' . "\n";
|
|
}
|
|
else{
|
|
$OUT .= "# DMARC Reporting is disabled\n";
|
|
}
|
|
}
|