Modifications : etc/sv/dovecot/local.sh
authorLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 13 Sep 2013 17:23:39 +0000 (19:23 +0200)
committerLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 13 Sep 2013 19:16:44 +0000 (21:16 +0200)
etc/sv/dovecot/local.sh

index 7d11fd2..4ca3b65 100644 (file)
@@ -6,10 +6,13 @@ for domain in \
  "$local_domainname" \
  cyclocoop.org
  do
-       assert "sudo test -f /etc/dovecot/$domain/imap/x509/key.pem" hint
-       sudo install -m 400 -o root -g root \
-        "$tool"/var/pub/x509/imap."$domain"/crt+crl.self-signed.pem \
-           /etc/dovecot/"$domain"/imap/x509/crt+crl.self-signed.pem
+       for protocol in imap pop
+        do
+               assert "sudo test -f /etc/dovecot/$domain/"$protocol"/x509/key.pem" hint
+               sudo install -m 400 -o root -g root \
+                "$tool"/var/pub/x509/"$protocol"."$domain"/crt+crl.self-signed.pem \
+                   /etc/dovecot/"$domain"/"$protocol"/x509/crt+crl.self-signed.pem
+        done
  done
 
 hint="run before: local/runit-configure nginx -- autoconfig"