mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
15 lines
295 B
Bash
Executable file
15 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Report a quota usage warning to an user
|
|
|
|
PERCENT="${1}"
|
|
USER="${2}"
|
|
DOMAIN="${3}"
|
|
|
|
cat << EOF | /usr/lib/dovecot/dovecot-lda -d "${USER}" -o "plugin/quota=maildir:User quota:noenforcing"
|
|
From: postmaster@${DOMAIN}
|
|
Subject: quota warning
|
|
|
|
Your mailbox is now ${PERCENT}% full.
|
|
EOF
|