Command to ignore incoming email

This commit is contained in:
Bob Mottram 2015-04-04 11:05:08 +01:00
parent 7c7cc593aa
commit a505df798d
4 changed files with 108 additions and 0 deletions

View File

@ -22,6 +22,7 @@ install:
install -m 755 src/${APP}-renew-cert ${DESTDIR}${PREFIX}/bin
install -m 755 src/${APP}-rmlist ${DESTDIR}${PREFIX}/bin
install -m 755 src/${APP}-rmemail ${DESTDIR}${PREFIX}/bin
install -m 755 src/${APP}-ignore ${DESTDIR}${PREFIX}/bin
mkdir -m 755 -p ${DESTDIR}${PREFIX}/share/man/man1
install -m 644 man/${APP}.1.gz ${DESTDIR}${PREFIX}/share/man/man1
install -m 644 man/${APP}-prep.1.gz ${DESTDIR}${PREFIX}/share/man/man1
@ -35,6 +36,7 @@ install:
install -m 644 man/${APP}-renew-cert.1.gz ${DESTDIR}${PREFIX}/share/man/man1
install -m 644 man/${APP}-rmlist.1.gz ${DESTDIR}${PREFIX}/share/man/man1
install -m 644 man/${APP}-rmemail.1.gz ${DESTDIR}${PREFIX}/share/man/man1
install -m 644 man/${APP}-ignore.1.gz ${DESTDIR}${PREFIX}/share/man/man1
uninstall:
rm -f ${PREFIX}/share/man/man1/${APP}.1.gz
rm -f ${PREFIX}/share/man/man1/${APP}-prep.1.gz
@ -48,6 +50,7 @@ uninstall:
rm -f ${PREFIX}/share/man/man1/${APP}-renew-cert.1.gz
rm -f ${PREFIX}/share/man/man1/${APP}-rmlist.1.gz
rm -f ${PREFIX}/share/man/man1/${APP}-rmemail.1.gz
rm -f ${PREFIX}/share/man/man1/${APP}-ignore.1.gz
rm -rf ${PREFIX}/share/${APP}
rm -f ${PREFIX}/bin/${APP}
rm -f ${PREFIX}/bin/${APP}-prep
@ -60,6 +63,7 @@ uninstall:
rm -f ${PREFIX}/bin/${APP}-addemail
rm -f ${PREFIX}/bin/${APP}-renew-cert
rm -f ${PREFIX}/bin/${APP}-rmlist
rm -f ${PREFIX}/bin/${APP}-ignore
clean:
rm -f \#* \.#* debian/*.substvars debian/*.log
rm -fr deb.* debian/${APP}

View File

@ -10,3 +10,4 @@ man/freedombone-addemail.1.gz
man/freedombone-renew-cert.1.gz
man/freedombone-rmlist.1.gz
man/freedombone-rmemail.1.gz
man/freedombone-ignore.1.gz

BIN
man/freedombone-ignore.1.gz Normal file

Binary file not shown.

103
src/freedombone-ignore Executable file
View File

@ -0,0 +1,103 @@
#!/bin/bash
# Adds an email ignore rule for either an email address
# or text in the subject line
# License
# =======
#
# Copyright (C) 2015 Bob Mottram <bob@robotics.uk.to>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
MYUSERNAME=$USER
EMAIL_ADDRESS=
SUBJECT_TEXT=
function show_help {
echo ''
echo 'freedombone-ignore -u [username] -e [mail address] -t [text in subject line]'
echo ''
exit 0
}
while [[ $# > 1 ]]
do
key="$1"
case $key in
-h|--help)
show_help
;;
-u|--user)
shift
MYUSERNAME="$1"
;;
-e|--email)
shift
EMAIL_ADDRESS="$1"
;;
-t|--text)
shift
SUBJECT_TEXT="$1"
;;
*)
# unknown option
;;
esac
shift
done
if ! [[ $MYUSERNAME && $EMAIL_ADDRESS ]]; then
if ! [[ $MYUSERNAME && $SUBJECT_TEXT ]]; then
show_help
fi
fi
MUTTRC=/home/$MYUSERNAME/.muttrc
PM=/home/$MYUSERNAME/.procmailrc
# Ignore if subject line contains text
if [ $SUBJECT_TEXT ]; then
if ! grep -q "Ignore rule for $SUBJECT_TEXT" $PM; then
echo "" >> $PM
echo "# Ignore rule for $SUBJECT_TEXT" >> $PM
echo ":0" >> $PM
echo " * ^Subject:.*$SUBJECT_TEXT" >> $PM
echo "/dev/null" >> $PM
echo "# End of ignore rule" >> $PM
chown $MYUSERNAME:$MYUSERNAME $PM
fi
fi
# ignore an email address
if [ $EMAIL_ADDRESS ]; then
if ! grep -q "Ignore rule for $EMAIL_ADDRESS" $PM; then
echo "" >> $PM
echo "# Ignore rule for $EMAIL_ADDRESS" >> $PM
echo ":0" >> $PM
echo " * ^From: $EMAIL_ADDRESS" >> $PM
echo "/dev/null" >> $PM
echo "# End of ignore rule" >> $PM
chown $MYUSERNAME:$MYUSERNAME $PM
fi
fi
PROCMAILLOG=/home/$MYUSERNAME/log
if [ ! -d $PROCMAILLOG ]; then
mkdir $PROCMAILLOG
chown -R $MYUSERNAME:$MYUSERNAME $PROCMAILLOG
fi
exit 0