remove unused usenet_directory var and fix types of the configs

This commit is contained in:
maxDorninger
2025-07-10 22:33:44 +02:00
parent 7ce6de7f85
commit 8a89a24f25
3 changed files with 9 additions and 10 deletions

View File

@@ -2,11 +2,11 @@ from pydantic_settings import BaseSettings
class EmailConfig(BaseSettings):
smtp_host: str
smtp_port: int
smtp_user: str
smtp_password: str
from_email: str
smtp_host: str = ""
smtp_port: int = 587
smtp_user: str = ""
smtp_password: str = ""
from_email: str = ""
use_tls: bool = False