aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp/testdata
AgeCommit message (Collapse)Author
2026-01-15all: convert license and copyright to use SPDX identifiersShulhan
With help of spdxconv tool [1], we able to bulk update all files license and copyright format to comply with SPDX formats. [1] https://kilabit.info/project/spdxconv/
2023-05-30lib/smtp: implement Client SendEmailShulhan
Somehow in 3a1a2715b25f, we include this method without implementing it. The SendEmail method simplify sending email by automatically create [MailTx] for passing it to method Client.MailTx. The test right now use live connection since the Server is not ready yet.
2020-11-23smtp: update the expired test certificateShulhan
2019-02-22smtp: replace EnvironmentIni with EnvDirectShulhan
EnvironmentIni is too generic for library and require additional processing (parsing file). EnvDirect provide a simple environment that should be used only on testing.
2019-01-08lib/smtp: add option to load TLS certificate from environmentShulhan
The certificate will be used to listen on secure port (usually port 465).
2019-01-08lib/smtp: move example configuration to directory "testdata"Shulhan
2019-01-07lib/smtp: library for SMTP server and clientShulhan