Skip to content
Snippets Groups Projects
dovecot-sample-config.post-install 167 B
Newer Older
#!/bin/sh

cd /usr/share/doc/dovecot/example-config || exit 0

for i in dovecot.conf conf.d/*; do
	if ! [ -e /etc/dovecot/$i ]; then
		cp $i /etc/dovecot/$i
	fi
done