Displaying 3 results from an estimated 3 matches for "wonderwork".
Did you mean:
wonderworks
2002 May 23
3
separating a digest into separate messages
Could someone suggest a mail reader that will parse a digest from r-help
into separate messages?
Preferably, this reader would allow replies or forwards of separate
messages. I use pine on a Sun running SunOS 5.7. If there were an add-on to
pine that would accomplish this task, that would be even better.
Anne
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Anne E. York
National Marine Mammal Laboratory
2003 Apr 01
1
need to modify file data before storing it on destination
I'd like to be able to store remote files compressed or encrypted
or both. I think this could be supported in a general way by
having:
1. an rsync option --remotefilter=command that specifies a
remote command that rsync pushes file data through before
storing it on disk. This option would imply --whole-file.
2. an rsync option --times-only so that rsync would consider
2003 Apr 08
1
link_dest checks perms despite no -p -o or -g
When using --link-dest, this block of code in skip_file causes
new copies of files to be created if source and destination file
permissions differ, even if -p -o and -g haven't been specified.
if (link_dest) {
if((st->st_mode & ~_S_IFMT) != (file->mode & ~_S_IFMT)) {
return 0;
}
if (st->st_uid != file->uid || st->st_gid != file->gid) {
return 0;
}
}