PostfixAdmin - web based virtual user administration interface for Postfix mail servers
https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
514 B
16 lines
514 B
#!/bin/bash
|
|
|
|
# Example script for dovecot mail-crypt-plugin
|
|
# https://doc.dovecot.org/configuration_manual/mail_crypt_plugin/
|
|
|
|
IFS= read -r -d $'\0' OLD_PASSWORD
|
|
IFS= read -r -d $'\0' NEW_PASSWORD
|
|
|
|
# New user
|
|
if [ -z "$OLD_PASSWORD" ]; then
|
|
OLD_PASSWORD="$(openssl rand -hex 16)"
|
|
doveadm -o plugin/mail_crypt_private_password="$OLD_PASSWORD" mailbox cryptokey generate -u "$1" -U
|
|
fi
|
|
|
|
# Password change
|
|
printf "%s\n%s\n" "$OLD_PASSWORD" "$NEW_PASSWORD" | doveadm mailbox cryptokey password -u "$1" -N -O ""
|