Skip to content

Commit 3ce1df1

Browse files
committed
Merge branch 'master' of github.com:jfisbein/imapcopy
2 parents 419248e + 6d5f2b6 commit 3ce1df1

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,38 @@ imapcopy
22
========
33

44
Copy recursively all email messages and folders from 1 imap account to another
5+
6+
Installation Instructions
7+
-------------------------
8+
9+
### Linux and other Unixes
10+
* Download the application from the repository
11+
* build de jar
12+
13+
ant build
14+
15+
* go to target directory and get imapCopy.zip
16+
* move it to your desired directory and decompress it
17+
* Change imapCopy.sh file mode
18+
19+
chmod +x imapCopy.sh
20+
21+
#### Run as command line tool
22+
* Run as a command line tool:
23+
24+
./imapCopy.sh sourceImapAccount targetImapAccount (ex: ./imapCopy.sh imap://peter:mypassword@foo.com imaps://peter%40gmail.com:myotherpasword@imap.gmail.com)
25+
26+
* Run using (very basic) Gui
27+
28+
./imapCopyGui.sh
29+
30+
31+
### Format of the imap accounts url
32+
33+
{protocol}://[user:password@]{host}[:port]
34+
35+
Where
36+
* protocol can be imap or imaps
37+
* user and password are optional and must be url scaped (ex: peter@gmail.com becomes peter%40gmail.com)
38+
* host: host of the imap server
39+
* port: port of the imap server

0 commit comments

Comments
 (0)