Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Linh Lee

    Python SyntaxError: invalid syntax (help)

    Trying to search/delete for specific user with one letter name, "a", and always changing domains. Some addresses from this spam: [email protected] [email protected] [email protected] Need help please, fixing invalid syntax error. CODE: from imap_tools import MailBox, A with...
  2. Linh Lee

    Python imap_ssl.search one letter name

    resp_code, mails = imap_ssl.search(None, '(FROM "a")') I want to search emails from a specific one letter named user, "a". Example: <[email protected]> <[email protected]> Problem is, search results cause all users with an "a" as part of their name to be returned. Example: [email protected]...
  3. Linh Lee

    Python Yahoo imaplib errors

    Want to search folder "SPAM", for specific_user@any domain, and delete found mail. Code below ... import imaplib box = imaplib.IMAP4_SSL('imap.mail.yahoo.com', 993) box.login("[email protected]","xxxxxxxxxx") box.select('SPAM') typ, data = box.search(None, 'from','name@*.*') for num in...
  4. Linh Lee

    Python Imaplib [search, move, delete] Yahoo Mail

    Any python experts willing to share there knowledge, please?! Want to: 1. Search ALL folders including SPAM, for "specific_user@ANY (wildcard) domain" 2. Move those emails to folder called DUMP 3. Delete contents of DUMP Unfortunately I can't figure out how to do what I need above in Yahoo...
  5. Linh Lee

    Mingalaba greetings :)

    Mingalaba, I'm very new to Python and programming in general. I was born in beautiful Bago, Burma, of Thai and Burmese parents. I discovered Python due to a yahoo email spaming issue I am having, and that has started my journey into the "rabbit hole"! Admin, thank you for the access!! Peace be...
Back
Top Bottom