-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.sh
132 lines (97 loc) · 3.5 KB
/
mail.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/bin/bash
#author: salman sk
LOGS_DIR="logs"
LOG_FILE="$LOGS_DIR/mail.log"
CONFIG_FILE="config.conf"
MAIL_LOG="/var/log/exim/mainlog"
SPAM_DIR="/var/spool/exim/db/spam"
PHISHING_DIR="/var/spool/exim/db/phishing" # Customize this path if needed
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit 1
fi
if [ ! -f "$config_file" ]; then
echo "Config file not found. Exiting."
exit 1
fi
source "$config_file"
mkdir -p "$LOGS_DIR"
log_message() {
local message="$1"
echo "$(date +"%Y-%m-%d %H:%M:%S") - $message" | tee -a "$LOG_FILE"
}
load_config() {
if [[ -f "$CONFIG_FILE" ]]; then
log_message "Loading configuration from $CONFIG_FILE"
source "$CONFIG_FILE"
else
log_message "Configuration file $CONFIG_FILE not found. Using defaults."
fi
}
clear_mail_queue() {
log_message "Clearing the mail queue..."
exim -bp | awk '{print $3}' | xargs -I {} exim -Mrm {} >> "$LOG_FILE" 2>&1
log_message "Mail queue cleared."
}
clear_spam_emails() {
log_message "Clearing spam emails..."
if [[ -d "$SPAM_DIR" ]]; then
rm -rf "$SPAM_DIR"/*
log_message "Spam emails cleared from $SPAM_DIR."
else
log_message "Spam directory $SPAM_DIR not found. Skipping spam clearance."
fi
if [[ -d "$PHISHING_DIR" ]]; then
rm -rf "$PHISHING_DIR"/*
log_message "Phishing emails cleared from $PHISHING_DIR."
else
log_message "Phishing directory $PHISHING_DIR not found. Skipping phishing clearance."
fi
}
optimize_mail_system() {
log_message "Optimizing the mail system..."
# Reload Exim configuration to apply any changes
exim -qff >> "$LOG_FILE" 2>&1
log_message "Mail system optimized and reloaded."
}
check_mail_logs() {
log_message "Checking mail logs statistics..."
local timestamp=$(date +"%Y%m%d_%H%M%S")
local log_file="$LOGS_DIR/mail_logs_$timestamp.log"
: > "$log_file"
log_message "Saving mail log stats to $log_file"
echo "---- Mail Log Statistics ----" >> "$log_file"
echo "Date: $(date)" >> "$log_file"
echo >> "$log_file"
echo "1. Total messages processed:" >> "$log_file"
grep "==> " "$MAIL_LOG" | wc -l >> "$log_file"
echo "2. Messages delivered:" >> "$log_file"
grep "completed" "$MAIL_LOG" | wc -l >> "$log_file"
echo "3. Messages rejected:" >> "$log_file"
grep "rejected" "$MAIL_LOG" | wc -l >> "$log_file"
echo "4. Messages bounced:" >> "$log_file"
grep "bounced" "$MAIL_LOG" | wc -l >> "$log_file"
echo "5. Messages deferred:" >> "$log_file"
grep "deferred" "$MAIL_LOG" | wc -l >> "$log_file"
echo "6. Authentication failures:" >> "$log_file"
grep "auth" "$MAIL_LOG" | grep "failed" | wc -l >> "$log_file"
echo "7. Spam detected:" >> "$log_file"
grep "Spam:" "$MAIL_LOG" | wc -l >> "$log_file"
echo "8. Phishing attempts:" >> "$log_file"
grep "Phishing:" "$MAIL_LOG" | wc -l >> "$log_file"
echo "9. Messages with unknown recipients:" >> "$log_file"
grep "unknown" "$MAIL_LOG" | wc -l >> "$log_file"
echo "10. Messages with invalid addresses:" >> "$log_file"
grep "invalid" "$MAIL_LOG" | wc -l >> "$log_file"
echo >> "$log_file"
echo "---- End of Statistics ----" >> "$log_file"
log_message "Mail log stats saved to $log_file."
}
log_message "Starting mail system management script..."
load_config
clear_mail_queue
clear_spam_emails
optimize_mail_system
check_mail_logs
log_message "Mail system management completed."
exit 0