Your IP : 3.16.203.107


Current Path : /usr/share/doc/dovecot/wiki/
Upload File :
Current File : //usr/share/doc/dovecot/wiki/uw2dovecot.sh.txt

---%<-------------------------------------------------------------------------
#!/bin/sh
# 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 2019-06-19 12:42)