| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- ##
- ## sendfile.cf -- Sendfile Configuration
- ##
- # accept only messages or files (for NFS-clients)
- #acceptonly = messages
- # forward address to your generic SAFT-server (e.g. for NFS)
- #saftserver = saft.example.com
- # set domain name of host if necessary
- #domain = myhost.example.com
- # where shall new user configuration directories be created (SPOOL/HOME)
- userconfig = SPOOL
- # allow automatic forwarding of files by the local user (on/off)
- forwarding = on
- # allow automatic postprocessing of files by the local user (on/off)
- piping = on
- # allow remote sender to delete his files afterwards (on/off)
- deleting = on
- # maximum allowed files to receive per user
- # setting this option too high will slow down your machine!
- maxfiles = 200
- # minimum free disk space for your spool partition in MB
- minfree = 5
- # maximum total disk space usage for spool in MB
- # (WARNING! Defining this option will sendfile slow down! Better use minfree)
- #maxspool = 100
- # list of file extensions for indicating which files are not compressible
- dontcompress = .zip,.zoo,.arj,.z,.gz,.bz,.bz2,.tgz,.mp3,.gif,.jpg,.tif,.tiff,.png,.avi,.mpeg,.pgp,.rpm,.rar,.deb
- # default compression methode (none/gzip/bzip2)
- defaultcompress = gzip
- # lanspeed defines what to your LAN belongs: if sending to hosts is
- # faster than this value (KB/s), then files will not be compressed. If
- # you set lanspeed = 0 then this feature will be disabled and every
- # file which is not in the dontcompress list (see above) will be
- # compressed.
- lanspeed = 100
- # notification by message, mail, both or none when a file arrives
- notification = message
- # ring the gong when a message arrives (on/off)
- bell = on
- # keep files in spool at least xx days, then delete them (0=infinity)
- keep = 0
- # delete aborted or corrupted spool files after xx days (0=never)
- deljunk = 10
- # global logging of file transfer (in/out/both/none)
- log = in
- # packet size to send/receive in one chunk
- # if you are on a fast and reliable network, set this option to 1024 or 4096
- packet = 512
- # logging of incoming messages in the user log file (on/off)
- msglog = off
- # allow O-SAFT fetchfile extension (on/off)
- fetchfile = on
- # internal environment variable PATH for sendfiled
- PATH = @l_prefix@/bin:/bin:/usr/bin:/sbin:/usr/sbin
- # where is the pgp program? (used for O-SAFT/fetchfile)
- #pgp = @l_prefix@/bin/pgp
- # enforce secure incoming file transfer with pgp (sign/encrypt/both/none)
- forcepgp = none
- # allow spooling of outgoing files (on/nostart/off)
- # (nostart means a client is not allowed to start the spool daemon)
- spooling = on
- # allow parallel sending of spooled files = multiple daemons (on/off)
- parallel = on
- # limit thruput of outgoing files to xx KB/s (0 = no limit)
- # this makes only sense if parallel = off (see above)
- maxthruput = 0
- # bounce files from outgoing spool back to the local user after xx days
- # (when remote host is unreachable)
- bounce = 5
- # retry delivering of files from outgoing spool after xx minutes
- retry = 10
|