-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmtpModuleUnit.dfm
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathSmtpModuleUnit.dfm
File metadata and controls
71 lines (71 loc) · 1.89 KB
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
object SmtpModule: TSmtpModule
OldCreateOrder = False
OnCreate = DataModuleCreate
OnDestroy = DataModuleDestroy
Height = 307
Width = 332
object MailServer: TIdSMTPServer
Active = True
Bindings = <
item
IP = '0.0.0.0'
Port = 25
end>
IOHandler = SslHandlerServer
MaxConnections = 1000
CommandHandlers = <>
ExceptionReply.Code = '500'
ExceptionReply.Text.Strings = (
'Unknown Internal Error')
Greeting.Code = '220'
Greeting.Text.Strings = (
'Welcome to the our SMTP Server')
MaxConnectionReply.Code = '300'
MaxConnectionReply.Text.Strings = (
'Too many connections. Try again later.')
ReplyTexts = <>
ReplyUnknownCommand.Code = '500'
ReplyUnknownCommand.Text.Strings = (
'Syntax Error')
ReplyUnknownCommand.EnhancedCode.StatusClass = 5
ReplyUnknownCommand.EnhancedCode.Subject = 5
ReplyUnknownCommand.EnhancedCode.Details = 2
ReplyUnknownCommand.EnhancedCode.Available = True
ReplyUnknownCommand.EnhancedCode.ReplyAsStr = '5.5.2'
ServerName = 'Indy SMTP Server'
UseTLS = utUseExplicitTLS
Left = 32
Top = 24
end
object MailClient: TIdSMTP
IOHandler = SslHandlerClient
SASLMechanisms = <>
OnTLSNotAvailable = MailClientTLSNotAvailable
Left = 32
Top = 88
end
object SslHandlerServer: TIdServerIOHandlerSSLOpenSSL
SSLOptions.Mode = sslmUnassigned
SSLOptions.VerifyMode = []
SSLOptions.VerifyDepth = 0
Left = 104
Top = 24
end
object SslHandlerClient: TIdSSLIOHandlerSocketOpenSSL
Destination = ':25'
MaxLineAction = maException
Port = 25
DefaultPort = 0
SSLOptions.Mode = sslmUnassigned
SSLOptions.VerifyMode = []
SSLOptions.VerifyDepth = 0
Left = 104
Top = 88
end
object ServerUserPass: TIdUserPassProvider
Username = 'SENDER'
Password = 'PASSWORD'
Left = 192
Top = 24
end
end