Соорудите пожалуйсто скрипт для *Gmail.com* Уменя почему-то не хватает прав
# This Python file uses the following encoding: utf-8
import os
import string
#Enter your username and password below within double quotes
# eg. username="username" and password="password"
username="-----"
password="-----"
com="wget -O - https://"+username+":"+password+"@googlemail.com/mail/feed/atom --no-check-certificate"
temp=os.popen(com)
msg=temp.read()
index=string.find(msg,"<fullcount>")
index2=string.find(msg,"</fullcount>")
fc=int(msg[index+11:index2])
if fc==0:
print " "
else:
print str(fc)+" новых"