package
0.0.0-20250112113502-35f26b84d253
Repository: https://github.com/fridim/cabot.git
Documentation: pkg.go.dev

# README

#+TITLE: smtp plugin for cabot #+AUTHOR: Guillaume Coré (fridim) [email protected]

  • smtp plugin

This plugin is used to send mail to specific users. It can be handy when you need to notify someone that's not connected to IRC and present in the channel.

#+BEGIN_QUOTE :mail user1 Hey we miss you! #+END_QUOTE

It needs a conf file called =smtp.json=. For example :

#+BEGIN_SRC json { "address": "mx.mydomain.com:587", "hello": "mydomain.com", "user": "cabot", "password": "xxXxxxX", "host": "mx.mydomain.com", "from": "[email protected]", "insecure": true, "mails": { "user1": "[email protected]", "user2": "[email protected]" } } #+END_SRC

Instead of =insecure= you can specify a CA that will be used to verify the TLS connection.

# Structs

No description provided by the author