Compare commits

..

No commits in common. "6de869c86ab5f72d361468c9ec4bedc0118a9f9c" and "c9f04c77b4e95aa0a243582ea532ae513c3cd34f" have entirely different histories.

3 changed files with 2 additions and 5 deletions

View File

@ -89,6 +89,4 @@ EMAIL_AUTO_CLASSIFY=false
EMAIL_AI_CONFIDENCE_THRESHOLD=0.7
EMAIL_MAX_FETCH_PER_RUN=50
EMAIL_PROCESS_INTERVAL_MINUTES=5
EMAIL_WORKFLOWS_ENABLED=true
EMAIL_MAX_UPLOAD_SIZE_MB=50
ALLOWED_EXTENSIONS=.pdf,.jpg,.jpeg,.png,.gif,.doc,.docx,.xls,.xlsx,.zip
EMAIL_WORKFLOWS_ENABLED=true

View File

@ -1 +1 @@
1.3.125
1.3.124

View File

@ -70,7 +70,6 @@ class Settings(BaseSettings):
EMAIL_PROCESS_INTERVAL_MINUTES: int = 5
EMAIL_WORKFLOWS_ENABLED: bool = True
EMAIL_MAX_UPLOAD_SIZE_MB: int = 50 # Max file size for email uploads
ALLOWED_EXTENSIONS: List[str] = [".pdf", ".jpg", ".jpeg", ".png", ".gif", ".doc", ".docx", ".xls", ".xlsx", ".zip"] # Allowed file extensions for uploads
# vTiger Cloud Integration
VTIGER_ENABLED: bool = False