Autor: John Jetmore Datum: To: Mike Richardson CC: Everton da Silva Marques, exim-users Betreff: Re: [Exim] Forwarding SMTP AUTH (RFC 2554)
On Mon, 5 May 2003, Mike Richardson wrote:
> The exim authenticator's server condition should be able to check the output
> of an external command (I'm sure someone will correct me if it can't) so
> write a perl script which runs against the SMTP AUTH system sending commands
> (based on input from the exim process) and parsing the output. Shouldn't be
> too difficult :-)
I'm sure anyone on this list could have written this script, but I love
abusing technology so the idea of using an SMTP server as some sort of
radius-replacement amused me enough that I had to play w/ it. Since I
wrote it might as well share it:
<script>
#!/usr/bin/perl
use strict;
use Net::SMTP;
my $server = shift || exit 1;
my $user = shift || exit 2;
my $pass = shift || exit 3;