-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Heavily update README and example profiles
- Loading branch information
1 parent
efe53b9
commit c086448
Showing
8 changed files
with
109 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
profiles/Two-Local-Folders.xml → profiles/Copy-To-Local-Folder.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jFileSync title="Local Directory Synchronization"> | ||
<directory src="My Source" tgt="My Target"/> | ||
<directory src="profiles" tgt="legal"/> | ||
</jFileSync> |
2 changes: 1 addition & 1 deletion
2
profiles/Local-To-WebDAV-Folder.xml → profiles/Copy-To-WebDAV-Folder.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jFileSync title="Syncronize Local Folder with WebDAV Folder"> | ||
<server user="username" passphrase="VerySecret"/> | ||
<directory src="Local Folder" tgt="webdav://https://webdav.host/directory/path"/> | ||
<directory src="legal" tgt="webdav://https://webdav.host/directory/path"/> | ||
</jFileSync> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jFileSync title="Encrypt to Local Folder (without separate Metadata file)"> | ||
<encryption passphrase="SecretPassword"/> | ||
<jFileSync title="Encrypt to Local Folder (without separate Metadata file for speed up)"> | ||
<encryption passphrase="SecretPassphrase" cipher="AES" shorten="false"/> | ||
<directory src="PlaintextFolder" tgt="encrypted://C:/storage/EncryptedFolder"/> | ||
</jFileSync> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jFileSync title="Local Folder to Encrypted WebDAV Folder"> | ||
<server user="username" passphrase="VerySecret"/> | ||
<encryption passphrase="SecretPassphrase"/> | ||
<encryption passphrase="SecretPassphrase" cipher="AES" shorten="false"/> | ||
<directory src="Local Folder" tgt="dav://https://webdav.host/directory/path"/> | ||
</jFileSync> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jFileSync title="Local Folder to Encrypted WebDAV Folder (without separate Metadata file for speed up)"> | ||
<server user="username" passphrase="VerySecret"/> | ||
<encryption passphrase="SecretPassphrase" cipher="AES" shorten="false"/> | ||
<directory src="Local Folder" tgt="encdav://https://webdav.host/directory/path"/> | ||
</jFileSync> |