From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH 1/4] drop Amavis add-on Date: Fri, 23 Oct 2020 21:26:43 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8471520890015501456==" List-Id: --===============8471520890015501456== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This package has not been maintained well and is thereof outdated. At the time of writing, we neither (a) have a maintainer for this nor (b) believe it is wise to run a full-featured content scanner on a firewall for security purposes. (We can make do with Postfix, as it is known for being a very robust MTA and providess less attack surface than something actually inspecting transferred messages.) Thereof, this patch drops the Amavis add-on. In case it is desired in future versions of IPFire, it can be easily reverted, restoring the functionality and behaviour before. Signed-off-by: Peter M=C3=BCller --- config/amavisd/amavisd.conf | 438 ------------------------------ config/rootfiles/packages/amavisd | 7 - lfs/amavisd | 94 ------- src/initscripts/packages/amavisd | 45 --- 4 files changed, 584 deletions(-) delete mode 100644 config/amavisd/amavisd.conf delete mode 100644 config/rootfiles/packages/amavisd delete mode 100644 lfs/amavisd delete mode 100644 src/initscripts/packages/amavisd diff --git a/config/amavisd/amavisd.conf b/config/amavisd/amavisd.conf deleted file mode 100644 index 25b4d2682..000000000 --- a/config/amavisd/amavisd.conf +++ /dev/null @@ -1,438 +0,0 @@ -use strict; - -# a minimalistic configuration file for amavisd-new with all necessary setti= ngs -# -# see amavisd.conf-default for a list of all variables with their defaults; -# see amavisd.conf-sample for a traditional-style commented file; -# for more details see documentation in INSTALL, README_FILES/* -# and at http://www.ijs.si/software/amavisd/amavisd-new-docs.html - - -# COMMONLY ADJUSTED SETTINGS: - -# @bypass_virus_checks_maps =3D (1); # controls running of anti-virus code -# @bypass_spam_checks_maps =3D (1); # controls running of anti-spam code -# $bypass_decode_parts =3D 1; # controls running of decoders&dearchi= vers - -$max_servers =3D 2; # num of pre-forked children (2..15 is common= ), -m -$daemon_user =3D 'amavis'; # (no default; customary: vscan or amavis), = -u -$daemon_group =3D 'amavis'; # (no default; customary: vscan or amavis), = -g - -$mydomain =3D 'ipfire.org'; # a convenient default for other settings - -# $MYHOME =3D '/var/amavis'; # a convenient default for other settings, -H -$TEMPBASE =3D "$MYHOME/tmp"; # working directory, needs to exist, -T -$ENV{TMPDIR} =3D $TEMPBASE; # environment variable TMPDIR, used by SA, et= c. -$QUARANTINEDIR =3D '/var/virusmails'; # -Q -# $quarantine_subdir_levels =3D 1; # add level of subdirs to disperse quara= ntine - -# $daemon_chroot_dir =3D $MYHOME; # chroot directory or undef, -R - -# $db_home =3D "$MYHOME/db"; # dir for bdb nanny/cache/snmp databases= , -D -# $helpers_home =3D "$MYHOME/var"; # working directory for SpamAssassin, -S -# $lock_file =3D "$MYHOME/var/amavisd.lock"; # -L -# $pid_file =3D "$MYHOME/var/amavisd.pid"; # -P -#NOTE: create directories $MYHOME/tmp, $MYHOME/var, $MYHOME/db manually - -$log_level =3D 2; # verbosity 0..5, -d -$log_recip_templ =3D undef; # disable by-recipient level-0 log entries -$DO_SYSLOG =3D 1; # log via syslogd (preferred) -$syslog_facility =3D 'mail'; # Syslog facility as a string - # e.g.: mail, daemon, user, local0, ... local7 -$syslog_priority =3D 'debug'; # Syslog base (minimal) priority as a string, - # choose from: emerg, alert, crit, err, warning, notice, info, de= bug - -$enable_db =3D 1; # enable use of BerkeleyDB/libdb (SNMP and na= nny) -$enable_global_cache =3D 1; # enable use of libdb-based cache if $enable_= db=3D1 -$nanny_details_level =3D 2; # nanny verbosity: 1: traditional, 2: detailed - -(a)local_domains_maps =3D ( [".$mydomain"] ); # list of all local domains - -(a)mynetworks =3D qw( 127.0.0.0/8 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 ); - -$unix_socketname =3D "$MYHOME/amavisd.sock"; # amavisd-release or amavis-mi= lter - # option(s) -p overrides $inet_socket_port and $unix_socketna= me - -$inet_socket_port =3D 10024; # listen on this local TCP port(s) -# $inet_socket_port =3D [10024,10026]; # listen on multiple TCP ports - -$policy_bank{'MYNETS'} =3D { # mail originating from @mynetworks - originating =3D> 1, # is true in MYNETS by default, but let's make it exp= licit - os_fingerprint_method =3D> undef, # don't query p0f for internal clients -}; - -# it is up to MTA to re-route mail from authenticated roaming users or -# from internal hosts to a dedicated TCP port (such as 10026) for filtering -$interface_policy{'10026'} =3D 'ORIGINATING'; - -$policy_bank{'ORIGINATING'} =3D { # mail supposedly originating from our us= ers - originating =3D> 1, # declare that mail was submitted by our smtp client - allow_disclaimers =3D> 1, # enables disclaimer insertion if available - # notify administrator of locally originating malware - virus_admin_maps =3D> ["virusalert\@$mydomain"], - spam_admin_maps =3D> ["spamalert\@$mydomain"], - warnbadhsender =3D> 1, - # forward to a smtpd service providing DKIM signing service - forward_method =3D> 'smtp:[127.0.0.1]:10027', - # force MTA conversion to 7-bit (e.g. before DKIM signing) - smtpd_discard_ehlo_keywords =3D> ['8BITMIME'], - bypass_banned_checks_maps =3D> [1], # allow sending any file names and ty= pes - terminate_dsn_on_notify_success =3D> 0, # don't remove NOTIFY=3DSUCCESS o= ption=20 -}; - -$interface_policy{'SOCK'} =3D 'AM.PDP-SOCK'; # only applies with $unix_socke= tname - -# Use with amavis-release over a socket or with Petr Rehor's amavis-milter.c -# (with amavis-milter.c from this package or old amavis.c client use 'AM.CL'= ): -$policy_bank{'AM.PDP-SOCK'} =3D { - protocol =3D> 'AM.PDP', - auth_required_release =3D> 0, # do not require secret_id for amavisd-rele= ase -}; - -$sa_tag_level_deflt =3D 2.0; # add spam info headers if at, or above that = level -$sa_tag2_level_deflt =3D 6.2; # add 'spam detected' headers at that level -$sa_kill_level_deflt =3D 6.9; # triggers spam evasive actions (e.g. blocks = mail) -$sa_dsn_cutoff_level =3D 10; # spam level beyond which a DSN is not sent -# $sa_quarantine_cutoff_level =3D 25; # spam level beyond which quarantine i= s off -$penpals_bonus_score =3D 8; # (no effect without a @storage_sql_dsn datab= ase) -$penpals_threshold_high =3D $sa_kill_level_deflt; # don't waste time on hi = spam - -$sa_mail_body_size_limit =3D 400*1024; # don't waste time on SA if mail is l= arger -$sa_local_tests_only =3D 0; # only tests which do not require internet ac= cess? - -$virus_admin =3D "virusalert\@$mydomain"; # notifications rec= ip. - -$mailfrom_notify_admin =3D "virusalert\@$mydomain"; # notifications sen= der -$mailfrom_notify_recip =3D "virusalert\@$mydomain"; # notifications sen= der -$mailfrom_notify_spamadmin =3D "spam.police\@$mydomain"; # notifications sen= der -$mailfrom_to_quarantine =3D ''; # null return path; uses original sender if = undef - -(a)addr_extension_virus_maps =3D ('virus'); -(a)addr_extension_banned_maps =3D ('banned'); -(a)addr_extension_spam_maps =3D ('spam'); -(a)addr_extension_bad_header_maps =3D ('badh'); -# $recipient_delimiter =3D '+'; # undef disables address extensions altoget= her -# when enabling addr extensions do also Postfix/main.cf: recipient_delimiter= =3D+ - -$path =3D '/usr/local/sbin:/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/bin'; -# $dspam =3D 'dspam'; - -$MAXLEVELS =3D 14; -$MAXFILES =3D 1500; -$MIN_EXPANSION_QUOTA =3D 100*1024; # bytes (default undef, not enforc= ed) -$MAX_EXPANSION_QUOTA =3D 300*1024*1024; # bytes (default undef, not enforc= ed) - -$sa_spam_subject_tag =3D '***SPAM*** '; -$defang_virus =3D 1; # MIME-wrap passed infected mail -$defang_banned =3D 1; # MIME-wrap passed mail containing banned name -# for defanging bad headers only turn on certain minor contents categories: -$defang_by_ccat{+CC_BADH.",3"} =3D 1; # NUL or CR character in header -$defang_by_ccat{+CC_BADH.",5"} =3D 1; # header line longer than 998 charact= ers -$defang_by_ccat{+CC_BADH.",6"} =3D 1; # header field syntax error - - -# OTHER MORE COMMON SETTINGS (defaults may suffice): - -$myhostname =3D 'ipfire.localdomain'; # must be a fully-qualified domain na= me! - -# $notify_method =3D 'smtp:[127.0.0.1]:10025'; -# $forward_method =3D 'smtp:[127.0.0.1]:10025'; # set to undef with milter! - -$final_virus_destiny =3D D_DISCARD; -$final_banned_destiny =3D D_BOUNCE; -$final_spam_destiny =3D D_DISCARD; -$final_bad_header_destiny =3D D_PASS; - - -# Notify virus sender? Blo=C3=9F nicht! -$warnvirussender =3D 0;=20 -# Notify spam sender? Blo=C3=9F nicht! -$warnspamsender =3D 0; =20 -# Notify sender of banned files? Kann man machen. -$warnbannedsender =3D 1; -# Notify sender of syntactically invalid header containing non-ASCII charact= ers? Blo=C3=9F nicht! -#$warnbadsender =3D 0; -# Notify virus (or banned files) RECIPIENT? Wie man m=C3=B6chte, ich finde e= s sinnvoll. -$warnvirusrecip =3D 1; -$warnbannedrecip =3D 1; -$warnbadhrecip =3D 1; - -# SOME OTHER VARIABLES WORTH CONSIDERING (see amavisd.conf-default for all) - -# $warnbadhsender, -# $warnvirusrecip, $warnbannedrecip, $warnbadhrecip, (or @warn*recip_maps) -# -# @bypass_virus_checks_maps, @bypass_spam_checks_maps, -# @bypass_banned_checks_maps, @bypass_header_checks_maps, -# -# @virus_lovers_maps, @spam_lovers_maps, -# @banned_files_lovers_maps, @bad_header_lovers_maps, -# -# @blacklist_sender_maps, @score_sender_maps, -# -# $clean_quarantine_method, $virus_quarantine_to, $banned_quarantine_to, -# $bad_header_quarantine_to, $spam_quarantine_to, -# -# $defang_bad_header, $defang_undecipherable, $defang_spam - - -# REMAINING IMPORTANT VARIABLES ARE LISTED HERE BECAUSE OF LONGER ASSIGNMENTS - -(a)keep_decoded_original_maps =3D (new_RE( -# qr'^MAIL$', # retain full original message for virus checking (can be sl= ow) - qr'^MAIL-UNDECIPHERABLE$', # recheck full mail if it contains undecipherab= les - qr'^(ASCII(?! cpio)|text|uuencoded|xxencoded|binhex)'i, -# qr'^Zip archive data', # don't trust Archive::Zip -)); - - -# for $banned_namepath_re (a new-style of banned table) see amavisd.conf-sam= ple - -$banned_filename_re =3D new_RE( - -### BLOCKED ANYWHERE -# qr'^UNDECIPHERABLE$', # is or contains any undecipherable components - qr'^\.(exe-ms|dll)$', # banned file(1) types, rudimentary -# qr'^\.(exe|lha|tnef|cab|dll)$', # banned file(1) types - -### BLOCK THE FOLLOWING, EXCEPT WITHIN UNIX ARCHIVES: -# [ qr'^\.(gz|bz2)$' =3D> 0 ], # allow any in gzip or bzip2 - [ qr'^\.(rpm|cpio|tar)$' =3D> 0 ], # allow any in Unix-type archives - - qr'.\.(pif|scr)$'i, # banned extensions - rudimentary -# qr'^\.zip$', # block zip type - -### BLOCK THE FOLLOWING, EXCEPT WITHIN ARCHIVES: -# [ qr'^\.(zip|rar|arc|arj|zoo)$'=3D> 0 ], # allow any within these archives - - qr'^application/x-msdownload$'i, # block these MIME types - qr'^application/x-msdos-program$'i, - qr'^application/hta$'i, - -# qr'^message/partial$'i, # rfc2046 MIME type -# qr'^message/external-body$'i, # rfc2046 MIME type - -# qr'^(application/x-msmetafile|image/x-wmf)$'i, # Windows Metafile MIME ty= pe -# qr'^\.wmf$', # Windows Metafile file(1) type - - # block certain double extensions in filenames - qr'\.[^./]*[A-Za-z][^./]*\.\s*(exe|vbs|pif|scr|bat|cmd|com|cpl|dll)[.\s]*$= 'i, - -# qr'\{[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}\}?'i, # Class ID CLSID, str= ict -# qr'\{[0-9a-z]{4,}(-[0-9a-z]{4,}){0,7}\}?'i, # Class ID extension CLSID, lo= ose - - qr'.\.(exe|vbs|pif|scr|cpl)$'i, # banned extension - basic -# qr'.\.(exe|vbs|pif|scr|cpl|bat|cmd|com)$'i, # banned extension - basic+cmd -# qr'.\.(ade|adp|app|bas|bat|chm|cmd|com|cpl|crt|emf|exe|fxp|grp|hlp|hta| -# inf|ins|isp|js|jse|lnk|mda|mdb|mde|mdw|mdt|mdz|msc|msi|msp|mst| -# ops|pcd|pif|prg|reg|scr|sct|shb|shs|vb|vbe|vbs| -# wmf|wsc|wsf|wsh)$'ix, # banned ext - long -# qr'.\.(ani|cur|ico)$'i, # banned cursors and icons filename -# qr'^\.ani$', # banned animated cursor file(1) t= ype - -# qr'.\.(mim|b64|bhx|hqx|xxe|uu|uue)$'i, # banned extension - WinZip vulner= ab. -); -# See http://support.microsoft.com/default.aspx?scid=3Dkb;EN-US;q262631 -# and http://www.cknow.com/vtutor/vtextensions.htm - - -# ENVELOPE SENDER SOFT-WHITELISTING / SOFT-BLACKLISTING - -(a)score_sender_maps =3D ({ # a by-recipient hash lookup table, - # results from all matching recipient tables are sum= med - -# ## per-recipient personal tables (NOTE: positive: black, negative: white) -# 'user1(a)example.com' =3D> [{'bla-mobile.press(a)example.com' =3D> 10.0}], -# 'user3(a)example.com' =3D> [{'.ebay.com' =3D> -3.0}], -# 'user4(a)example.com' =3D> [{'cleargreen(a)cleargreen.com' =3D> -7.0, -# '.cleargreen.com' =3D> -5.0}], - - ## site-wide opinions about senders (the '.' matches any recipient) - '.' =3D> [ # the _first_ matching sender determines the score boost - - new_RE( # regexp-type lookup table, just happens to be all soft-blacklist - [qr'^(bulkmail|offers|cheapbenefits|earnmoney|foryou)@'i =3D> 5.= 0], - [qr'^(greatcasino|investments|lose_weight_today|market\.alert)@'i=3D> 5.= 0], - [qr'^(money2you|MyGreenCard|new\.tld\.registry|opt-out|opt-in)@'i=3D> 5.= 0], - [qr'^(optin|saveonlsmoking2002k|specialoffer|specialoffers)@'i =3D> 5.= 0], - [qr'^(stockalert|stopsnoring|wantsome|workathome|yesitsfree)@'i =3D> 5.= 0], - [qr'^(your_friend|greatoffers)@'i =3D> 5.= 0], - [qr'^(inkjetplanet|marketopt|MakeMoney)\d*@'i =3D> 5.= 0], - ), - -# read_hash("/var/amavis/sender_scores_sitewide"), - - { # a hash-type lookup table (associative array) - 'nobody(a)cert.org' =3D> -3.0, - 'cert-advisory(a)us-cert.gov' =3D> -3.0, - 'owner-alert(a)iss.net' =3D> -3.0, - 'slashdot(a)slashdot.org' =3D> -3.0, - 'securityfocus.com' =3D> -3.0, - 'ntbugtraq(a)listserv.ntbugtraq.com' =3D> -3.0, - 'security-alerts(a)linuxsecurity.com' =3D> -3.0, - 'mailman-announce-admin(a)python.org' =3D> -3.0, - 'amavis-user-admin(a)lists.sourceforge.net'=3D> -3.0, - 'amavis-user-bounces(a)lists.sourceforge.net' =3D> -3.0, - 'spamassassin.apache.org' =3D> -3.0, - 'notification-return(a)lists.sophos.com' =3D> -3.0, - 'owner-postfix-users(a)postfix.org' =3D> -3.0, - 'owner-postfix-announce(a)postfix.org' =3D> -3.0, - 'owner-sendmail-announce(a)lists.sendmail.org' =3D> -3.0, - 'sendmail-announce-request(a)lists.sendmail.org' =3D> -3.0, - 'donotreply(a)sendmail.org' =3D> -3.0, - 'ca+envelope(a)sendmail.org' =3D> -3.0, - 'noreply(a)freshmeat.net' =3D> -3.0, - 'owner-technews(a)postel.acm.org' =3D> -3.0, - 'ietf-123-owner(a)loki.ietf.org' =3D> -3.0, - 'cvs-commits-list-admin(a)gnome.org' =3D> -3.0, - 'rt-users-admin(a)lists.fsck.com' =3D> -3.0, - 'clp-request(a)comp.nus.edu.sg' =3D> -3.0, - 'surveys-errors(a)lists.nua.ie' =3D> -3.0, - 'emailnews(a)genomeweb.com' =3D> -5.0, - 'yahoo-dev-null(a)yahoo-inc.com' =3D> -3.0, - 'returns.groups.yahoo.com' =3D> -3.0, - 'clusternews(a)linuxnetworx.com' =3D> -3.0, - lc('lvs-users-admin(a)LinuxVirtualServer.org') =3D> -3.0, - lc('owner-textbreakingnews(a)CNNIMAIL12.CNN.COM') =3D> -5.0, - - # soft-blacklisting (positive score) - 'sender(a)example.net' =3D> 3.0, - '.example.net' =3D> 1.0, - - }, - ], # end of site-wide tables -}); - - -(a)decoders =3D ( - ['mail', \&do_mime_decode], - ['asc', \&do_ascii], - ['uue', \&do_ascii], - ['hqx', \&do_ascii], - ['ync', \&do_ascii], - ['F', \&do_uncompress, ['unfreeze','freeze -d','melt','fcat'] ], - ['Z', \&do_uncompress, ['uncompress','gzip -d','zcat'] ], - ['gz', \&do_uncompress, 'gzip -d'], - ['gz', \&do_gunzip], - ['bz2', \&do_uncompress, 'bzip2 -d'], - ['lzo', \&do_uncompress, 'lzop -d'], - ['rpm', \&do_uncompress, ['rpm2cpio.pl','rpm2cpio'] ], - ['cpio', \&do_pax_cpio, ['pax','gcpio','cpio'] ], - ['tar', \&do_pax_cpio, ['pax','gcpio','cpio'] ], - ['deb', \&do_ar, 'ar'], -# ['a', \&do_ar, 'ar'], # unpacking .a seems an overkill - ['zip', \&do_unzip], - ['7z', \&do_7zip, ['7zr','7za','7z'] ], - ['rar', \&do_unrar, ['rar','unrar'] ], - ['arj', \&do_unarj, ['arj','unarj'] ], - ['arc', \&do_arc, ['nomarch','arc'] ], - ['zoo', \&do_zoo, ['zoo','unzoo'] ], - ['lha', \&do_lha, 'lha'], -# ['doc', \&do_ole, 'ripole'], - ['cab', \&do_cabextract, 'cabextract'], - ['tnef', \&do_tnef_ext, 'tnef'], - ['tnef', \&do_tnef], -# ['sit', \&do_unstuff, 'unstuff'], # broken/unsafe decoder - ['exe', \&do_executable, ['rar','unrar'], 'lha', ['arj','unarj'] ], -); - - -(a)av_scanners =3D ( - -# ### http://www.clamav.net/ - ['ClamAV-clamd', - \&ask_daemon, ["CONTSCAN {}\n", "/var/run/clamd"], - qr/\bOK$/, qr/\bFOUND$/, - qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ], -# # NOTE: run clamd under the same user as amavisd, or run it under its own -# # uid such as clamav, add user clamav to the amavis group, and then add -# # AllowSupplementaryGroups to clamd.conf; -# # NOTE: match socket name (LocalSocket) in clamav.conf to the socket name = in -# # this entry; when running chrooted one may prefer socket "$MYHOME/clamd= ". - -# ### http://www.f-prot.com/ -# ['FRISK F-Prot Daemon', -# \&ask_daemon, -# ["GET {}/*?-dumb%20-archive%20-packed HTTP/1.0\r\n\r\n", -# ['127.0.0.1:10200','127.0.0.1:10201','127.0.0.1:10202', -# '127.0.0.1:10203','127.0.0.1:10204'] ], -# qr/(?i)]*>clean<\/summary>/, -# qr/(?i)]*>infected<\/summary>/, -# qr/(?i)(.+)<\/name>/ ], - - ### http://www.kaspersky.com/ (kav4mailservers) - ['KasperskyLab AVP - aveclient', - ['/usr/local/kav/bin/aveclient','/usr/local/share/kav/bin/aveclient', - '/opt/kav/5.5/kav4mailservers/bin/aveclient','aveclient'], - '-p /var/run/aveserver -s {}/*', - [0,3,6,8], qr/\b(INFECTED|SUSPICION|SUSPICIOUS)\b/, - qr/(?:INFECTED|WARNING|SUSPICION|SUSPICIOUS) (.+)/, - ], - # NOTE: one may prefer [0],[2,3,4,5], depending on how suspicious, - # currupted or protected archives are to be handled - - ### http://www.avira.com/ - ### Avira AntiVir (formerly H+BEDV) or (old) CentralCommand Vexira Antivir= us - ['Avira AntiVir', ['antivir','vexira'], - '--allfiles -noboot -nombr -rs -s -z {}', [0], qr/ALERT:|VIRUS:/, - qr/(?x)^\s* (?: ALERT: \s* (?: \[ | [^']* ' ) | - (?i) VIRUS:\ .*?\ virus\ '?) ( [^\]\s']+ )/ ], - # NOTE: if you only have a demo version, remove -z and add 214, as in: - # '--allfiles -noboot -nombr -rs -s {}', [0,214], qr/ALERT:|VIRUS:/, - -# ### http://www.avast.com/ -# ['avast! Antivirus daemon', -# \&ask_daemon, # greets with 220, terminate with QUIT -# ["SCAN {}\015\012QUIT\015\012", '/var/run/avast4/mailscanner.sock'], -# qr/\t\[\+\]/, qr/\t\[L\]\t/, qr/\t\[L\]\t([^[ \t\015\012]+)/ ], - -# ### http://www.avast.com/ -# ['avast! Antivirus - Client/Server Version', 'avastlite', -# '-a /var/run/avast4/mailscanner.sock -n {}', [0], [1], -# qr/\t\[L\]\t([^[ \t\015\012]+)/ ], - - ### http://www.avast.com/ - ['avast! Antivirus', ['/usr/bin/avastcmd','avastcmd'], - '-a -i -n -t=3DA {}', [0], [1], qr/\binfected by:\s+([^ \t\n\[\]]+)/ ], - - ### http://www.bitdefender.com/ - ['BitDefender', 'bdc', - '--arc --mail {}', qr/^Infected files *:0+(?!\d)/, - qr/^(?:Infected files|Identified viruses|Suspect files) *:0*[1-9]/, - qr/(?:suspected|infected): (.*)(?:\033|$)/ ], - # consider also: --all --nowarn --alev=3D15 --flev=3D15. The --all argume= nt may - # not apply to your version of bdc, check documentation and see 'bdc --hel= p' - -); - - -(a)av_scanners_backup =3D ( - - ### http://www.clamav.net/ - backs up clamd or Mail::ClamAV - ['ClamAV-clamscan', 'clamscan', - "--stdout --no-summary -r --tempdir=3D$TEMPBASE {}", - [0], qr/:.*\sFOUND$/, qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ], - - ### http://www.f-prot.com/ - backs up F-Prot Daemon - ['FRISK F-Prot Antivirus', ['f-prot','f-prot.sh'], - '-dumb -archive -packed {}', [0,8], [3,6], # or: [0], [3,6,8], - qr/(?:Infection:|security risk named) (.+)|\s+contains\s+(.+)$/ ], - - ### http://www.kaspersky.com/ - ['Kaspersky Antivirus v5.5', - ['/opt/kaspersky/kav4fs/bin/kav4fs-kavscanner', - '/opt/kav/5.5/kav4unix/bin/kavscanner', - '/opt/kav/5.5/kav4mailservers/bin/kavscanner', 'kavscanner'], - '-i0 -xn -xp -mn -R -ePASBME {}/*', [0,10,15], [5,20,21,25], - qr/(?:INFECTED|WARNING|SUSPICION|SUSPICIOUS) (.*)/ , -# sub {chdir('/opt/kav/bin') or die "Can't chdir to kav: $!"}, -# sub {chdir($TEMPBASE) or die "Can't chdir back to $TEMPBASE $!"}, - ], - -# always succeeds (uncomment to consider mail clean if all other scanners fa= il) -# ['always-clean', sub {0}], - -); - - -1; # insure a defined return diff --git a/config/rootfiles/packages/amavisd b/config/rootfiles/packages/am= avisd deleted file mode 100644 index f2e1c3f3b..000000000 --- a/config/rootfiles/packages/amavisd +++ /dev/null @@ -1,7 +0,0 @@ -etc/amavisd.conf -etc/rc.d/init.d/amavisd -usr/bin/amavisd -var/amavis -var/amavis/db -var/amavis/tmp -var/virusmails diff --git a/lfs/amavisd b/lfs/amavisd deleted file mode 100644 index 43d3c6060..000000000 --- a/lfs/amavisd +++ /dev/null @@ -1,94 +0,0 @@ -############################################################################= ### -# = # -# IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2019 IPFire Team = # -# = # -# This program is free software: you can redistribute it and/or modify = # -# it under the terms of the GNU General Public License as published by = # -# the Free Software Foundation, either version 3 of the License, or = # -# (at your option) any later version. = # -# = # -# This program is distributed in the hope that it will be useful, = # -# but WITHOUT ANY WARRANTY; without even the implied warranty of = # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the = # -# GNU General Public License for more details. = # -# = # -# You should have received a copy of the GNU General Public License = # -# along with this program. If not, see . = # -# = # -############################################################################= ### - -############################################################################= ### -# Definitions -############################################################################= ### - -include Config - -VER =3D 2.11.1 - -THISAPP =3D amavisd-new-$(VER) -DL_FILE =3D $(THISAPP).tar.bz2 -DL_FROM =3D $(URL_IPFIRE) -DIR_APP =3D $(DIR_SRC)/$(THISAPP) -TARGET =3D $(DIR_INFO)/$(THISAPP) -PROG =3D amavisd -PAK_VER =3D 3 - -DEPS =3D clamav spamassassin perl-Net-LibIDN - -############################################################################= ### -# Top-level Rules -############################################################################= ### - -objects =3D $(DL_FILE) - -$(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) - -$(DL_FILE)_MD5 =3D f89fc043c790e35137121e45f2890703 - -install : $(TARGET) - -check : $(patsubst %,$(DIR_CHK)/%,$(objects)) - -download :$(patsubst %,$(DIR_DL)/%,$(objects)) - -md5 : $(subst %,%_MD5,$(objects)) - -dist:=20 - @$(PAK) - -############################################################################= ### -# Downloading, checking, md5sum -############################################################################= ### - -$(patsubst %,$(DIR_CHK)/%,$(objects)) : - @$(CHECK) - -$(patsubst %,$(DIR_DL)/%,$(objects)) : - @$(LOAD) - -$(subst %,%_MD5,$(objects)) : - @$(MD5) - -############################################################################= ### -# Installation Details -############################################################################= ### - -$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && cp -f amavisd /usr/bin - chown root.root /usr/bin/amavisd - chmod 755 /usr/bin/amavisd - - #install initscripts - $(call INSTALL_INITSCRIPT,amavisd) - - cp -fv $(DIR_SRC)/config/amavisd/amavisd.conf /etc - chown root.root /etc/amavisd.conf - chmod 644 /etc/amavisd.conf - -mkdir -p /var/amavis/{db,tmp} /var/virusmails - chown amavis.amavis -Rv /var/{amavis,virusmails} - chmod 750 -Rv /var/{amavis,virusmails} - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/src/initscripts/packages/amavisd b/src/initscripts/packages/amav= isd deleted file mode 100644 index 115ffe973..000000000 --- a/src/initscripts/packages/amavisd +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -######################################################################## -# Begin $rc_base/init.d/amavisd -# -# Description : Amavisd Init Script -# -# Authors : Michael Tremer (ms(a)ipfire.org) -# -# Version : 01.00 -# -# Notes : -# -######################################################################## - -. /etc/sysconfig/rc -. ${rc_functions} - -case "${1}" in - start) - boot_mesg "Starting AMaViS Daemon..." - loadproc /usr/bin/amavisd - ;; - - stop) - boot_mesg "Stopping AMaViS Daemon..." - killproc /usr/bin/amavisd - ;; - - restart) - ${0} stop - sleep 1 - ${0} start - ;; - - status) - statusproc /usr/bin/amavisd - ;; - - *) - echo "Usage: ${0} {start|stop|restart|status}" - exit 1 - ;; -esac - -# End $rc_base/init.d/amavisd --=20 2.26.2 --===============8471520890015501456==--