[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] cmu-mailspool



> When searching the archives I only find a handful of message in one thread
> that talks about the cmu-mailspool staying in users mailboxes after
> CMUExport runs and this is my problem. Causing quota exceeded for many
> users. One of those posts says to deactivate this, but doesn't say how. I
> also searched the PDF for the CMU Migration Utility and it doesn't even have
> the work 'cmu-mailspool' in it. Can anyone tell me how to deactivate or
> control this behavior?

I assume you are using version 2.22.

If you want to change it now, edit /usr/cmu/perl/Archive.pm and add these three
lines after line 187: $self->writeCompactXml();

if($self->type eq "users" && -f $self->dir."/cmu-mailspool") {
   unlink($self->dir."/cmu-mailspool");
}

Jeff-