How does one query the IMAP server based on the new format?

 

Previously, to get messages from a given sender in a given mailbox, the 
following worked »

messages = imapdb(imapdb.INBOX.sender.contains("SenderName")).select()

Or an email on a given date by »

messages = imapdb(imapdb.INBOX.created == datetime.date(2013,1,25)).select()


And UID by »

messages = imapdb(imapdb.INBOX.uid == '3869').select().first()

messages = imapdb(imapdb.INBOX.uid.belongs('1000')).select()




*Q»  How is the new IMAP DAL Query to be written? What is the new Query 
Format or Schema?*





 







-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to