Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
[filespec]
include                = copy_webdav2local
source_dir             = /jade/out
file_spec              = \.txt$

[recursive]
include                = copy_webdav2local
source_dir             = /jade/out
file_spec              = \.txt$
recursive              = true

Example with file_spec behind a Proxy

First we make a global profiles for the proxy parameter.

Code Block

[webdav_source_proxy]
source_proxy_host      = proxy.sos
source_proxy_port      = 3128
#source_proxy_user     = 
#source_proxy_password =

The profile webdav_source_proxy will be included in above file_spec profile

Code Block

[filespec_with_proxy]
include                = copy_webdav2local,webdav_source_proxy
source_dir             = /jade/out
file_spec              = \.txt$

and so you have the above file_spec example with proxy

Example: transfer from local file system to WebDAV server

...

Code Block
[filespec]
include                = copy_local2webdav
source_dir             = /tmp/test/jade/out
file_spec              = \.txt$

[recursive]
include                = copy_local2webdav
source_dir             = /tmp/test/jade/out
file_spec              = \.txt$
recursive              = true

Example with file_spec behind a Proxy

First we make a global profiles for the proxy parameter.

...

Code Block
[filespec_with_proxy]
include                = copy_local2webdav, webdav_target_proxy
source_dir             = /tmp/test/jade/out
file_spec              = \.txt$

...