http://adeona.cs.washington.edu

This software periodically run on background, gather network information and give you some hints where your laptop is.
The website recommend you do *not* try to catch the thief by yourself even when you find out where it is.
One interesting thing is the software can take a picture of the thief when your computer is MacBook series, which has a camera at top of the LCD.
The logic was simple, so that I made similar one by myself.


I don't know which way is easiest way to install mutt, but I used "Mac Port".
You can add a schedule onto your "crontab" like this:
0,30 * * * * /Users/wrice/Applications/sendPicture.shEnjoy your safer environment.
1 comment:
I found that it may not work if the computer is under Firewall. In that case you can install "msmtp" and set the ~/.msmtprc and ~/.muttrc file.
================
.muttrc file will be like this:
set sendmail="/opt/local/bin/msmtp"
set from=yourEmail@gmail.com
================
.msmtprc file will be like this:
account default
host smtp.gmail.com
port 587
from yourEmail@gmail.com
tls on
tls_starttls on
tls_trust_file /path/your/home/folder/Thawte_Premium_Server_CA.pem
auth on
user yourGamilAccountName
password yourGamilAccountPassword
#logfile ~/.msmtp.log
================
You also need to get the file, "Thawte_Premium_Server_CA.pem" from internet anywhere.
Hmmm it seems like getting complex.....
Post a Comment