Authentication now works only via hashed passwords in imc_users table. Users must be created through the password reset flow or directly in the database.
19 lines
421 B
Text
19 lines
421 B
Text
# Database connection settings
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=mailadmin
|
|
DB_PASSWORD=your-database-password
|
|
DB_NAME=mailserver
|
|
|
|
# Security - JWT secret must be at least 32 characters
|
|
JWT_SECRET=your-secret-key-at-least-32-chars
|
|
|
|
# SMTP settings for password reset emails
|
|
SMTP_HOST=localhost
|
|
SMTP_PORT=587
|
|
SMTP_USER=
|
|
SMTP_PASSWORD=
|
|
SMTP_FROM=noreply@yourdomain.com
|
|
|
|
# Application URL
|
|
BASE_URL=http://localhost:8080
|