I have time to time the errno 111 here is my snippet :
and i don't understand why :
import email, getpass, imaplib, os
import datetime
from couchdbkit import *
import unicodedata
from couchdbkit.designer import push
import time
class Email(Document):
Sender = StringProperty()
Recepteur = StringProperty()
Content = StringProperty()
GmailId = IntegerProperty()
Date = DateTimeProperty()
# server object
server = Server()
# create database
db = server.get_or_create_db('email')
#push('', db)
# associate Greeting to the db
Email.set_db(db)
exist = True
detach_dir = '' # directory where to save attachments (default: current)
#put your username here
user = "titi"
#put your password here
pwd = "toto"
# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("
imap.gmail.com")
m.login(user,pwd)
m.select("[Gmail]/All Mail") # here you a can choose a mail box like INBOX instead
# use m.list() to get all the mailboxes
resp, items = m.search(None, "ALL") # you could filter using the IMAP rules here (check
http://www.example-code.com/csharp/imap-search-critera.asp)
items = items[0].split() # getting the mails id
i = 0
record = False
sleep = 30
for emailid in items:
i += 1
emailcouch = Email()
if i > 20640:
resp, data = m.fetch(emailid, "(RFC822)") # fetching the mail, "`(RFC822)`" means "get the whole stuff", but you can ask for headers only, etc
email_body = data[0][1] # getting the mail content
mail = email.message_from_string(email_body) # parsing the mail content to get a mail object
print i
try :
print "["+mail["From"]+"] :" + mail["Subject"]
except :
try :
print "["+mail["From"]+"] :"
except :
pass
# fp = open("%d.txt"%(i), 'wb')
# fp.write(mail.__str__())
# fp.close()
#Check if any attachments at all
content = unicode(mail.__str__(),errors='ignore')
if (exist):
# emailcouchs = Email.view('email/all')
# print emailcouchs
# print emailcouchs.count()
exist = False
# for em in emailcouchs.all() :
# if em.content == content :
# exist = True
else :
emailcouch.Content = content
emailcouch.GmailId = i
connection = False
while (connection == False):
try :
emailcouch.save()
connection = True
sleep = 30
except Exception as e:
print e
sleep = sleep * 2
if sleep > 120 :
mypass = 'toto'
sudo_command = '/etc/init.d/couchdb restart'
p = os.system('echo %s|sudo -S %s' % (mypass, sudo_command))
time.sleep(sleep)
if mail.get_content_maintype() != 'multipart':
continue
# we use walk to creatone a generator so we can iterate on the parts and forget about the recursive headach
j = 0
for part in mail.walk():
# multipart are just containers, so we skip them
if part.get_content_maintype() == 'multipart':
continue
# is this part an attachment ?
if part.get('Content-Disposition') is None:
continue
filename = part.get_filename()
counter = 1
# if there is no filename, we create one with a counter to avoid duplicates
if not filename:
filename = 'part-%03d%s' % (counter, '.bin')
counter += 1
att_path = os.path.join(detach_dir, filename)
#Check if its already there
att_path = att_path.replace("?","")
att_path = att_path.replace("=","")
att_path = att_path.replace(" ","")
att_path = att_path.replace(".\\\\","")
att_path = att_path.replace("\\","")
att_path = att_path.replace("/","")
att_path = att_path.replace("bin",".bin")
#att_path = ".\\\\"+att_path
try :
# if not os.path.isfile(att_path) :
# finally write the stuff
filee = "__%d_%d__"%(i,j)
emailcouch.put_attachment(part.get_payload(decode=True),att_path+filee+att_path[3:])
connection = False
while (connection == False):
try :
emailcouch.save()
connection = True
sleep = 30
except Exception as e:
print e
sleep = sleep * 2
if sleep > 120 :
mypass = 'rpgjdr'
sudo_command = '/etc/init.d/couchdb restart'
p = os.system('echo %s|sudo -S %s' % (mypass, sudo_command))
time.sleep(sleep)
#filee = filee.replace("bin","\.bin")
# fp = open("%s"%(att_path+filee+att_path[3:]), 'wb')
# fp.write(part.get_payload(decode=True))
# fp.close()
# if os.path.isfile(att_path):
# j += 1
# filee = "__%d_%d__"%(i,j)
# fp = open("%s"%(att_path+filee+att_path[3:]), 'wb')
# fp.write(part.get_payload(decode=True))
# fp.close()
except :
pass