Why does this app connect home?

Question details:

My outbound firewall picked up an attempt to connect to 77.78.110.132, which resolves to gmail-backup.com. Why is this software doing this? This attempt wasn't made when the app started (indicating that it's checking for updates) rather when I clicked the Backup button.

The application checks for updates. It downloads the //www.gmail-backup.com/files/version.txt file, which contains following information: last revision (SVN), last revision (version number), URI for download of new version. For downloading the file the standard Python library urllib2 is used. You can check the yesterday access log of HTTP server which I made public here.

The reason why it checks the new version after the start of backup is that we share a lot of lines of code between command-line version and GUI version and we want to check new available version on one place.

You can find more details at //www.gmail-backup.com/why-does-app-connect-home.