summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/440.status-mailq
blob: b75b470be85705515a32830d884c38aa9a5ac779 (plain)
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
#!/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_mailq_enable" in
    [Yy][Ee][Ss])
	if [ ! -x /usr/bin/mailq ]
	then
	    echo '$daily_status_mailq_enable is set but /usr/bin/mailq' \
		"isn't executable"
	    rc=2
	else
	    echo ""
	    echo "Mail in local queue:"

	    rc=$(case "$daily_status_mailq_shorten" in
		[Yy][Ee][Ss])
		    rc=$(mailq |
			perl -ne  'print if /^\s+\S+@/' |
			sort |
			uniq -c |
			sort -nr |
			awk '$1 > 1 {print $1, $2}');;
		*)
		    mailq;;
	    esac | tee /dev/stderr | fgrep -v 'mqueue is empty' | wc -l)
	    [ $rc -gt 1 ] && rc=1

	    case "$daily_status_include_submit_mailq" in
	    [Yy][Ee][Ss])
		if [ -f /etc/mail/submit.cf ]
		then
		    echo ""
		    echo "Mail in submit queue:"

		    rc=$(case "$daily_status_mailq_shorten" in
			[Yy][Ee][Ss])
			    rc=$(mailq -Ac |
				perl -ne  'print if /^\s+\S+@/' |
				sort |
				uniq -c |
				sort -nr |
				awk '$1 > 1 {print $1, $2}');;
			*)
			    mailq -Ac;;
		    esac | tee /dev/stderr | fgrep -v 'mqueue is empty' | wc -l)
		    [ $rc -gt 1 ] && rc=1
		fi;;
	    esac
	fi;;
		
    *)  rc=0;;
esac

exit $rc
OpenPOWER on IntegriCloud