imap Questions

1

Solved

My gmail is getting full... I need a method to find out the biggest email from the Inbox and delete it. However, in the web interface of gmail, what I can do is to find out the emails with attachme...
Detailed asked 22/2, 2012 at 8:41

2

I have a smaller IMAP-script written i Python(3.2). I my search-line looks like this: typ, data = M.search(None, 'FROM', '"MyName"') I get the expected results. However, if I change it to somet...
Bowker asked 11/4, 2011 at 12:35

1

Solved

Is it possible to set custom flags on IMAP mail messages using java mail without overwriting existing flags? Eg, I need to set a flag "processed" on processed messages without changing its state to...
Aecium asked 14/2, 2012 at 14:3

2

Solved

I have looked up Google and Spring documentation but can not find any thing on receiving emails. I need to build a client (kind of not fully blown client) that can receive emails from POP3 and IMA...
Kirst asked 2/2, 2012 at 9:0

2

I'm working on a Google App Engine project that needs to access IMAP. Context.IO isn't quite powerful enough for my purposes, but I'd like something in the same spirit: I want to log into, access, ...
Consols asked 19/10, 2011 at 20:28

4

Solved

Long story short, I created a new gmail account, and linked several other accounts to it (each with 1000s of messages), which I am importing. All imported messages arrive as unread, but I need them...
Airminded asked 18/8, 2009 at 20:52

4

Experimenting with Application Messaging over email for Applications. I have already created my SMTP Server but now missing a centralised delivery mechanism. I can create a propriety delivery...
Floriated asked 18/11, 2010 at 12:37

1

Solved

I have a user authorized to access their gmail through imap using OAuth2.0. I have the OAuth2.0 access token (and refresh token). But I am having trouble figuring out how to map that into an XOAUTH...
Priapism asked 23/9, 2011 at 17:31

1

Solved

I'm trying to retrieve email using IMAP that's less than a certain number of hours old. I've looked over the specifications, and there is a SINCE method that accepts an RFC date. However, it ignore...
Procora asked 30/6, 2011 at 20:27

1

I'm using javamail for imap search by subject on Gmail. I use the subjectTerm class to create a searchTerm object and pass to the search function. Search works fine for subject strings which are pu...
Antecedents asked 22/10, 2010 at 14:16

2

Solved

I'm retrieving emails from Gmail using PHP and IMAP; however, some emails don't have a messageid. Aren't all messages supposed to have a messageid? I need a unique id for reference so i'm not sure...
Chiseler asked 14/12, 2011 at 23:23

2

Solved

So I have a little problem with a PHP script I'm currently writing. To start off, let me say the script is supposed to connect to an IMAP mailbox, search for some emails and download their attachme...
Gujral asked 28/4, 2011 at 7:28

1

I'm following the example, I already have authorized my application (=obtained the access token) but trying to access the inbox results in this: 21:14.12 > NDIB1 AUTHENTICATE XOAUTH 21:14.17 ...
Walcott asked 20/9, 2010 at 21:45

2

Solved

I'm trying to get messages after a certain time-stamp, the way I've coded it was suggested by another programmer in this site: GregorianCalendar date = new GregorianCalendar(); SearchTerm newer =...
Mahmud asked 10/1, 2011 at 19:24

1

Solved

I need to find all mails in IMAP mailbox which contains somestring in BODY and is FROM [email protected] or TO [email protected]. Trying to do: 49:51.53 > JBPM3 SEARCH CHARSET utf-8 ...
Umbles asked 25/10, 2011 at 8:56

1

I am using javamail to make IMAP connections to gmail. Everything is working going fine. I just want to prevent misusing server memory. My question is: What does happen when I close the store? [st...
Aguish asked 14/1, 2011 at 20:28

1

Solved

Is it possible to use wildcards in searching for a specific sender on IMAP folder? typ, data = M.SEARCH(None, 'from','"security@website*"')
Aloha asked 10/10, 2011 at 23:5

2

Solved

So, Gmail's IMAP is a bit 'weird'. They use IMAP folders to represent Labels. I believe typically that an email in IMAP can only belong to one 'Folder', however with Gmail, an email message can bel...
Lorilee asked 13/11, 2010 at 16:50

1

Solved

In IMAP, message numbering is based on when a message is placed into a folder (i.e. first message in the folder is 1, second message in is 2, etc.). However, this ordering has no regard for a messa...
Are asked 5/8, 2011 at 22:26

1

Solved

With the following ruby code, I can read a user's mail in an inbox via IMAP: require 'net/imap' imap = Net::IMAP.new('imap.gmail.com',993,true) imap.login('user','passwd') imap.select('INBOX') mai...
Faldstool asked 16/7, 2011 at 4:9

2

Solved

I have a local imap server which used to pull mails from external mail server and distribute mails locally. This server is now used by a sngle user, as other users are comfortable using the webbase...
Plumlee asked 24/1, 2011 at 9:32

2

I am currently using Zend_Mail_Storage_Imap to read email messages using IMAP. I am able to read the email body (text and html) thanks to the documentation. Now I'm trying to figure out how to sav...
Meroblastic asked 24/6, 2011 at 23:10

1

I'm sending lots of similar emails out via SMTP using the following Python snippet: def send(from_, to, body): server = smtplib.SMTP('smtp.gmail.com:587') server.ehlo() server.starttls() serve...
Kislev asked 25/5, 2011 at 15:12

1

Solved

Is there a way to fetch the mail bodies of multiple emails with a single call to an IMAP server using the Javamail API? I know I can get to the body of a given message using the Message.getContent...
Wagon asked 3/5, 2011 at 22:15

1

I'd like to download the text (that is mime type text/plain, text/html text/richtext) from UID x to UID y. I have the UID's (and not mailbox IDs). How can I do something like FETCH 412444:412500...
Curtal asked 3/7, 2010 at 5:37

© 2022 - 2024 — McMap. All rights reserved.