mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-19 11:49:32 +08:00
feat: add imap proxy server (#225)
This commit is contained in:
21
smtp_proxy_server/config.py
Normal file
21
smtp_proxy_server/config.py
Normal file
@@ -0,0 +1,21 @@
|
||||
import logging
|
||||
from pydantic_settings import BaseSettings
|
||||
|
||||
logging.basicConfig(
|
||||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
||||
)
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
_logger.setLevel(logging.INFO)
|
||||
|
||||
|
||||
class Settings(BaseSettings):
|
||||
proxy_url: str = "http://localhost:8787"
|
||||
port: int = 8025
|
||||
imap_port: int = 11143
|
||||
|
||||
class Config:
|
||||
env_file = ".env"
|
||||
|
||||
|
||||
settings = Settings()
|
||||
Reference in New Issue
Block a user