Package: maildrop Version: 2.0.4-3 Severity: normal I think reminding this major behavior change between procmail and maildrop is important. It can be even better if there is a script example to create maildir since doing tis by hand is prone for error.
When updating documentation, please consider including attached update-maildir script to be in /usr/share/doc/maildrop/examples/ . By the way, merged bug#305541 has reference to patch. I only find http://sourceforge.net/mailarchive/forum.php?thread_name=courier.3F50E1A0.0001086D%40webmail.serv.ch&forum_name=courier-users It does not seem to be included in future. Is this it? -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing'), (10, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages maildrop depends on: ii courier-authlib 0.62.2-1 Courier authentication library ii exim4 4.69-9 metapackage to ease Exim MTA (v4) ii exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon ii libc6 2.9-4 GNU C Library: Shared libraries ii libgcc1 1:4.3.3-3 GCC support library ii libgdbm3 1.8.3-4 GNU dbm database routines (runtime ii libpcre3 7.8-2 Perl 5 Compatible Regular Expressi ii libstdc++6 4.3.3-3 The GNU Standard C++ Library v3 maildrop recommends no packages. maildrop suggests no packages. -- no debconf information
#!/bin/sh -e # vim: set sts=2 expandtab: # Copyright (C) 2009 Osamu Aoki <os...@debian.org>, Public Domain MAILDIR_ROOT="$HOME/Mail" for mb in $(sed -ne '/^ *\(to\|cc\) /s/^ *\(to\|cc\) "\([^"]*\)\/".*/\2/p' $HOME/.mailfilter | sort | uniq | sed -e "s#\$HOME#$HOME#"); do if [ -d $mb ]; then echo "--- $mb maildir exist" else echo "*** $mb maildir missing" maildirmake "$mb" fi done for mb in $( (sed -ne '/^ *\(to\|cc\) /s/^ *\(to\|cc\) "\([^"]*\)\/".*/\2/p' $HOME/.mailfilter | sort | uniq | sed -e "s#\$HOME#$HOME#" ; \ find $MAILDIR_ROOT -maxdepth 1 -type d | sort | uniq ; echo "$MAILDIR_ROOT" ) | sort | uniq -u); do echo "!!!!! $mb !!!!! maildir may not be needed." done