emailrelay/bin/emailrelay-check-ipaddress.js
Graeme Walker 2f62c8361e v2.3.1
2022-07-14 12:00:00 +00:00

50 lines
1.5 KiB
JavaScript
Executable File

//
// Copyright (C) 2001-2022 Graeme Walker <graeme_walker@users.sourceforge.net>
//
// Copying and distribution of this file, with or without modification,
// are permitted in any medium without royalty provided the copyright
// notice and this notice are preserved. This file is offered as-is,
// without any warranty.
// ===
//
// emailrelay-check-ipaddress.js
//
// An example "--filter" script for Windows that verifies the submitting
// client's IP address. The IP address is read from the envelope file.
// Invalid IP addresses are rejected by deleting the two message files and
// exiting with the special exit code of 100. Note that this checks the
// IP address very late in the submission process; a firewall or DNSBL check
// might work better.
//
try
{
var content = WScript.Arguments(0) ;
var envelope = WScript.Arguments(1) ;
var fs = WScript.CreateObject( "Scripting.FileSystemObject" ) ;
var ts = fs.OpenTextFile( envelope , 1 , false ) ;
var txt = ts.ReadAll() ;
ts.Close() ;
var re = new RegExp( "X-MailRelay-Client: (\\S*)" , "m" ) ;
var ip = txt.match(re)[1] ;
var ok = ip === "1.1.1.1" ; /// edit here
if( ok )
{
WScript.Quit( 0 ) ;
}
else
{
WScript.StdOut.WriteLine( "<<not allowed>>" ) ;
fs.DeleteFile( envelope ) ;
fs.DeleteFile( content ) ;
WScript.Quit( 100 ) ;
}
}
catch( e )
{
// report errors using the special <<...>> markers
WScript.StdOut.WriteLine( "<<error>>" ) ;
WScript.StdOut.WriteLine( "<<" + e + ">>" ) ;
WScript.Quit( 1 ) ;
}