sendfile.cf 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. ##
  2. ## sendfile.cf -- Sendfile Configuration
  3. ##
  4. # accept only messages or files (for NFS-clients)
  5. #acceptonly = messages
  6. # forward address to your generic SAFT-server (e.g. for NFS)
  7. #saftserver = saft.example.com
  8. # set domain name of host if necessary
  9. #domain = myhost.example.com
  10. # where shall new user configuration directories be created (SPOOL/HOME)
  11. userconfig = SPOOL
  12. # allow automatic forwarding of files by the local user (on/off)
  13. forwarding = on
  14. # allow automatic postprocessing of files by the local user (on/off)
  15. piping = on
  16. # allow remote sender to delete his files afterwards (on/off)
  17. deleting = on
  18. # maximum allowed files to receive per user
  19. # setting this option too high will slow down your machine!
  20. maxfiles = 200
  21. # minimum free disk space for your spool partition in MB
  22. minfree = 5
  23. # maximum total disk space usage for spool in MB
  24. # (WARNING! Defining this option will sendfile slow down! Better use minfree)
  25. #maxspool = 100
  26. # list of file extensions for indicating which files are not compressible
  27. dontcompress = .zip,.zoo,.arj,.z,.gz,.bz,.bz2,.tgz,.mp3,.gif,.jpg,.tif,.tiff,.png,.avi,.mpeg,.pgp,.rpm,.rar,.deb
  28. # default compression methode (none/gzip/bzip2)
  29. defaultcompress = gzip
  30. # lanspeed defines what to your LAN belongs: if sending to hosts is
  31. # faster than this value (KB/s), then files will not be compressed. If
  32. # you set lanspeed = 0 then this feature will be disabled and every
  33. # file which is not in the dontcompress list (see above) will be
  34. # compressed.
  35. lanspeed = 100
  36. # notification by message, mail, both or none when a file arrives
  37. notification = message
  38. # ring the gong when a message arrives (on/off)
  39. bell = on
  40. # keep files in spool at least xx days, then delete them (0=infinity)
  41. keep = 0
  42. # delete aborted or corrupted spool files after xx days (0=never)
  43. deljunk = 10
  44. # global logging of file transfer (in/out/both/none)
  45. log = in
  46. # packet size to send/receive in one chunk
  47. # if you are on a fast and reliable network, set this option to 1024 or 4096
  48. packet = 512
  49. # logging of incoming messages in the user log file (on/off)
  50. msglog = off
  51. # allow O-SAFT fetchfile extension (on/off)
  52. fetchfile = on
  53. # internal environment variable PATH for sendfiled
  54. PATH = @l_prefix@/bin:/bin:/usr/bin:/sbin:/usr/sbin
  55. # where is the pgp program? (used for O-SAFT/fetchfile)
  56. #pgp = @l_prefix@/bin/pgp
  57. # enforce secure incoming file transfer with pgp (sign/encrypt/both/none)
  58. forcepgp = none
  59. # allow spooling of outgoing files (on/nostart/off)
  60. # (nostart means a client is not allowed to start the spool daemon)
  61. spooling = on
  62. # allow parallel sending of spooled files = multiple daemons (on/off)
  63. parallel = on
  64. # limit thruput of outgoing files to xx KB/s (0 = no limit)
  65. # this makes only sense if parallel = off (see above)
  66. maxthruput = 0
  67. # bounce files from outgoing spool back to the local user after xx days
  68. # (when remote host is unreachable)
  69. bounce = 5
  70. # retry delivering of files from outgoing spool after xx minutes
  71. retry = 10