Questions tagged as 'imap'

3
answers

Pick up email response content

I'm using the imap library to sign in to a company account and bring in the new emails when it's an answer of an email I would just pick up the new content but I can not get this just the full conversation. Let me give you an example: A cli...
asked by 05.04.2018 / 21:22
1
answer

PHP decoding of characters in an IMAP connection

Introduction I'm working on an email box where I'll later have to filter the messages by senders. But the problem is in the coding of some "subjects". I make a connection to the mail server through the imap_open function; $mail_box =...
asked by 12.09.2018 / 16:07
1
answer

Move multiple messages to a folder using JavaMail

I want to refactor an email handling code, I know you can remove multiple messages in one operation, but to move multiple messages to a certain folder, I use the IMAP protocol.     
asked by 05.02.2014 / 14:44
1
answer

Convert a stream to string?

I'm getting emails from the inbox of an account I created for testing, I'm looking for them with the node-imap and parsing them with MailParser and I'm getting the most of the information I need except the email text, because the same is in...
asked by 23.08.2017 / 16:49
2
answers

Backup email IMAP OR POP what difference? [closed]

I'm not sure if I'm going to use the MailStore Home tool but I do not know if I can do IMAP or POP Backup, does anyone know the difference?     
asked by 29.06.2016 / 19:21
1
answer

Filter reading emails from a date

I have the following code snippet that reads emails from the inbox. try { email.conectar(); javax.mail.Store store = email.getArquivoEmail(); Folder inbox = store.getFolder("inbox"); inbox.open(Folder.READ_ONLY); //Aqui go...
asked by 19.05.2016 / 20:22
0
answers

E-mail responses (imap / pop3)

I have a problem with a project where I manage e-mail. Idea: List the emails. When entering an email, list all responses to the email Problem: To know if an email is another email response I am using the "references" field that comes from...
asked by 26.01.2016 / 10:58
1
answer

How to separate HTTP and IMAP access from the same domain on different servers?

I have a hosting account on Locaweb, logically IMAP and HTTP . I am planning to migrate to AWS (Amazon Web Service) . However, before making such a change, I first want to only change the access to the site (HTTP) of the domain, and leave the...
asked by 01.11.2014 / 19:28
1
answer

Error in imap_qprint

Does anyone know why this error occurs when using imap_qprint . $body = imap_qprint(imap_body($mailbox,$i));   Invalid quoted-printable sequence:="UTF-8" Content-Transfer-Encoding: quoted-printable Ol = C3 = A1, searched for 13 (errflg = 3...
asked by 27.10.2017 / 04:09
1
answer

Use stream on NodeJS?

I am doing an email application (HapiJS) and am looking for them through node-imap and parsing through of Mailparser , and for Mailparser to parse, email must be in the form of Stream, Buffer, or String. / p> How can I create a Stream in me...
asked by 28.08.2017 / 16:38