Mail notifications in OpenCloud
This guide shows how to configure your OpenCloud instance to send notification E-Mails by modifying the .env
file in your OpenCloud setup.β
π οΈ Step 1: Open the .env Fileβ
Edit the file with your preferred text editor:
nano .env
Or use vim, code, or gedit as you prefer.
π Step 2: Add or Modify These Environment Variablesβ
Adjust the following lines in your .env
file according to your SMTP provider and requirements.
Note: SMTP_TRANSPORT_ENCRYPTION
and SMTP_INSECURE
may vary depending on your setup.
SMTP Settings:
SMTP_HOST=YOUR_SMTP_HOST
SMTP_PORT=1025
SMTP_SENDER=noreply@your.text
SMTP_USERNAME=YOUR_USERNAME
SMTP_PASSWORD=YOUR_PASSWORD
SMTP_TRANSPORT_ENCRYPTION=none
SMTP_INSECURE=true
β οΈ In the .env file, values should be written without quotation marks. Do not use 'single quotes' or "double quotes" β just enter the plain value.
πΎ Step 3: Save and Exitβ
For nano, press Ctrl + O to save and Ctrl + X to exit.
π Step 4: Restart OpenCloudβ
Apply the changes by restarting the OpenCloud services:
docker compose down
docker compose up -d
OpenCloud is now successfully configured to deliver notification emails, including those triggered by actions such as file sharing.