Sponsored Content
Full Discussion: Virus !!!!!!!!!!!!!!!!!!!
Top Forums UNIX for Dummies Questions & Answers Virus !!!!!!!!!!!!!!!!!!! Post 29635 by amicrawler2000 on Wednesday 9th of October 2002 08:23:15 PM
Old 10-09-2002
virus !!!!!!!!!! mbr

ok guys i checked for virus and not a thing found
and i all so A:fdisk /mbr to so i guess i'm safe right? and all mandrake 9 sucks very slow in openGL games i recomend 8.2 over 9 i'm on a p4 and a p3 800 and a AMD Zuse 1600mhz and mandrake 9 is still slower than poo
amicrawler2000
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

do i have a virus???

nice board, makes interesting reading! glad to know im not the only one to have problems!! :D :D last week, our database started to crash (run on unix / solaris) for no apparant reason. the problem seems to be intermiant which lead us to believe it may be a hardware problem causing the... (2 Replies)
Discussion started by: mdma
2 Replies

2. UNIX for Dummies Questions & Answers

virus????????

i tought you can;t get virus in unix ? i have some admins buddys that work in bsd all he time and they sayed you can;t get viurs in unix is that true? download.com is putting virux updates out for mac OS X ................ (7 Replies)
Discussion started by: amicrawler
7 Replies

3. UNIX for Dummies Questions & Answers

virus detection

IS there virus software for unix? I worked in a Solaris environment and dont remember having anything. I also ask because the current enviroment i am working on is Microsoft and they argue that they do not use unix because of virus detection. Any input would be greatly appreciated. (1 Reply)
Discussion started by: pbonilla
1 Replies

4. UNIX for Dummies Questions & Answers

Worm Virus

I am running Unix SCO and have discovered the worm virus. It is enabled through a BIOS connections, I am able to get around it using telnet, believe it or not. - Can anyone recommend a virus scan software? - Has anyone successfully used a virus scan software on unix without a problem? ... (2 Replies)
Discussion started by: ana_cr32
2 Replies

5. UNIX for Dummies Questions & Answers

Virus Software

I'm trying to find out what kind of virus software UNIX has, if any. Please let me know and please inform me of the prefered types. Thanks (1 Reply)
Discussion started by: GlockCW
1 Replies

6. UNIX for Dummies Questions & Answers

unix and virus

why one normally hears tht virus has stuck windows and one does not hear that unix has been stuck by virus...wht make unix so powerfull tht virus does not stuck it. (9 Replies)
Discussion started by: taurian1234
9 Replies

7. Windows & DOS: Issues & Discussions

virus help:

:confused: folder option is dissapiaring in tool menu iam formatting c drive after removal of this virus & also regedit is also not opening the messerge say's administrater disabled with out formattiung how ican solve this problem i.e iwant to get folder options& regedit (2 Replies)
Discussion started by: seshumohan
2 Replies

8. UNIX Desktop Questions & Answers

Virus and Malware

How do i manage virus and melware in Unix ? (2 Replies)
Discussion started by: Suriano10
2 Replies

9. Windows & DOS: Issues & Discussions

Windows XP keeps getting virus

Hi All, My old laptop has Windows XP. I reinstalled only last month and installed AVG free anti-virus. It's like every month, I get some kind of spyware or virus issue. which anti-virus software you guys using? Thanks. (8 Replies)
Discussion started by: samnyc
8 Replies
clamsmtpd.conf(5)					      BSD File Formats Manual						 clamsmtpd.conf(5)

NAME
clamsmtpd.conf -- the configuration file for clamsmtpd(8) DESCRIPTION
clamsmtpd(8) reads a configuration file when starting up. The location of the file is dependent on how you compiled clamsmtp but it should usually be in either the /usr/local/etc/ or /etc/ directories. If clamsmtpd(8) does not find its configuration file it'll print a warning when it starts up along with the location it's expecting to find it in. You can also specify a different location for a config file by pass- ing the -f argument to clamsmtpd(8) The settings are specified one per line. The setting names come first, followed by a colon and then the value. Comments start with the '#' character on a line of their own. Whitespace is ignored at the beginning of line, end of line and around the colons. A sample configuration file can be found in the doc/ directory of the clamsmtp distribution. SETTINGS
The various settings are as follows: Action This option controls what clamsmtpd(8) does when it finds a virus. The options are: bounce Bounce the email. In most cases this is not a good idea since many viruses spoof sender addresses. drop Silently drop the email. Recommended. pass Pass on the email. Inserts an 'X-Virus-Infected' header. [ Default: drop ] ClamAddress Specifies the address to connect to clamd(8) on. See syntax of addresses below. [ Default: /var/run/clamav/clamd ] Header A header to add to scanned messages. Put an empty value to suppress adding a header. You can include the following special for- matting characters in the string to include special values: %i Client IP Address %l Local IP Address %d Current Date You can also include the standard or escapes. [ Default: 'X-Virus-Scanned: ClamAV using ClamSMTP' ] KeepAlives On slow connections the server will sometimes timeout before clamsmtpd(8) is finished scanning the file. This option sends NOOP's to the server to keep the connection alive. Specify the number of seconds, or 0 to disable. [ Default: 0 ] Listen The address and port to listen for SMTP connections on. See syntax of addresses below. [ Default: port 10025 on all local IP addresses ] PidFile Specifies a location for the a process id file to be written to. This file contains the process id of clamsmtpd.conf and can be used to stop the daemon. If the -p argument is passed on the command line, then this setting will be ignored. [ Default: none ] Quarantine Quarantine files that contain viruses by leaving them in the TempDirectory directory. The file names look like this (where X is a random character or number): virus.XXXXXX [ Default: off ] MaxConnections Specifies the maximum number of connections to accept at once. clamd(8) also needs to be setup to accept at least this number of connections. [ Default: 64 ] OutAddress The address of the SMTP server to send email to once it's been scanned. See syntax of addreses below. [ Required ] TempDirectory The directory to write temp files to. This directory needs to be accessible to both clamd(8) and clamsmtpd(8) [ Default: /tmp ] TimeOut The number of seconds to wait while reading data from network connections. [ Default: 180 seconds ] TransparentProxy This option enables transparent proxy support, which allows you to route all SMTP traffic that's going through a gateway through clamsmtp which will then send it on to its final destination. This setup usually involves firewall rules which redirect traffic to clamsmtp, and the setup varies from OS to OS. [ Default: off ] User The user to run as. If this option is specified then clamsmtpd(8) must be started as root. It will then drop root privileges and run as the specified user. The user can either be a name or a numerical user id. [ Optional ] VirusAction This is a command to run when a virus is found. See the VIRUS ACTION section in clamsmtpd(8) for a discussion of this option. [ Default: off ] XClient Send an XCLIENT command to the receiving server. This is useful for forwarding client addresses and connection info to servers that support this feature. [ Default: off ] ADDRESSES
Addresses can be specified in multiple formats: o Unix local addresses can be specified by specifying their full path. (ie: '/var/run/clamav/clamd'). o IP addresses can be specified using dotted notation with a colon before the port number (ie: '127.0.0.1:3310'). o IPv6 addresses are implemented but disabled. The code needs testing. SEE ALSO
clamsmtpd(8) AUTHOR
Stef Walter <stef@memberwebs.com> clamsmtp June 1, 2019 clamsmtp
All times are GMT -4. The time now is 02:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy