003 File Manager
Current Path:
/etc/periodic/daily
etc
/
periodic
/
daily
/
📁
..
📄
100.clean-disks
(1.17 KB)
📄
110.clean-tmps
(1.46 KB)
📄
120.clean-preserve
(1012 B)
📄
130.clean-msgs
(619 B)
📄
140.clean-rwho
(980 B)
📄
150.clean-hoststat
(505 B)
📄
200.backup-passwd
(1.63 KB)
📄
210.backup-aliases
(916 B)
📄
221.backup-gpart
(2.98 KB)
📄
222.backup-gmirror
(1.52 KB)
📄
223.backup-zfs
(1.62 KB)
📄
300.calendar
(605 B)
📄
310.accounting
(1.36 KB)
📄
330.news
(640 B)
📄
400.status-disks
(682 B)
📄
401.status-graid
(492 B)
📄
404.status-zfs
(718 B)
📄
406.status-gmirror
(501 B)
📄
407.status-graid3
(497 B)
📄
408.status-gstripe
(495 B)
📄
409.status-gconcat
(495 B)
📄
410.status-mfi
(591 B)
📄
420.status-network
(518 B)
📄
430.status-uptime
(612 B)
📄
440.status-mailq
(1.32 KB)
📄
450.status-security
(912 B)
📄
460.status-mail-rejects
(1.86 KB)
📄
480.leapfile-ntpd
(360 B)
📄
480.status-ntpd
(408 B)
📄
500.queuerun
(646 B)
📄
510.status-world-kernel
(747 B)
📄
800.scrub-zfs
(2.67 KB)
📄
999.local
(723 B)
Editing: 460.status-mail-rejects
#!/bin/sh # # $FreeBSD$ # # If there is a global system configuration file, suck it in. # if [ -r /etc/defaults/periodic.conf ] then . /etc/defaults/periodic.conf source_periodic_confs fi case "$daily_status_mail_rejects_shorten" in [Yy][Ee][Ss]) shorten='cut -d" " -f2,3';; *) shorten=cat;; esac case "$daily_status_mail_rejects_enable" in [Yy][Ee][Ss]) if [ ! -d /etc/mail ] then echo '$daily_status_mail_rejects_enable is set but /etc/mail' \ "doesn't exist" rc=2 elif [ ! -f /var/log/maillog ] then echo '$daily_status_mail_rejects_enable is set but ' \ "/var/log/maillog doesn't exist" rc=2 elif [ "$daily_status_mail_rejects_logs" -le 0 ] then echo '$daily_status_mail_rejects_enable is set but ' \ '$daily_status_mail_rejects_logs is not greater than zero' rc=2 else echo echo Checking for rejected mail hosts: yesterday=$(date -v-1d '+%b %e') today=$(date '+%b %e') n=$(($daily_status_mail_rejects_logs - 2)) rc=$({ while [ $n -ge 0 ] do if [ -f /var/log/maillog.$n ] then cat /var/log/maillog.$n elif [ -f /var/log/maillog.$n.gz ] then zcat -fc /var/log/maillog.$n.gz elif [ -f /var/log/maillog.$n.bz2 ] then bzcat -fc /var/log/maillog.$n.bz2 fi n=$(($n - 1)) done cat /var/log/maillog } | sed -Ene "/^$today/q" -e "/^$yesterday/{"' s/.*ruleset=check_relay,.* relay=([^,]+), reject=([^ ]*).*/\2 check_relay \1/p t end s/.*ruleset=check_rcpt,.* arg1=<?([^>,]+).* reject=([^ ]+) .* ([^ ]+)/\2 check_rcpt \1 \3/p t end s/.*ruleset=check_([^,]+),.* arg1=<?([^@]+@)?([^>,]+).* reject=([^ ]+) .* ([^ ]+)/\4 check_\1 \3 \5/p :end }' | eval $shorten | sort -f | uniq -ic | sort -fnr | tee /dev/stderr | wc -l) [ $rc -gt 0 ] && rc=1 fi;; *) rc=0;; esac exit $rc
Upload File
Create Folder