Sophie

Sophie

distrib > CentOS > 5 > x86_64 > by-pkgid > 4ac0e4267c570fcc2fc826526fbddf5a > files > 217

dovecot-1.0.7-9.el5_11.4.x86_64.rpm

---%<-------------------------------------------------------------------------
#!/bin/bash
# Written by Michal Grzedzicki - public domain
# handy script to rename uw-imapd style subscriptions to dovecot

for hdir in `cat /etc/passwd|cut -d: -f6` ; do
    if [ -f "$hdir/.mailboxlist" ]; then
        cp -a "$hdir/.mailboxlist" "$hdir/.subscriptions"
    fi
done
---%<-------------------------------------------------------------------------

(This file was created from the wiki on 2007-06-15 04:42)