quipper8
|
2012-01-20
, 12:02
|
Posts: 1,096 |
Thanked: 760 times |
Joined on Dec 2008
|
#11
|
The Following User Says Thank You to quipper8 For This Useful Post: | ||
|
2012-01-20
, 13:57
|
Posts: 11 |
Thanked: 7 times |
Joined on Dec 2009
@ London
|
#12
|
|
2012-01-20
, 14:29
|
|
Posts: 560 |
Thanked: 423 times |
Joined on May 2010
@ Switzerland
|
#13
|
|
2012-02-29
, 01:47
|
Posts: 112 |
Thanked: 26 times |
Joined on Sep 2009
|
#15
|
|
2012-03-01
, 19:07
|
Posts: 479 |
Thanked: 1,284 times |
Joined on Jan 2012
@ Enschede, The Netherlands
|
#16
|
method return sender=:1.101 -> dest=:1.103 reply_serial=2 boolean false
|
2012-03-01
, 19:18
|
Posts: 1,096 |
Thanked: 760 times |
Joined on Dec 2008
|
#17
|
|
2012-03-01
, 20:05
|
Posts: 479 |
Thanked: 1,284 times |
Joined on Jan 2012
@ Enschede, The Netherlands
|
#18
|
|
2012-03-01
, 20:27
|
Posts: 1,096 |
Thanked: 760 times |
Joined on Dec 2008
|
#19
|
|
2012-03-02
, 02:47
|
Posts: 1,096 |
Thanked: 760 times |
Joined on Dec 2008
|
#20
|
<?xml version="1.0" encoding="UTF-8"?> <synclog name="my-memotoo.com"> <syncresults scheduled="false" minorcode="402" majorcode="1" time="2012-03-01T20:34:38"/> <syncresults scheduled="false" minorcode="0" majorcode="0" time="2012-03-01T20:39:51"> <target name="./Notepad"> <local modified="0" added="3" deleted="0"/> <remote modified="0" added="0" deleted="0"/> </target> <target name="./calendar"> <local modified="0" added="1" deleted="0"/> <remote modified="0" added="19" deleted="0"/> </target> <target name="./contacts"> <local modified="0" added="6" deleted="0"/> <remote modified="0" added="0" deleted="0"/> </target> <target name="./sms"> <local modified="0" added="126" deleted="0"/> <remote modified="0" added="26" deleted="0"/> </target> </syncresults> <syncresults scheduled="false" minorcode="0" majorcode="0" time="2012-03-01T20:45:40"/> <syncresults scheduled="false" minorcode="0" majorcode="0" time="2012-03-01T21:07:58"> <target name="./contacts"> <local modified="0" added="0" deleted="0"/> <remote modified="0" added="1" deleted="0"/> </target> </syncresults> <syncresults scheduled="false" minorcode="0" majorcode="0" time="2012-03-01T21:50:04"> <target name="./sms"> <local modified="0" added="0" deleted="0"/> <remote modified="3" added="0" deleted="0"/> </target> </syncresults> </synclog>
<?xml version="1.0" encoding="UTF-8"?> <profile type="sync" name="my-memotoo.com"> <key value="My-Memotoo" name="displayname"/> <key value="true" name="enabled"/> <key value="true" name="hidden"/> <key value="false" name="use_accounts"/> <profile type="service" name="my-memotoo.com"/> <profile type="storage" name="hcontacts"> <key value="true" name="enabled"/> <key value="false" name="hidden"/> </profile> <profile type="storage" name="hcalendar"> <key value="Personal" name="Notebook Name"/> <key value="true" name="enabled"/> <key value="false" name="hidden"/> </profile> <profile type="storage" name="hnotes"> <key value="true" name="enabled"/> <key value="false" name="hidden"/> </profile> <profile type="storage" name="hsms"> <key value="true" name="enabled"/> <key value="false" name="hidden"/> </profile> <schedule enabled="false" interval="0" days="" syncconfiguredtime="" time=""> <rush begin="" enabled="false" interval="0" end="" days=""/> </schedule> </profile>
<?xml version="1.0" encoding="UTF-8"?> <profile name="my-memotoo.com" type="service"> <key name="Remote database" value="http://sync.memotoo.com/syncml" /> <key name="Username" value="YOURMEMOTOOUSERNAME" /> <key name="Password" value="YOURMEMOTOOPASSWORD" /> <key name="destinationtype" value="online"/> <profile name="syncml" type="client" > <key name="use_wbxml" value="false" /> <key name="Sync Transport" value="HTTP" /> <key name="Sync Direction" value="two-way" /> <key name="Sync Protocol" value="SyncML12" /> </profile> <profile name="hcontacts" type="storage" > <key name="Local URI" value="./contacts" /> <key name="Target URI" value="contact" /> </profile> <profile name="hcalendar" type="storage" > <key name="Local URI" value="./calendar" /> <key name="Target URI" value="caltask" /> <key name="Calendar Format" value="vcalendar" /> </profile> <profile name="hnotes" type="storage" > <key name="Local URI" value="./Notepad" /> <key name="Target URI" value="pnote" /> <profile name="hsms" type="storage" > <key name="Local URI" value="./sms" /> <key name="Target URI" value="sms" /> </profile> </profile> </profile>
dbus-send --session --print-reply --dest=com.meego.msyncd /synchronizer com.meego.msyncd.startSync string:'my-memotoo.com'
#!/bin/sh # Replace "login", "password" and "LCD" with your settings HOST="ftp.memotoo.com" USER="YOURMEMETOOUSER" PASS="YOURMEMOTOOPASS" # Local directory LCD="/home/user/MyDocs/" # Remote directory RCD="/" #excluding movies and music folder because it can take a loooooong time and take a lot of space which costs on memotoo, #enable those if you want and have plenty of space on both targets #also excluding pictures and cities folder #also, there is no deletion setup in this mirror, so you would need to delete something in both places for it to be gone #you can explore the --delete option of lftp mirror if you want to #memotoo deos ftpes which uses TLS, so should be ok lftp -c "set mirror:exclude-regex ^.*cities.*$\|^.*Movies.*$\|^.*Music.*$\|^.*Pictures.*$; open ftp://$USER:$PASS@$HOST; lcd $LCD; cd $RCD; mirror --reverse \ --verbose" lftp -c "set mirror:exclude-regex ^.*cities.*$\|^.*Movies.*$\|^.*Music.*$\|^.*Pictures.*$; open ftp://$USER:$PASS@$HOST; lcd $LCD; cd $RCD; mirror --verbose"
The Following 6 Users Say Thank You to quipper8 For This Useful Post: | ||