imap Questions
3
Solved
I'm using OpenSSL to connect to mail server.
POP3 works fine but I have problems with IMAP. Based on CAPABILITY command server supports PLAIN, NTLM and GSS-API authentication methods.
I want to u...
Pitchdark asked 25/8, 2011 at 14:28
1
Solved
I have some code which fetches IMAP emails and works completely well in Python 2. In Python3 I get the following error:
Traceback (most recent call last):
File "./mail.py", line 295, in
item=...
1
My Outlook add-in (C++) processes received email attachments as they are received, which works fine for POP3 accounts, but doesn't work with IMAP accounts because I only receive the email header wi...
Goldbrick asked 13/2, 2012 at 18:38
4
Solved
I'm currently trying to add to a software the capability to list unread emails in the user's inbox using IMAP. After having no success at all using Indy10, I discovered Synapse which seemed better ...
Merlynmermaid asked 24/9, 2009 at 17:48
1
Solved
How to get body texts of all e-mail messages from a certain IMAP mailbox in Delphi ? For example, from the INBOX mailbox ?
Faun asked 28/11, 2012 at 14:19
3
Solved
I have a ruby client that connects to an exchange server using IMAP & SSL. I use the Ruby Net::IMAP library (which uses openssl under the covers) to connect. Its been working fine for months. T...
Tessi asked 17/8, 2010 at 20:39
4
Solved
I am trying to read my messages, I can get it to print the header but the from and the content are displayed funny.
Here is the code I am using to display the messages:
int j = message.length-1;
...
Set asked 20/10, 2012 at 13:12
1
Solved
I have a python script that is checking emails on Gmail's IMAP server, it displays the latest email on the server. The email address however is receiving emails from multiple different accounts. Wh...
2
Solved
I'd like to get a list of everyone who's ever been included on any message in my inbox. Right now I can use the javax mail API to connect via IMAP and download the messages:
Folder folder = imapSs...
Foxhound asked 24/4, 2012 at 4:21
3
Solved
I'm trying to get into the IMAP server with OAuth, using the PHP Sample Code provided by Google which uses the Zend Imap class but I am failing to authenticate. Zend is giving me the error:
Zend_M...
Drawee asked 11/11, 2011 at 11:39
3
Solved
Maybe i've just got a bad brain today, but i suddenly can't figure out how to read an email with ruby's net/imap library. I've been at it for several hours. I typed several variations of "ruby imap...
1
Solved
I am trying to fetch an email body and send a reply to the learner based on it. But i am getting an error Notice: Undefined property: stdClass::$subject while executing my code. I am really lost no...
6
Is there a built-in method to access an Imap server (with SSL) in C# or is there a good free library?
1
Is there any available implementation of POP3/IMAP server in PHP?
I am handling my e-mail service using sendgrid. I am going to store the messages on my server using files/db/whatever and now I'd ...
2
Solved
I'm building an app that uses Gmail to backup some data. I use XOAUTH to connect to Gmail and got the token and secret. But i could not connect to Gmail's IMAP service. I followed the example at ht...
Gaffney asked 18/7, 2012 at 8:8
1
Solved
I am trying to access to my emails in Gmail from a python script. The code I use is the following:
import imaplib
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login("username","password")
m.select("[...
Weave asked 31/7, 2012 at 9:17
1
Solved
I wanted the latest PHP version to work with on a fresh Macbook, but the php installation does not include imap functions by default. There is one specific function I need - namely the "imap_rfc822...
Accountancy asked 22/6, 2012 at 14:27
2
Solved
I am trying to implement a Java Mail servlet, first step is connecting to the IMAP server.
I am able to telnet to the server on port 143 (default IMAP port), telnet says: OK The Microsoft Exchange...
Tool asked 4/5, 2012 at 4:49
6
I'm doing some development which will involve reacting to emails, and I'd like to use a local IMAP mail server for this.
I currently use Devnull SMTP server for testing of sending emails, bu...
Admonition asked 20/4, 2009 at 21:10
2
Solved
I can receive my mails with Imap with this code sample :
URLName server = new URLName("imaps://" + username + ":"+ password + "@imap.gmail.com/INBOX");
Session session = Session.getDefaultInstanc...
Tophole asked 25/4, 2012 at 21:53
1
Solved
The convention with using JavaMail seems to be:
-- Use smtp for sending emails
-- Use imap (or pop) for reading emails ..
For our applications purposes, I reckon it is more useful to use an email...
Toy asked 5/4, 2012 at 16:4
1
I am using the PHP IMAP libraray's imap_search() function to search mails in a Gmail inbox via the subject string.
imap_seach($mbox, 'ALL SUBJECT "<search string>"');
This search r...
Evolution asked 29/9, 2010 at 7:46
2
import imaplib, re
import os
import time
import socket
imap_host = 'imap.gmail.com'
mail = imaplib.IMAP4_SSL(imap_host)
mail.login("[email protected]", "sddd")
while True:
try:
print 'Conn...
3
Solved
I am currently trying to use JavaMail to get emails from IMAP servers (Gmail and others). Basically, my code works: I indeed can get the headers, body contents and so on. My problem is the followin...
Mcclendon asked 30/11, 2011 at 8:7
2
Solved
I'm new to Ruby and a bit confused by the grep command in this block of code. I'm trying to gather all the mailbox names via Net::IMAP and then check them against a mailbox argument. Likely the mai...
© 2022 - 2024 — McMap. All rights reserved.