-
Notifications
You must be signed in to change notification settings - Fork 2
/
smtp.yml
32 lines (26 loc) · 1.4 KB
/
smtp.yml
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
fakesmtp:
#The SMTP Server Port used by the Fake SMTP Server
port: 8025
#The binding address of the Fake SMTP Server; Bound to all interfaces by default / no value
bindAddress: 127.0.0.1
#List of recipient addresses which should be blocked/rejected
blockedRecipientAddresses:
#List of sender email addresses to ignore, as a comma-separated list of regex expressions.
filteredEmailRegexList: john@doe\\.com,.*@google\\.com ; empty by default
#Optional configuration option to specify the maximum allowed message size. The size can be
#defined using Spring Boot DataSize value type - https://docs.spring.io/spring-boot/docs/2.1.9.RELEASE/reference/html/boot-features-external-config.html#boot-features-external-config-conversion-datasize.
#Default: no limit
maxMessageSize: 10MB
#Configure if TLS is required to connect to the SMTP server. Defaults to false. See TLS section below
requireTLS: false
#When set to true emails will be forwarded to a configured target email system. Therefore
#the spring boot mail system needs to be configured. See also
# https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-email
forwardEmails: false
authentication:
#Username of the client to be authenticated
username: myuser
#Password of the client to be authenticated
password: mysecretpassword