The email functionality for Kavita. See https://wiki.kavitareader.com/en/guides/misc/email
50K+
This repository is no longer needed for Kavita as of v0.7.14.
This is a simple email relay server that handles emails from Kavita application. By default, Kavita installations will use the Kavita hosted email service. However, if a user wants to setup their own SMTP service, then they can run their own instance of this microService.
docker run --name kavita-email -p 5003:5003 -v ${PWD}/config:/app/config -d jvmilazz0/kavitaemail:latest
version: '3'
services:
email:
image: jvmilazz0/kavitaemail:latest
container_name: kavita-email
volumes:
- ./config:/app/config
ports:
- "5003:5003"
restart: unless-stopped
After the first run, shut down the container and edit the appsettings.json file inside the config folder. When the settings are to your liking, restart and it should apply your SMTP settings.
Content type
Image
Digest
sha256:688622cc9…
Size
138.3 MB
Last updated
over 2 years ago
docker pull jvmilazz0/kavitaemail