44 lines
1.3 KiB
Bash
Executable File
44 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# vmail-stack
|
|
# https://git.stack-source.com/msb/vmail-stack
|
|
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# load include file
|
|
source $(dirname $0)/vmail.sh
|
|
|
|
help()
|
|
{
|
|
thisfilename=$(basename -- "$0")
|
|
echo "$thisfilename"
|
|
echo "Purge exim (SMTP) mail spool."
|
|
echo ""
|
|
echo "usage: $thisfilename [<regex>] [-h]"
|
|
echo ""
|
|
echo " -h Print this help."
|
|
echo " <regex> Search term to grep through email headers."
|
|
echo " Any matches will result in that email being purged from the spool."
|
|
echo " Run without specifying any regex to list out the Subject of all"
|
|
echo " emails in the spool."
|
|
echo " Useful to purge spam or undeliverable bounce or other error messages."
|
|
echo ""
|
|
echo " This script must be run as root or Debian-exim, or a user that can"
|
|
echo " sudo to the Debian-exim user."
|
|
}
|
|
|
|
vmail:getoptions "$@"
|
|
|
|
cd /var/spool/exim4/input
|
|
# check for regex
|
|
if [ -n "$1" ]; then
|
|
# purge email(s)
|
|
grep "$1" *-H |cut -d : -f 1 |sed '/-H$/s/-H$//g' |xargs exim -Mrm
|
|
else
|
|
# get list of email Subjects
|
|
grep Subject *-H
|
|
echo
|
|
echo "usage:"
|
|
echo " $0 \"regex\""
|
|
fi
|