From 2d9aba7e041e5a3e43c5210c652bdc2d6b48a863 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sun, 25 Jan 2026 13:20:58 -0600 Subject: [PATCH] moved --- {unified-worker/email-worker => email-worker}/.dockerignore | 0 {unified-worker/email-worker => email-worker}/.env.example | 0 {unified-worker/email-worker => email-worker}/.gitignore | 0 {unified-worker/email-worker => email-worker}/Dockerfile | 0 {unified-worker/email-worker => email-worker}/Makefile | 0 {unified-worker/email-worker => email-worker}/aws/__init__.py | 0 .../email-worker => email-worker}/aws/dynamodb_handler.py | 0 {unified-worker/email-worker => email-worker}/aws/s3_handler.py | 0 {unified-worker/email-worker => email-worker}/aws/ses_handler.py | 0 {unified-worker/email-worker => email-worker}/aws/sqs_handler.py | 0 {unified-worker/email-worker => email-worker}/config.py | 0 {unified-worker/email-worker => email-worker}/docker-compose.yml | 0 .../email-worker => email-worker}/docs/ARCHITECTURE.md | 0 {unified-worker/email-worker => email-worker}/docs/CHANGELOG.md | 0 .../email-worker => email-worker}/docs/COMPATIBILITY.md | 0 {unified-worker/email-worker => email-worker}/docs/MIGRATION.md | 0 {unified-worker/email-worker => email-worker}/docs/QUICKSTART.md | 0 {unified-worker/email-worker => email-worker}/docs/README.md | 0 {unified-worker/email-worker => email-worker}/docs/SUMMARY.md | 0 {unified-worker/email-worker => email-worker}/domain_poller.py | 0 {unified-worker/email-worker => email-worker}/domains.txt | 0 .../email-worker => email-worker}/email_processing/__init__.py | 0 .../email-worker => email-worker}/email_processing/blocklist.py | 0 .../email_processing/bounce_handler.py | 0 .../email-worker => email-worker}/email_processing/parser.py | 0 .../email_processing/rules_processor.py | 0 {unified-worker/email-worker => email-worker}/health_server.py | 0 {unified-worker/email-worker => email-worker}/logger.py | 0 {unified-worker/email-worker => email-worker}/main.py | 0 {unified-worker/email-worker => email-worker}/metrics/__init__.py | 0 .../email-worker => email-worker}/metrics/prometheus.py | 0 {unified-worker/email-worker => email-worker}/requirements.txt | 0 {unified-worker/email-worker => email-worker}/smtp/__init__.py | 0 {unified-worker/email-worker => email-worker}/smtp/delivery.py | 0 {unified-worker/email-worker => email-worker}/smtp/pool.py | 0 {unified-worker/email-worker => email-worker}/unified_worker.py | 0 {unified-worker/email-worker => email-worker}/worker.py | 0 37 files changed, 0 insertions(+), 0 deletions(-) rename {unified-worker/email-worker => email-worker}/.dockerignore (100%) rename {unified-worker/email-worker => email-worker}/.env.example (100%) rename {unified-worker/email-worker => email-worker}/.gitignore (100%) rename {unified-worker/email-worker => email-worker}/Dockerfile (100%) rename {unified-worker/email-worker => email-worker}/Makefile (100%) rename {unified-worker/email-worker => email-worker}/aws/__init__.py (100%) rename {unified-worker/email-worker => email-worker}/aws/dynamodb_handler.py (100%) rename {unified-worker/email-worker => email-worker}/aws/s3_handler.py (100%) rename {unified-worker/email-worker => email-worker}/aws/ses_handler.py (100%) rename {unified-worker/email-worker => email-worker}/aws/sqs_handler.py (100%) rename {unified-worker/email-worker => email-worker}/config.py (100%) rename {unified-worker/email-worker => email-worker}/docker-compose.yml (100%) rename {unified-worker/email-worker => email-worker}/docs/ARCHITECTURE.md (100%) rename {unified-worker/email-worker => email-worker}/docs/CHANGELOG.md (100%) rename {unified-worker/email-worker => email-worker}/docs/COMPATIBILITY.md (100%) rename {unified-worker/email-worker => email-worker}/docs/MIGRATION.md (100%) rename {unified-worker/email-worker => email-worker}/docs/QUICKSTART.md (100%) rename {unified-worker/email-worker => email-worker}/docs/README.md (100%) rename {unified-worker/email-worker => email-worker}/docs/SUMMARY.md (100%) rename {unified-worker/email-worker => email-worker}/domain_poller.py (100%) rename {unified-worker/email-worker => email-worker}/domains.txt (100%) rename {unified-worker/email-worker => email-worker}/email_processing/__init__.py (100%) rename {unified-worker/email-worker => email-worker}/email_processing/blocklist.py (100%) rename {unified-worker/email-worker => email-worker}/email_processing/bounce_handler.py (100%) rename {unified-worker/email-worker => email-worker}/email_processing/parser.py (100%) rename {unified-worker/email-worker => email-worker}/email_processing/rules_processor.py (100%) rename {unified-worker/email-worker => email-worker}/health_server.py (100%) rename {unified-worker/email-worker => email-worker}/logger.py (100%) rename {unified-worker/email-worker => email-worker}/main.py (100%) rename {unified-worker/email-worker => email-worker}/metrics/__init__.py (100%) rename {unified-worker/email-worker => email-worker}/metrics/prometheus.py (100%) rename {unified-worker/email-worker => email-worker}/requirements.txt (100%) rename {unified-worker/email-worker => email-worker}/smtp/__init__.py (100%) rename {unified-worker/email-worker => email-worker}/smtp/delivery.py (100%) rename {unified-worker/email-worker => email-worker}/smtp/pool.py (100%) rename {unified-worker/email-worker => email-worker}/unified_worker.py (100%) rename {unified-worker/email-worker => email-worker}/worker.py (100%) diff --git a/unified-worker/email-worker/.dockerignore b/email-worker/.dockerignore similarity index 100% rename from unified-worker/email-worker/.dockerignore rename to email-worker/.dockerignore diff --git a/unified-worker/email-worker/.env.example b/email-worker/.env.example similarity index 100% rename from unified-worker/email-worker/.env.example rename to email-worker/.env.example diff --git a/unified-worker/email-worker/.gitignore b/email-worker/.gitignore similarity index 100% rename from unified-worker/email-worker/.gitignore rename to email-worker/.gitignore diff --git a/unified-worker/email-worker/Dockerfile b/email-worker/Dockerfile similarity index 100% rename from unified-worker/email-worker/Dockerfile rename to email-worker/Dockerfile diff --git a/unified-worker/email-worker/Makefile b/email-worker/Makefile similarity index 100% rename from unified-worker/email-worker/Makefile rename to email-worker/Makefile diff --git a/unified-worker/email-worker/aws/__init__.py b/email-worker/aws/__init__.py similarity index 100% rename from unified-worker/email-worker/aws/__init__.py rename to email-worker/aws/__init__.py diff --git a/unified-worker/email-worker/aws/dynamodb_handler.py b/email-worker/aws/dynamodb_handler.py similarity index 100% rename from unified-worker/email-worker/aws/dynamodb_handler.py rename to email-worker/aws/dynamodb_handler.py diff --git a/unified-worker/email-worker/aws/s3_handler.py b/email-worker/aws/s3_handler.py similarity index 100% rename from unified-worker/email-worker/aws/s3_handler.py rename to email-worker/aws/s3_handler.py diff --git a/unified-worker/email-worker/aws/ses_handler.py b/email-worker/aws/ses_handler.py similarity index 100% rename from unified-worker/email-worker/aws/ses_handler.py rename to email-worker/aws/ses_handler.py diff --git a/unified-worker/email-worker/aws/sqs_handler.py b/email-worker/aws/sqs_handler.py similarity index 100% rename from unified-worker/email-worker/aws/sqs_handler.py rename to email-worker/aws/sqs_handler.py diff --git a/unified-worker/email-worker/config.py b/email-worker/config.py similarity index 100% rename from unified-worker/email-worker/config.py rename to email-worker/config.py diff --git a/unified-worker/email-worker/docker-compose.yml b/email-worker/docker-compose.yml similarity index 100% rename from unified-worker/email-worker/docker-compose.yml rename to email-worker/docker-compose.yml diff --git a/unified-worker/email-worker/docs/ARCHITECTURE.md b/email-worker/docs/ARCHITECTURE.md similarity index 100% rename from unified-worker/email-worker/docs/ARCHITECTURE.md rename to email-worker/docs/ARCHITECTURE.md diff --git a/unified-worker/email-worker/docs/CHANGELOG.md b/email-worker/docs/CHANGELOG.md similarity index 100% rename from unified-worker/email-worker/docs/CHANGELOG.md rename to email-worker/docs/CHANGELOG.md diff --git a/unified-worker/email-worker/docs/COMPATIBILITY.md b/email-worker/docs/COMPATIBILITY.md similarity index 100% rename from unified-worker/email-worker/docs/COMPATIBILITY.md rename to email-worker/docs/COMPATIBILITY.md diff --git a/unified-worker/email-worker/docs/MIGRATION.md b/email-worker/docs/MIGRATION.md similarity index 100% rename from unified-worker/email-worker/docs/MIGRATION.md rename to email-worker/docs/MIGRATION.md diff --git a/unified-worker/email-worker/docs/QUICKSTART.md b/email-worker/docs/QUICKSTART.md similarity index 100% rename from unified-worker/email-worker/docs/QUICKSTART.md rename to email-worker/docs/QUICKSTART.md diff --git a/unified-worker/email-worker/docs/README.md b/email-worker/docs/README.md similarity index 100% rename from unified-worker/email-worker/docs/README.md rename to email-worker/docs/README.md diff --git a/unified-worker/email-worker/docs/SUMMARY.md b/email-worker/docs/SUMMARY.md similarity index 100% rename from unified-worker/email-worker/docs/SUMMARY.md rename to email-worker/docs/SUMMARY.md diff --git a/unified-worker/email-worker/domain_poller.py b/email-worker/domain_poller.py similarity index 100% rename from unified-worker/email-worker/domain_poller.py rename to email-worker/domain_poller.py diff --git a/unified-worker/email-worker/domains.txt b/email-worker/domains.txt similarity index 100% rename from unified-worker/email-worker/domains.txt rename to email-worker/domains.txt diff --git a/unified-worker/email-worker/email_processing/__init__.py b/email-worker/email_processing/__init__.py similarity index 100% rename from unified-worker/email-worker/email_processing/__init__.py rename to email-worker/email_processing/__init__.py diff --git a/unified-worker/email-worker/email_processing/blocklist.py b/email-worker/email_processing/blocklist.py similarity index 100% rename from unified-worker/email-worker/email_processing/blocklist.py rename to email-worker/email_processing/blocklist.py diff --git a/unified-worker/email-worker/email_processing/bounce_handler.py b/email-worker/email_processing/bounce_handler.py similarity index 100% rename from unified-worker/email-worker/email_processing/bounce_handler.py rename to email-worker/email_processing/bounce_handler.py diff --git a/unified-worker/email-worker/email_processing/parser.py b/email-worker/email_processing/parser.py similarity index 100% rename from unified-worker/email-worker/email_processing/parser.py rename to email-worker/email_processing/parser.py diff --git a/unified-worker/email-worker/email_processing/rules_processor.py b/email-worker/email_processing/rules_processor.py similarity index 100% rename from unified-worker/email-worker/email_processing/rules_processor.py rename to email-worker/email_processing/rules_processor.py diff --git a/unified-worker/email-worker/health_server.py b/email-worker/health_server.py similarity index 100% rename from unified-worker/email-worker/health_server.py rename to email-worker/health_server.py diff --git a/unified-worker/email-worker/logger.py b/email-worker/logger.py similarity index 100% rename from unified-worker/email-worker/logger.py rename to email-worker/logger.py diff --git a/unified-worker/email-worker/main.py b/email-worker/main.py similarity index 100% rename from unified-worker/email-worker/main.py rename to email-worker/main.py diff --git a/unified-worker/email-worker/metrics/__init__.py b/email-worker/metrics/__init__.py similarity index 100% rename from unified-worker/email-worker/metrics/__init__.py rename to email-worker/metrics/__init__.py diff --git a/unified-worker/email-worker/metrics/prometheus.py b/email-worker/metrics/prometheus.py similarity index 100% rename from unified-worker/email-worker/metrics/prometheus.py rename to email-worker/metrics/prometheus.py diff --git a/unified-worker/email-worker/requirements.txt b/email-worker/requirements.txt similarity index 100% rename from unified-worker/email-worker/requirements.txt rename to email-worker/requirements.txt diff --git a/unified-worker/email-worker/smtp/__init__.py b/email-worker/smtp/__init__.py similarity index 100% rename from unified-worker/email-worker/smtp/__init__.py rename to email-worker/smtp/__init__.py diff --git a/unified-worker/email-worker/smtp/delivery.py b/email-worker/smtp/delivery.py similarity index 100% rename from unified-worker/email-worker/smtp/delivery.py rename to email-worker/smtp/delivery.py diff --git a/unified-worker/email-worker/smtp/pool.py b/email-worker/smtp/pool.py similarity index 100% rename from unified-worker/email-worker/smtp/pool.py rename to email-worker/smtp/pool.py diff --git a/unified-worker/email-worker/unified_worker.py b/email-worker/unified_worker.py similarity index 100% rename from unified-worker/email-worker/unified_worker.py rename to email-worker/unified_worker.py diff --git a/unified-worker/email-worker/worker.py b/email-worker/worker.py similarity index 100% rename from unified-worker/email-worker/worker.py rename to email-worker/worker.py