mirror of
https://github.com/imapsync/imapsync.git
synced 2025-07-27 12:26:08 +02:00
1.637
This commit is contained in:
parent
4a536871fe
commit
e2bfc931f4
206 changed files with 7348 additions and 7982 deletions
|
@ -1,10 +1,27 @@
|
|||
#!/bin/sh
|
||||
# $Id: imapsync_example.sh,v 1.3 2015/03/26 04:35:02 gilles Exp gilles $
|
||||
|
||||
# imapsync example shell for Unix users
|
||||
# lines beginning with # are just comments
|
||||
|
||||
# Replace imap.foo.org toto secretoto 192.168.42.4 titi secretiti with your own values
|
||||
# Replace below the 6 parameters
|
||||
# "test1.lamiral.info" "test1" "secret1" "test2.lamiral.info" "test2" "secret2"
|
||||
# with your own values
|
||||
# Double quotes are necessary if a value contain one or more blanks.
|
||||
|
||||
./imapsync --host1 imap.foo.org --user1 toto --password1 "secretoto" \
|
||||
--host2 192.168.42.4 --user2 titi --password2 "secretiti"
|
||||
# value for --host1 is the IMAP source server hostname or IP address
|
||||
# value for --user1 is the IMAP source user login
|
||||
# value for --password1 is the IMAP source user password
|
||||
|
||||
# value for --host2 is the IMAP destination server hostname or IP address
|
||||
# value for --user2 is the IMAP destination user login
|
||||
# value for --password2 is the IMAP destination user password
|
||||
|
||||
# Character \ at the end of the first line is essential and means
|
||||
# "this command continues on the next line". You can add other lines
|
||||
# but don't forget \ character lasting each line, except the last one.
|
||||
|
||||
|
||||
./imapsync --host1 test1.lamiral.info --user1 test1 --password1 'secret1' \
|
||||
--host2 test2.lamiral.info --user2 test2 --password2 'secret2'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue