#!/bin/bash set -e # notifypwexp - send mail to users whose passwords are expiring soon # designed to be run daily or weekly from cron # call with -w for weekly mode (checks to see if warning period begins in the next 7 days # use -w for a weekly cron job, avoiding excessive emails # with no option, it only checks whether we're in the warning period now # use this for a daily cron job # by Dennis Williamson # Origin: http://serverfault.com/questions/11887 # ### SETUP ### if [[ $1 == "-w" ]] # check for expiration warnings beginning during the next seven days then weekmode=7 else weekmode=0 fi admins="root postmaster" declare -r aged=21 # minimum days after expiration before admins are emailed, set to 0 for "always" hostname=$(hostname --fqdn) domainname=$(hostname --domain) # fields in shadow file (system dependent) declare -r last=2 #declare -r may=3 # not used in this script declare -r must=4 declare -r warn=5 #declare -r grace=6 # not used in this script declare -r disable=7 declare -r doesntmust=99999 declare -r warndefault=7 # fields in passwd file declare -r uidfield=3 declare -r unamefield=1 # UID range is system dependent declare -r uidmin=1000 declare -r uidmax=65534 # exclusive # mailx is system dependent notifyprog="mailx" awkprog="awk" dateprog="date" # comment out one of these #useUTC="" useUTC="-u" # +%s is a GNUism - set it to blank and use dateformat if you have # a system that uses something else like epochdays, for example epochseconds="+%s" dateformat="" # blank for GNU when epochseconds="+%s" secondsperday=86400 # set this to 1 for no division today=$(($($dateprog $useUTC $epochseconds $dateformat)/secondsperday)) oIFS=$IFS # ### END SETUP ### # ### MAIL TEMPLATES ### # use single quotes around templates, backslash escapes and substitutions # will be evaluated upon output usersubjecttemplate='Your password is expiring soon' userbodytemplate='Your password on $hostname expires in $((expdate - today)) days. More help is available at http://support.$domainname/password' adminsubjecttemplate='User Password Expired: $user@$hostname' adminbodytemplate='The password for user $user on $hostname expired $age days ago. Please contact this user about their inactive account and consider whether the account should be disabled or deleted.' # ### END MAIL TEMPLATES ### # allow overrides (especially userbodytemplate) declare -r orgconfig=local-ORG/notifypwexp declare -r hostconfig=local/notifypwexp [ ! -r /etc/$orgconfig ] || . /etc/$orgconfig [ ! -r /etc/$hostconfig ] || . /etc/$hostconfig # get real users users=$(getent passwd | $awkprog -F: -v uidfield=$uidfield \ -v unamefield=$unamefield \ -v uidmin=$uidmin \ -v uidmax=$uidmax \ -- '$uidfield>=uidmin && $uidfield