jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

commit 6f9f49b3dec2c99aaf265916faeb2e65344edfa8
parent 97954b294dda22821211a200b19e7794cd73dc54
Author: Jaromil <jaromil@dyne.org>
Date:   Mon, 14 May 2012 23:09:56 +0200

better options for secure delete (10x alv)

Diffstat:
Msrc/jaro | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/jaro b/src/jaro @@ -142,9 +142,9 @@ check_bin() { # which wipe command to use which wipe > /dev/null - if [ $? = 0 ]; then rm="wipe -f -s" + if [ $? = 0 ]; then rm="wipe -f -s -q -R /dev/urandom" else which srm > /dev/null - if [ $? = 0 ]; then rm="srm -f" + if [ $? = 0 ]; then rm="srm -f -l" else rm="rm -f"; fi fi }