Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit 0ea6e42

Browse files
committed
Update SMTPServerBuilder.kt
1 parent 15dbb62 commit 0ea6e42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

simplekotlinmail-server/src/main/kotlin/net/axay/simplekotlinmail/server/SMTPServerBuilder.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ class SMTPServerBuilder internal constructor(port: Int) {
3434
var connectionTimeout: Pair<Int, TimeUnit> = 1000 * 60 * 1 to TimeUnit.MILLISECONDS
3535

3636
/**
37-
* Set the FromListener for this SMTPServer.
37+
* Set the [FromListener] for this SMTPServer.
3838
*/
3939
fun fromListener(listener: FromListener) {
4040
fromListener = listener
4141
}
4242

4343
/**
44-
* Set the RecipientListener for this SMTPServer.
44+
* Set the [RecipientListener] for this SMTPServer.
4545
*/
4646
fun recipientListener(listener: RecipientListener) {
4747
recipientListener = listener
4848
}
4949

5050
/**
51-
* Set the MailListener for this SMTPServer.
51+
* Set the [MailListener] for this SMTPServer.
5252
*/
5353
fun mailListener(listener: MailListener) {
5454
mailListener = listener

0 commit comments

Comments
 (0)