1time eMail

Post by: on June 6th, 2007 | File Under Memento, Security

Do you know this? You need an email account for a registration or for any acknowledgement and you don’t want to post your “real” email address to prevent spam.

Visit http://10minutemail.com/ for an account that exists for 10 minutes (or longer).

Nice tool ; )

Thanks to Konsensmilch for the hint.


Comments (One response so far)



exim / remove (all) frozen messages from queue

Post by: on March 22nd, 2007 | File Under Mailserver, Memento
Tags: ,

Just a quick & dirty hack to delete frozen messages for a single / some recipient(s)…

#!/bin/bash
#
# what are we searching for?
# (part of the email-address)
SEARCH="anyrecipient.tld"
#
# exim-bin
EXIM=`which exim`
#
# execute (frozen messages only)..
$EXIM -Mrm $(mailq | grep $SEARCH -B1 | grep frozen |cut -c 11-27)


Thanks to Mark -> this can be done a lot of easier if you want to kill all frozen messages:

exiqgrep -z -i | xargs exim -Mrm

If you want to do this only for some domains / email-addresses, use the first example.


Comments (3 responses so far)