Displaying 2 results from an estimated 2 matches for "supportrq".
2008 Dec 11
1
removal of all keyword.
Hi,
how can I remove all keywords from an existing Maildir/?
After reading the docs I assume this might work:
1. Stopping dovecot
2. Removing all lowercase [a-z] from the filename flags
3. Removing the dovecot-keywords file
4. Removing the dovecot.index / dovecot.index.* files
Is that correct?
matthias
2008 Dec 10
2
assert with zlib and (maybe) fts
Hi,
I compressed a folder with the following script:
...
for i in *.*.*; do
file $i | grep bzip2 >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Compress: $i"
cat "$i" | bzip2 -9 > ../tmp/$i
if [ $? -eq 0 ]; then
mv ../tmp/$i $i
fi
else