-
Notifications
You must be signed in to change notification settings - Fork 21
/
EmailOAuthDm.dfm
102 lines (102 loc) · 2.62 KB
/
EmailOAuthDm.dfm
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
object EmailOAuthDataModule: TEmailOAuthDataModule
OldCreateOrder = True
OnCreate = DataModuleCreate
OnDestroy = DataModuleDestroy
Height = 3000
Width = 4000
object IdSSLIOHandlerSocketPOP: TIdSSLIOHandlerSocketOpenSSL
Destination = ':110'
Intercept = IdConnectionPOP
MaxLineAction = maException
Port = 110
DefaultPort = 0
SSLOptions.Method = sslvTLSv1_2
SSLOptions.SSLVersions = [sslvTLSv1_2]
SSLOptions.Mode = sslmClient
SSLOptions.VerifyMode = []
SSLOptions.VerifyDepth = 0
Left = 632
Top = 248
end
object IdPOP3: TIdPOP3
Intercept = IdConnectionPOP
IOHandler = IdSSLIOHandlerSocketPOP
AuthType = patSASL
AutoLogin = False
SASLMechanisms = <>
Left = 624
Top = 440
end
object IdSMTP1: TIdSMTP
Intercept = IdConnectionInterceptSMTP
IOHandler = IdSSLIOHandlerSocketSMTP
AuthType = satSASL
SASLMechanisms = <>
UseTLS = utUseRequireTLS
Left = 184
Top = 448
end
object IdConnectionInterceptSMTP: TIdConnectionIntercept
OnReceive = IdConnectionReceive
OnSend = IdConnectionSend
Left = 176
Top = 80
end
object IdSSLIOHandlerSocketSMTP: TIdSSLIOHandlerSocketOpenSSL
Destination = ':25'
Intercept = IdConnectionInterceptSMTP
MaxLineAction = maException
Port = 25
DefaultPort = 0
SSLOptions.Method = sslvTLSv1_2
SSLOptions.SSLVersions = [sslvTLSv1_2]
SSLOptions.Mode = sslmClient
SSLOptions.VerifyMode = []
SSLOptions.VerifyDepth = 0
Left = 176
Top = 264
end
object IdHTTPServer1: TIdHTTPServer
Bindings = <>
DefaultPort = 2132
OnCommandGet = IdHTTPServer1CommandGet
Left = 1464
Top = 80
end
object IdConnectionInterceptIMAP: TIdConnectionIntercept
OnReceive = IdConnectionReceive
OnSend = IdConnectionSend
Left = 1096
Top = 72
end
object IdConnectionPOP: TIdConnectionIntercept
OnReceive = IdConnectionReceive
OnSend = IdConnectionSend
Left = 640
Top = 80
end
object IdIMAP: TIdIMAP4
Intercept = IdConnectionInterceptIMAP
IOHandler = IdSSLIOHandlerSocketIMAP
UseTLS = utUseRequireTLS
SASLMechanisms = <>
AuthType = iatSASL
MilliSecsToWaitToClearBuffer = 10
Left = 1088
Top = 440
end
object IdSSLIOHandlerSocketIMAP: TIdSSLIOHandlerSocketOpenSSL
Destination = ':143'
Intercept = IdConnectionInterceptIMAP
MaxLineAction = maException
Port = 143
DefaultPort = 0
SSLOptions.Method = sslvTLSv1_2
SSLOptions.SSLVersions = [sslvTLSv1_2]
SSLOptions.Mode = sslmClient
SSLOptions.VerifyMode = []
SSLOptions.VerifyDepth = 0
Left = 1088
Top = 236
end
end