Darn formatting! I can't read it myself. Grrrrr! Attached as a text
file. Hope attachments are allowed.
Mick.
#!/usr/bin/perl
# sasluser.p
# PERL Script abused by Snakebyte
# version 0.01
$action="action=DUNNO\n\n";
$sender="";
$sasl_username="\n";
#
# SASL users that are allowed to play at God ;
# Note : you must add a backslash (escape character) before '@' else PERL will
treat it as an array
$allowed[0]="address1\@mydomain.sg";
$allowed[1]="address2\@mydomain.sg";
# Read data passed in by Postfix and grab sender and sasl_username
$a="";
while ($b ne "\n")
{
$b=(<STDIN>);
$a.=$b;
if ($b =~ /=/)
{
my ($key, $value) =split (/=/, $b, 2);
if ($key eq "sender") { $sender=$value;}
if ($key eq "sasl_username") { $sasl_username=$value;}
}
}
# --------------
# Disreguard non SASL authenticated and exit the script.
# If you don't do this, incoming mail will be rejected as sasl_username won't
equal sender
if ($sasl_username eq "\n")
{
print"action=DUNNO\n\n";
exit(0);
}
# ---------------
# The following line will reject in a similar way that
'reject_authenticated_sender_login_mismatch' would do.
# You can change the text following REJECT to your own custom message
if($sasl_username ne $sender) { $action="action=REJECT Not authorised to send
from this address"; }
# remove linefeed from sasl_username
chomp($sasl_username);
# The following lines loop through each entry of the $allowed array.
# If one of the entries equals the sasl_usename, it will overwrite $action to
"action=DUNNO"
foreach $loop (@allowed)
{
if($loop eq $sasl_username) { $action="action=DUNNO"; }
}
# -----
# That's it, now print $action followed by a double line feeds '\n\n'
# That's it, now print $action followed by a double line feeds '\n\n'
print "$action\n\n";
#print "action=DUNNO\n\n";
# If you un-comment the above line, and comment '#'the one above, this script
will not reject anything.
# Ignore the rest but keep exit(0), also.......
# If you want to see what other variables the script is receiving from Postfix,
you can log them
# Create a directory of your choice. eg /var/worldwrite. From PuTTY root
privilage command line type
# mkdir /var/worldwrite
# chown nobody:nogroup /var/worldwrite
# chmod 774 /var/worldwrite/
$file="/var/worldwrite/postreport.txt";
my($key, $time_stamp, $now);
$key = lc @_{"client_address"}."/".$attr{"sender"}."/".$attr{"recipient"};
open(my $fh, '>>', $file) or die "X";
print $fh "Start:\n$a\n$action\nEnd\n";
close $fh;
# If all is working okay, I would delete from print "$action\n\n"; to here,
Then delete the worldwrite directory.
# You will only end up with a bloated file, and a directory writable by nobody.
Not good.
exit(0);