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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
|
package de.ircmail
import jakarta.mail.*
import jakarta.mail.event.MessageCountEvent
import jakarta.mail.event.MessageCountListener
import jakarta.mail.internet.InternetAddress
import jakarta.mail.internet.MimeMessage
import kotlinx.coroutines.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.delay
import kotlinx.coroutines.isActive
import kotlinx.coroutines.launch
import org.eclipse.angus.mail.imap.IMAPStore
import org.pircbotx.Configuration
import org.pircbotx.PircBotX
import org.pircbotx.hooks.ListenerAdapter
import org.pircbotx.hooks.events.ConnectEvent
import org.pircbotx.hooks.events.MessageEvent
import org.pircbotx.hooks.events.PrivateMessageEvent
import org.slf4j.LoggerFactory
import java.text.SimpleDateFormat
import java.util.*
// Configuration data classes
data class IrcConfig(
val server: String,
val port: Int = 6667,
val ssl: Boolean = false,
val nickname: String,
val username: String,
val realname: String,
val password: String? = null,
val channels: List<String> = emptyList()
)
data class ImapConfig(
val host: String,
val port: Int = 993,
val ssl: Boolean = true,
val username: String,
val password: String,
val folder: String = "INBOX"
)
data class SmtpConfig(
val host: String,
val port: Int = 587,
val ssl: Boolean = true,
val username: String,
val password: String
)
data class BotConfig(
val irc: IrcConfig,
val imap: ImapConfig,
val smtp: SmtpConfig,
val database: String = "./ircmail.db",
val channelPrefix: String = "#contact-"
)
// Contact management
data class Contact(
val emailAddress: String,
val channelName: String,
val displayName: String,
val latestMessageId: String? = null
)
class ContactManager(private val channelPrefix: String) {
private val logger = LoggerFactory.getLogger(ContactManager::class.java)
fun extractContactFromEmail(message: Message): Contact? {
return try {
val fromAddresses = message.from
if (fromAddresses.isNullOrEmpty()) {
logger.warn("Email has no From address")
return null
}
val fromAddress = fromAddresses[0] as InternetAddress
val emailAddress = fromAddress.address
val displayName = fromAddress.personal ?: extractNameFromEmail(emailAddress)
Contact(
emailAddress = emailAddress,
channelName = sanitizeEmailToChannelName(emailAddress),
displayName = displayName,
latestMessageId = getMessageId(message)
)
} catch (e: Exception) {
logger.error("Failed to extract contact from email", e)
null
}
}
private fun sanitizeEmailToChannelName(emailAddress: String): String {
val sanitized = emailAddress
.lowercase()
.replace("@", "-")
.replace(".", "-")
.replace("[^a-z0-9-]".toRegex(), "")
.take(50)
return "$channelPrefix$sanitized"
}
private fun extractNameFromEmail(emailAddress: String): String {
return emailAddress.substringBefore("@")
.replace(".", " ")
.split(" ")
.joinToString(" ") { it.replaceFirstChar { char -> char.uppercase() } }
}
private fun getMessageId(message: Message): String? {
return try {
message.getHeader("Message-ID")?.firstOrNull()
} catch (e: Exception) {
logger.warn("Could not extract Message-ID from email", e)
null
}
}
fun getContactIdentifierFromChannel(channelName: String): String? {
return if (channelName.startsWith(channelPrefix)) {
channelName.removePrefix(channelPrefix)
} else {
null
}
}
}
// SMTP client for sending replies
class SmtpClient(private val config: SmtpConfig) {
private val logger = LoggerFactory.getLogger(SmtpClient::class.java)
private val session: Session by lazy {
val props = Properties().apply {
if (config.ssl) {
put("mail.smtp.host", config.host)
put("mail.smtp.port", config.port.toString())
put("mail.smtp.auth", "true")
put("mail.smtp.starttls.enable", "true")
put("mail.smtp.ssl.protocols", "TLSv1.2")
} else {
put("mail.smtp.host", config.host)
put("mail.smtp.port", config.port.toString())
put("mail.smtp.auth", "false")
}
}
if (config.ssl) {
Session.getInstance(props, object : Authenticator() {
override fun getPasswordAuthentication(): PasswordAuthentication {
return PasswordAuthentication(config.username, config.password)
}
})
} else {
Session.getInstance(props)
}
}
suspend fun sendReply(
toEmail: String,
subject: String,
body: String,
inReplyTo: String? = null,
references: String? = null
) {
try {
val message = MimeMessage(session).apply {
setFrom(InternetAddress(config.username))
setRecipients(Message.RecipientType.TO, InternetAddress.parse(toEmail))
setSubject(if (subject.startsWith("Re:")) subject else "Re: $subject")
setText(body)
inReplyTo?.let { setHeader("In-Reply-To", it) }
references?.let { setHeader("References", it) }
}
Transport.send(message)
logger.info("Sent email reply to $toEmail with subject: $subject")
} catch (e: MessagingException) {
logger.error("Failed to send email to $toEmail", e)
throw e
}
}
}
// IMAP client for monitoring emails
class ImapClient(
private val config: ImapConfig,
private val onNewEmail: suspend (Message) -> Unit
) {
private val logger = LoggerFactory.getLogger(ImapClient::class.java)
private lateinit var store: IMAPStore
private lateinit var folder: Folder
/** Job that polls the folder every few seconds for new messages.
* without this, the new message event will never get called.
*/
private lateinit var pollingJob: Job
suspend fun start() = withContext(Dispatchers.IO) {
logger.info("Connecting to IMAP server: ${config.host}:${config.port}")
val props = Properties().apply {
if (config.ssl) {
put("mail.store.protocol", "imaps")
put("mail.imaps.host", config.host)
put("mail.imaps.port", config.port.toString())
put("mail.imaps.ssl.enable", "true")
put("mail.imaps.ssl.protocols", "TLSv1.2")
} else {
put("mail.store.protocol", "imap")
put("mail.imap.host", config.host)
put("mail.imap.port", config.port.toString())
put("mail.imap.ssl.enable", "false")
}
}
val session = Session.getInstance(props)
val protocol = if (config.ssl) "imaps" else "imap"
store = session.getStore(protocol).apply {
connect(config.host, config.username, config.password)
} as IMAPStore
folder = store.getFolder(config.folder).apply {
open(Folder.READ_ONLY)
}
folder.addMessageCountListener(object : MessageCountListener {
override fun messagesAdded(event: MessageCountEvent) {
event.messages.forEach { message ->
runBlocking {
try {
onNewEmail(message)
} catch (e: Exception) {
logger.error("Error processing new email", e)
}
}
}
}
override fun messagesRemoved(event: MessageCountEvent) {}
})
pollingJob = CoroutineScope(Dispatchers.IO).launch {
while (isActive) {
try {
folder.let { folder ->
if (folder.isOpen) {
logger.debug("Polling for new emails...")
delay(5000)
// the message count will fire the event we are actually listening for
folder.newMessageCount
}
}
} catch (e: Exception) {
logger.error("Email monitoring failed, retrying in 30 seconds", e)
delay(30000)
}
}
}
logger.info("IMAP client started and monitoring ${config.folder}")
}
fun stop() {
pollingJob.cancel()
folder.close(false)
store.close()
logger.info("IMAP client stopped")
}
}
// Email processing and formatting
class EmailProcessor(
private val contactManager: ContactManager,
private val ircBot: EmailIrcBot
) {
private val logger = LoggerFactory.getLogger(EmailProcessor::class.java)
private val dateFormat = SimpleDateFormat("MMM dd HH:mm")
suspend fun processNewEmail(message: Message) {
try {
val contact = contactManager.extractContactFromEmail(message)
if (contact == null) {
logger.warn("Could not extract contact from email")
return
}
logger.info("Processing email from ${contact.emailAddress} to channel ${contact.channelName}")
ircBot.joinChannel(contact.channelName)
val formattedMessage = formatEmailForIrc(message, contact)
ircBot.sendMessage(contact.channelName, formattedMessage)
} catch (e: Exception) {
logger.error("Failed to process email", e)
}
}
private fun formatEmailForIrc(message: Message, contact: Contact): String {
val subject = message.subject ?: "(No Subject)"
val date = message.sentDate?.let { dateFormat.format(it) } ?: "Unknown"
val body = try {
when {
message.isMimeType("text/plain") -> {
message.content as? String ?: "(Could not read content)"
}
message.isMimeType("text/html") -> {
"(HTML email - content not displayed)"
}
message.isMimeType("multipart/*") -> {
"(Multipart email - content not displayed)"
}
else -> "(Unsupported email format)"
}
} catch (e: Exception) {
logger.warn("Could not extract email body", e)
"(Could not read email content)"
}
val preview = body.take(300).replace("\n", " ")
return "📧 From: ${contact.displayName} | $date | $subject | $preview"
}
}
// Email reply handler
class EmailReplyHandler(
private val config: BotConfig,
private val smtpClient: SmtpClient,
private val contactStorage: ContactStorage
) {
private val logger = LoggerFactory.getLogger(EmailReplyHandler::class.java)
suspend fun handleReply(contactIdentifier: String, message: String, fromNick: String) {
logger.info("Processing reply from $fromNick to contact $contactIdentifier: $message")
try {
val contact = contactStorage.getContactByChannelIdentifier(contactIdentifier)
if (contact == null) {
logger.warn("No contact found for identifier: $contactIdentifier")
return
}
val latestEmail = contactStorage.getLatestEmailForContact(contact.emailAddress)
if (latestEmail == null) {
logger.warn("No email history found for contact: ${contact.emailAddress}")
return
}
val replySubject = if (latestEmail.subject.startsWith("Re:")) {
latestEmail.subject
} else {
"Re: ${latestEmail.subject}"
}
val replyBody = buildString {
appendLine("From IRC user: $fromNick")
appendLine()
appendLine(message)
}
smtpClient.sendReply(
toEmail = contact.emailAddress,
subject = replySubject,
body = replyBody,
inReplyTo = latestEmail.messageId,
references = latestEmail.threadId
)
logger.info("Sent email reply to ${contact.emailAddress}")
} catch (e: Exception) {
logger.error("Failed to send reply to contact $contactIdentifier", e)
}
}
}
// Main IRC bot class
class EmailIrcBot(
private val config: BotConfig,
private val emailReplyHandler: EmailReplyHandler
) : ListenerAdapter() {
private val logger = LoggerFactory.getLogger(EmailIrcBot::class.java)
private lateinit var bot: PircBotX
fun start() {
val ircConfig = Configuration.Builder()
.setName(config.irc.nickname)
.setLogin(config.irc.username)
.setRealName(config.irc.realname)
.addServer(config.irc.server, config.irc.port)
.apply {
if (config.irc.ssl) {
addServer(config.irc.server, config.irc.port)
}
config.irc.password?.let { setServerPassword(it) }
config.irc.channels.forEach { addAutoJoinChannel(it) }
}
.addListener(this)
.buildConfiguration()
bot = PircBotX(ircConfig)
logger.info("Starting IRC bot...")
bot.startBot()
}
fun stop() {
if (::bot.isInitialized) {
bot.stopBotReconnect()
bot.close()
}
}
override fun onConnect(event: ConnectEvent) {
logger.info("Connected to IRC server")
}
override fun onMessage(event: MessageEvent) {
val channelName = event.channel.name
if (channelName.startsWith(config.channelPrefix)) {
val contactIdentifier = channelName.removePrefix(config.channelPrefix)
logger.info("Received message in contact channel $channelName from ${event.user?.nick}: ${event.message}")
// Handle as email reply (TODO: make this async)
// emailReplyHandler.handleReply(contactIdentifier, event.message, event.user?.nick ?: "unknown")
}
}
override fun onPrivateMessage(event: PrivateMessageEvent) {
logger.info("Received private message from ${event.user?.nick}: ${event.message}")
}
fun joinChannel(channelName: String) {
if (::bot.isInitialized) {
bot.send().joinChannel(channelName)
logger.info("Joined channel: $channelName")
}
}
fun sendMessage(channelName: String, message: String) {
if (::bot.isInitialized) {
val channel = bot.userChannelDao.getChannel(channelName)
if (channel != null) {
bot.send().message(channelName, message)
logger.debug("Sent message to $channelName: $message")
} else {
logger.warn("Channel $channelName not found or not joined")
}
}
}
}
|