89 lines
2.3 KiB
Perl
Executable file
89 lines
2.3 KiB
Perl
Executable file
#!/data/wre/prereqs/bin/perl
|
|
|
|
BEGIN {
|
|
unshift @INC, qw(
|
|
/data/custom/webgui_newsletter/lib
|
|
/data/WebGUI/lib
|
|
);
|
|
}
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
#use Mail::DeliveryStatus::BounceParser;
|
|
#use WebGUI::Mailing::Email;
|
|
use WebGUI::MailCommand;
|
|
use List::MoreUtils qw{ any };
|
|
use WebGUI::Config;
|
|
use Getopt::Long;
|
|
|
|
use 5.010;
|
|
|
|
my $NO_SUCH_USER = 67;
|
|
my $webguiRoot = '/data/WebGUI';
|
|
|
|
#---------------------------------------------------------------
|
|
# Startup
|
|
{
|
|
my ( $configFile, $command, $id ) = getCredentials();
|
|
|
|
if ( WebGUI::MailCommand::isValidCommand( $command ) ) {
|
|
my $session = openSession( $webguiRoot, $configFile );
|
|
|
|
WebGUI::MailCommand::processCommand( $session, $command, $id );
|
|
|
|
closeSession( $session );
|
|
}
|
|
else {
|
|
# TODO: log something
|
|
}
|
|
|
|
exit(0);
|
|
}
|
|
|
|
#-----------------------------------------------------------------------------
|
|
sub getCredentials {
|
|
my ( $domain, $user );
|
|
|
|
GetOptions(
|
|
'domain=s' => \$domain,
|
|
'user=s' => \$user,
|
|
);
|
|
die "--domain parameter is required" unless $domain;
|
|
die "--user paramere is required" unless $user;
|
|
|
|
my $dispatch = WebGUI::Config->new( $webguiRoot, 'mailing_dispatch.config' )
|
|
|| die "Cannot open $webguiRoot/etc/mailing_dispatch.config";
|
|
|
|
my $configFile = $dispatch->get( $domain )
|
|
|| die "Received mail for domain [$domain] which is not configured!";
|
|
|
|
# Format is mailId-command
|
|
my ( $id, $command ) = $user =~ m{ ^ (.+) - ([^-]+) $ }ix;
|
|
|
|
die "Received mail addressed to [$user\@$domain] which contains no id" unless $id;
|
|
die "Received mail addressed to [$user\@$domain] which contains no command" unless $command;
|
|
|
|
return ( $configFile, $command, $id );
|
|
}
|
|
|
|
#-----------------------------------------------------------------------------
|
|
sub openSession {
|
|
my $webguiRoot = shift;
|
|
my $configFile = shift;
|
|
|
|
# Require WebGUI:Session rather than use it to save compilation of it when invalid commands are passed.
|
|
require WebGUI::Session;
|
|
|
|
my $session = WebGUI::Session->open( $webguiRoot, $configFile );
|
|
|
|
return $session;
|
|
}
|
|
|
|
#-----------------------------------------------------------------------------
|
|
sub closeSession {
|
|
my $session = shift;
|
|
|
|
$session->close;
|
|
}
|
|
|