Skip to content

Commit

Permalink
Release 0.0.1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Dec 7, 2013
1 parent 41fba83 commit 37e7c94
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,16 @@ from java.
- Command line execution
- Deletion of no longer existing messages and folders

##Requirements
##Requirements
- Java 1.5

##Releases
- [0.0.1-alpha](http://www.marcnuri.com/file/mnIMAPSync-release-0.0.1-alpha.zip)

##Usage
The easiest way is to launch the program from the command-line interface.
Download the latest binary release and execute as follows:
Download the [latest binary release](http://www.marcnuri.com/file/mnIMAPSync-release-0.0.1-alpha.zip)
and execute as follows:

```Batchfile
java -jar mnIMAPSync.jar --host1 imap.gmail.com --port1 993 --user1 user@gmail.com --password1 password --ssl1 --host2 other.server.com --port2 143 --user2 user2@other.server.com --password2 password2 --delete
Expand Down
2 changes: 1 addition & 1 deletion com/marcnuri/mnimapsync/MNIMAPSync.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public static void main(String[] args) {
System.out.println(
"===============================================================");
if (sync.sourceCopier != null) {
System.out.printf("\nFolders copied: %s/%s",
System.out.printf("Folders copied: %s/%s",
sync.sourceCopier.getFoldersCopiedCount(),
(sync.sourceCopier.getFoldersCopiedCount()
+ sync.sourceCopier.getFoldersSkippedCount()));
Expand Down

0 comments on commit 37e7c94

Please sign in to comment.