diff options
Diffstat (limited to 'localmb2md')
-rwxr-xr-x | localmb2md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -25,6 +25,10 @@ if [ -f "/var/mail/$USER" ]; then echo -n '' > "/var/mail/$USER" fi -if [ -f ~/.mailboxlist ]; then +# Grab dovecot subscriptions +if [ -f ~/mail/.subscriptions ]; then + mv ~/mail/.subscriptions ~/Maildir/.subscriptions +# ...or UW-imap ones +elif [ -f ~/.mailboxlist ]; then mv ~/.mailboxlist ~/Maildir/.subscriptions fi |