Autor: Roman Hlynovski Data: Dla: exim-users Temat: Fwd: Re: [Exim] (no subject)
===8<==============Original message text===============
On Tue, 26 Feb 2002, Roman Hlynovski wrote:
> the script is ok and doesn't produce any errors at all during
> execution from shell.
i'm quite confident you misunderstood how to write a perl routine. how
does it look like ?
#!/usr/bin/perl
sub main(@_);
sub checkexist;
.... other subs...
# start of main part
main(@ARGV);
# end of main part
sub main(@_) {
...
some code, that checks user existance
...
}
etc...
as i understand i should call perl sub in exim config?!