<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>Hello all, I hope you are doing well.</p>
    <p>In regards to the quota_warning configuration, more specifically
      when an email is sent to the user when quota has passed a certain
      percentage, i.e.:<br>
    </p>
    <pre style="border: 1pt solid rgb(174, 189, 204); background-color: rgb(243, 245, 247); padding: 5pt; font-family: courier, monospace; white-space: pre-wrap; overflow-wrap: break-word; color: rgb(0, 0, 0); font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">quota_warning = <limit configuration> <quota-warning socket name> <parameters>
<span class="anchor" id="line-2-12"></span>#quota_warning2 = ...
<span class="anchor" id="line-3-12"></span>#quota_warning3 = ..etc..</pre>
    <p>Is it possible to communicate with the client by sending an ALERT
      IMAP message to stdout much like post-login scripting, rather than
      sending an email to the user?</p>
    <p>i.e:</p>
    <pre id="codecell4" style="overflow: auto hidden; font-family: Consolas, Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; font-size: 0.9em; background: rgb(238, 238, 238); padding: 7px 30px; margin: 15px 0px; line-height: 19.125px; color: rgb(62, 67, 73); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">#!/bin/sh

# Message goes to stdout
printf "* OK [ALERT] This is an alert\r\n"
exec "$@"</pre>
    <p>Thank you.<br>
    </p>
  </body>
</html>