Thx m8 , i got it working on a debian box(3.1)
Output of the test:
2005-11-15 12:34:21 1Ebz4v-0001uw-Ni H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:22 1Ebz4v-0001ux-V0 H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:22 1Ebz4w-0001uw-9U H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:22 1Ebz4w-0001uw-Oj H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:23 1Ebz4x-0001ux-0J H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:23 1Ebz4x-0001ux-FY H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (Exploit.ObjCodebase.Calc)
2005-11-15 12:34:24 1Ebz4y-0001uw-0B H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (Eicar-Test-Signature)
2005-11-15 12:34:24 1Ebz4y-0001ux-Dt H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains malformed MIME (demime acl condition: 'message/partial' MIME type)
2005-11-15 12:34:24 1Ebz4y-0001uw-FU H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains malformed MIME (demime acl condition: 'message/partial' MIME type)
2005-11-15 12:34:24 1Ebz4y-0001ux-Se H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains malformed MIME (demime acl condition: 'message/partial' MIME type)
2005-11-15 12:34:25 1Ebz4y-0001uw-UC H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains malformed MIME (demime acl condition: 'message/partial' MIME type)
2005-11-15 12:34:25 1Ebz4z-0001ux-B6 H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains malformed MIME (demime acl condition: 'message/partial' MIME type)
2005-11-15 12:34:26 1Ebz50-0001uw-Bk H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:26 1Ebz50-0001ux-OT H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
2005-11-15 12:34:26 1Ebz50-0001uw-RQ H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (Exploit.ObjCodebase.Calc)
2005-11-15 12:34:27 1Ebz51-0001ux-73 H=gfiservers.gfi.com (S44374) [69.20.55.130] F=<
[email protected]> rejected after DATA: This message contains a virus or other harmful content (GFI.VBS.Test)
Looks fine to me .....
For debian users: i added the following files to start freshclam and the Clamd at boot :
/etc/init.d/Freshclam
Content:
#!/bin/sh
# Freshclam update
case "$1" in
'start')
/usr/local/bin/freshclam -d -c 24
;;
'stop')
;;
*)
echo "Usage: $0 { start | stop }"
;;
esac
exit 0
/etc/init.d/Clamd
Content:
#!/bin/sh
# Antivirus daemon
case "$1" in
'start')
/usr/local/sbin/clamd
;;
'stop')
;;
*)
echo "Usage: $0 { start | stop }"
;;
esac
exit 0