Me card contact is normally a OssoABookContact and not a EContact
[modest] / src / hildon2 / modest-clean.sh
1 #!/bin/sh
2
3 # First we kill Modest to make sure that, when we remove
4 # all the data, modest won't write again
5 PIDS=`pidof modest` && kill -15 $PIDS
6
7 # Removing modest user data folder
8 rm -rf /home/user/.modest
9
10 exit 0