On Tue, Aug 21, 2007 at 07:38:33PM +0200, Stefan Hornburg wrote:
> What kind of program is mkmaildir ? Maildirmake is the proper program to
> create maildir++.

Nothing of interest.  Sorry, I didn't have maildirmake installed so
I just used my hokey script, below.  I believe this is functionally
equivalent to what procmail does when it delivers to a non-existant
maildir; that is how I originally encountered the offlineimap problem.
And the behavior is the same as maildirmake on a simple folder.

[EMAIL PROTECTED]:~% which mkmaildir
mkmaildir () {
        if (( $# != 1 ))
        then
                echo "Usage: $0 <directory>"
        else
                mkdir $1
                mkdir $1/new
                mkdir $1/cur
                mkdir $1/tmp
        fi
}


-- 
Daniel Jacobowitz
CodeSourcery


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to