-
Notifications
You must be signed in to change notification settings - Fork 153
/
Pop3Client.cs
86 lines (72 loc) · 2.41 KB
/
Pop3Client.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System;
using System.Text.RegularExpressions;
namespace AE.Net.Mail {
public class Pop3Client : TextClient, IMailClient {
public Pop3Client() { }
public Pop3Client(string host, string username, string password, int port = 110, bool secure = false, bool skipSslValidation = false) {
Connect(host, port, secure, skipSslValidation);
Login(username, password);
}
internal override void OnLogin(string username, string password) {
SendCommandCheckOK("USER " + username);
SendCommandCheckOK("PASS " + password);
}
internal override void OnLogout() {
if (_Stream != null) {
SendCommand("QUIT");
}
}
internal override void CheckResultOK(string result) {
if (!result.StartsWith("+OK", StringComparison.OrdinalIgnoreCase)) {
throw new Exception(result.Substring(result.IndexOf(' ') + 1).Trim());
}
}
public virtual int GetMessageCount() {
CheckConnectionStatus();
var result = SendCommandGetResponse("STAT");
CheckResultOK(result);
return int.Parse(result.Split(' ')[1]);
}
public virtual MailMessage GetMessage(int index, bool headersOnly = false) {
return GetMessage((index + 1).ToString(), headersOnly);
}
private static Regex rxOctets = new Regex(@"(\d+)\s+octets", RegexOptions.IgnoreCase);
public virtual MailMessage GetMessage(string uid, bool headersOnly = false) {
CheckConnectionStatus();
var line = SendCommandGetResponse(string.Format(headersOnly ? "TOP {0} 0" : "RETR {0}", uid));
var size = rxOctets.Match(line).Groups[1].Value.ToInt();
CheckResultOK(line);
var msg = new MailMessage();
msg.Load(_Stream, headersOnly, size, '.');
msg.Uid = uid;
var last = GetResponse();
if (string.IsNullOrEmpty(last))
{
try
{
last = GetResponse();
}
catch (System.IO.IOException)
{
// There was really nothing back to read from the remote server
}
}
if (last != ".") {
#if DEBUG
System.Diagnostics.Debugger.Break();
#endif
RaiseWarning(msg, "Expected \".\" in stream, but received \"" + last + "\"");
}
return msg;
}
public virtual void DeleteMessage(string uid) {
SendCommandCheckOK("DELE " + uid);
}
public virtual void DeleteMessage(int index) {
DeleteMessage((index + 1).ToString());
}
public virtual void DeleteMessage(AE.Net.Mail.MailMessage msg) {
DeleteMessage(msg.Uid);
}
}
}