$title = "Download";
$version = "v0.1.1";
$editor = "reniar";
include "include/header.php3";
?>
Choose your AMaViS branch |
NOTE: Currently only amavisd-new is actively maintained and supported!
AMaViS 0.3.x is a rewrite of AMaViS, A Mail Virus Scanner, in perl, which includes some new features and performance improvements. You should be familiar with perl or configuration of your MTA.
Note that the installation is different than the original package, and the integration into your MTA can be different, so please read the README and INSTALL files very carefully.
| filename | sig | size | last modified | MD5 checksum |
$archives=array();
$path=dirname($SCRIPT_FILENAME)."/dist/perl";
$hd=dir($path);
while($filename = $hd->read()) {
$s=strtolower($filename);
if ( strstr($s,".tar.gz") && strstr($s,"amavis-0.3") && !strstr($s, ".asc") ) {
$lastchanged=filemtime($path."/".$filename);
$archives[$filename] = $lastchanged;
}
}
arsort($archives);
for(reset($archives); $key=key($archives); next($archives)) {
$fn=$key;
$ffn=$path."/".$fn;
$fs=filesize($ffn);
$md5sum=substr(exec("/usr/bin/md5sum -b $ffn"),0,32);
print("\n");
print(" | $fn | .sig | $fs | ".strftime("%x (%X)",$archives[$key])." | $md5sum | \n");
print("
");
}
$hd->close();
?>
User contributed software can be found in the contrib directory. AMaViS 0.3.12 is the successor to amavis-perl-11
amavisd is the daemonized version of amavis
Note that the installation is different than the original package, and the integration into your MTA can be different, so please read the README and INSTALL files very carefully.
| filename | sig | size | last modified | MD5 checksum |
$archives=array();
$path=dirname($SCRIPT_FILENAME)."/dist/perl";
$hd=dir($path);
while($filename = $hd->read()) {
$s=strtolower($filename);
if ( strstr($s,".tar.gz") && strstr($s,"amavisd") && !strstr($s, ".asc") ) {
$lastchanged=filemtime($path."/".$filename);
$archives[$filename] = $lastchanged;
}
}
arsort($archives);
for(reset($archives); $key=key($archives); next($archives)) {
$fn=$key;
$ffn=$path."/".$fn;
$fs=filesize($ffn);
$md5sum=substr(exec("/usr/bin/md5sum -b $ffn"),0,32);
print("\n");
print(" | $fn | .sig | $fs | ".strftime("%x (%X)",$archives[$key])." | $md5sum | \n");
print("
");
}
$hd->close();
?>
User contributed software can be found in the contrib directory
amavisd-new is a high-performance interface between message transfer agent (MTA) and one or more content checkers: virus scanners, and/or SpamAssasin.
Please check the amavisd-new homepage for details and download information
amavis-ng is a modular re-write of amavis-perl/amavisd.
This project is dead, therefore no package available. Source can be grabbed from CVS, though.
Old Stable Release (AMaViS 0.2.x):
The old, shell-script version. Discontinued. So, don't use it
| filename | size | last modified | MD5 checksum |
$archives=array();
$path=dirname($SCRIPT_FILENAME)."/dist";
$hd=dir($path);
while($filename = $hd->read()) {
$s=strtolower($filename);
if(strstr($s,".tar.gz") && strstr($s,"amavis-")) {
$lastchanged=filemtime($path."/".$filename);
$archives[$filename] = $lastchanged;
}
}
arsort($archives);
for(reset($archives); $key=key($archives); next($archives)) {
$fn=$key;
$ffn=$path."/".$fn;
$fs=filesize($ffn);
$md5sum=substr(exec("/usr/bin/md5sum -b $ffn"),0,32);
print("\n");
print(" | $fn | $fs | ".strftime("%x (%X)",$archives[$key])." | $md5sum | \n");
print("
");
}
$hd->close();
?>
Releases From The Attic (obsolete!):
| filename | size | last modified | MD5 checksum |
$archives=array();
$path=dirname($SCRIPT_FILENAME)."/dist/old";
$hd=dir($path);
while($filename = $hd->read()) {
$s=strtolower($filename);
if(strstr($s,".tar.gz") && strstr($s,"amavis")) {
$lastchanged=filemtime($path."/".$filename);
$archives[$filename] = $lastchanged;
}
}
arsort($archives);
for(reset($archives); $key=key($archives); next($archives)) {
$fn=$key;
$ffn=$path."/".$fn;
$fs=filesize($ffn);
$md5sum=substr(exec("/usr/bin/md5sum -b $ffn"),0,32);
print("\n");
print(" | $fn | $fs | ".strftime("%x (%X)",$archives[$key])." | $md5sum | \n");
print("
");
}
$hd->close();
?>
include "include/footer.php3";
?>