937 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
310
views
I can't use POP3 to read OUTLOOK mail
Below is the code that I used:
try
{
using (var client = new Pop3Client())
{
client.Connect("outlook.office365.com", 995, true);
client.Authenticate("email"...
0
votes
0
answers
82
views
How to read mails from exchange server by using Pop3 protocol in VS2022
I was using below c# code in Visual studio 2022 to read mails from exchange server folder testmail and getting error as ERR Logon failure: unknown user name or bad password at line below. telnet is ...
1
vote
0
answers
353
views
Title: "IMAP Connection Error: 'Socket error: 0x02: Connection not allowed by ruleset' when using SOCKS5 Proxy in Python"
I'm trying to connect to an IMAP server through a SOCKS5 proxy using Python. However, I keep encountering the error: Socket error: 0x02: Connection not allowed by ruleset. Below is the code I'm using:
...
1
vote
1
answer
413
views
DDEV - how to access Mailpit POP3 server
Need to access builtin POP3 server inside of Mailpit.
Mailpit is mentioning adding auth to enable POP3 feature.
I'm developing code for "unsubscribe" feature available in email clients (not ...
0
votes
2
answers
93
views
Unable to connect to POP3 server swift
I'm trying to connect to POP3 Server using Swift. Here is my code, I have used InputStream and OutputStream.
import Foundation
class Pop3Client{
var inputStream: InputStream!
var outputStream: ...
1
vote
2
answers
368
views
Getting a "Bad username or password" error using OpenPop.Net with Microsoft Outlook 365 email accounts
We have a custom application which uses OpenPop.Net, connecting via POP3 and pulling messages down for processing from a Microsoft Office 365 email account. This has always worked fine up until a ...
0
votes
1
answer
404
views
Unable to get telnet to work and test pop 995 port
Trying to test email login issues on a cpanel server. Telnet isn't working to test port 995. Keep receiving connection closed by foreign host error. Thanks!
Telnet is installed and firewalls open. Not ...
2
votes
1
answer
6k
views
I'm getting error that DelegateAuthenticationProvider and MeRequestBuilder are not found in the graphService client I use to read Microsoft 365 mail
Since Microsoft has switched from basic auth to bearer auth as of 2023, I cannot perform mail reading operations. I am trying to read with GraphServiceClient, but I am getting the below mentioned ...
4
votes
2
answers
713
views
Connecting to POP3 from Perl no longer works for outlook.office365.com
On Ubuntu v18.04.3 LTS.
POP3 server we use: outlook.office365.com
POP3 port: 995
Perl 5.26.1
We use a Perl module Net::POP3 and we use TLS with that.
This has worked for several years on the same POP ...
0
votes
0
answers
203
views
How to solve 'ERR Logon failure' error when reading Microsoft 365 mails using POP3 in C#?
Although my password is correct when reading mail with POP3, I get the error -'ERR Logon failure: unknown user name or bad password' in MICROSOFT 365 mails. I can read all other mails but I have ...
0
votes
0
answers
142
views
How to read Body of POP3 outlook account with MAPI .pst using C#
I am trying to write a program that connects to a POP3 Outlook account (the account is on a different computer than the one I am coding on) with MAPI setup in a personal sotrage folder (.pst). I am ...
0
votes
0
answers
26
views
I want to print my email box to my website with php [duplicate]
Checking the mails to my e-mail address with phpmailler, and printing them on my website
Is there a way to do it with PHPMailer?
Or how can I do
// include necessary files
require_once "PHPMailer/...
0
votes
1
answer
290
views
How to using Ruby Mail gem to retrieve email using POP3 and oauth2 token for office 365?
Currently we are using the mail gem to access our email in outlook.
Mail.defaults do
retriever_method :pop3,
address: "outlook.office365.com",
port: 995,
user_name: username,
...
0
votes
0
answers
751
views
Javax net SSL sslhandshakeexception Remote host terminated the handshake
I'm trying to create a Java application that only receives emails from my private email (not gmail), but I keep getting errors, whether it's a connection failed or SSL handshake problems, the last ...
1
vote
2
answers
134
views
How to see top 20 e-mails with C#
I am trying to do a mail app with Windows Forms C#. I only want to see the top 20 rows of my inbox.
Edit:
The code is working fine but only listing me 20 random emails in my inbox
I've tried this:
...