5b639a345f
Created modules: - blacklist-check.sh - Check IP blacklists (functional) - mail-queue-inspector.sh - View mail queue (functional) - deliverability-test.sh - Email delivery test (stub) - smtp-connection-test.sh - SMTP connection test (stub) - spf-dkim-dmarc-check.sh - Authentication check (stub) - flush-mail-queue.sh - Clear mail queue (stub) - clean-mailboxes.sh - Mailbox cleanup (stub) Fixes: Email menu now shows all options instead of 'module not found' errors Status: 3 functional, 4 stubs marked 'under development'
7 lines
209 B
Bash
Executable File
7 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
source "$SCRIPT_DIR/lib/common-functions.sh"
|
|
show_banner "clean mailboxes"
|
|
print_warning "This module is under development"
|
|
echo ""
|