File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,38 @@ imapcopy
22========
33
44Copy 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
You can’t perform that action at this time.
0 commit comments