Version 1.26.1
Released: 2005-12-22
new
extra output during the "todovecot" conversionWhen the:
./build todovecot
command is run, there was previously no output. This caused confusion as the dataskq often sat for long periods of time during the conversion. If the action is cancelled, the server will end up half converted.
Extra output has been added to admins can watch whats going on as it happens. Includes the current user # out of the total number of users, so admin will have an idea when it should be done. For any inbox mbox files that are over 10 meg, DA will output a notice that "this fill may take a while". It include the size of the large inbox, and will output a notice for every 10 emails parsed in the mbox file.
new
USERQUOTAGIG USERQUOTAMAXGIG tokensnew tokens:
USERQUOTAGIG
USERQUOTAMAXGIG
avaible globally anywhere in the skins.
fixed
action=delete&value=mbox goes into infinite loopThis command to delete old mbox files goes into an infinite loop:
echo "action=delete&value=mbox" >> /usr/local/directadmin/data/task.queue
caused by:
for (int i=0; dirs.getNumElements(); ++i)
instead of
for (int i=0; i<dirs.getNumElements(); ++i)
Workaround:
Delete:
rm -f /var/mail/*
rm -f /var/spool/mail/*
rm -rf /var/spool/virtual
rm -rf /home/*/mail
rm -rf /home/*/imap/*/*/mail
The last command may end up failing due to too many arguments.. so delete the directories for each user one at a time.