Files
VPS-scripts_Ubuntu-Mail/config/postfix/clear-queue.sh
2019-10-03 13:03:24 +02:00

6 lines
153 B
Bash

#!/bin/bash
echo "#Clear mail queue every night" >> /etc/crontab
echo "0 0 * * * /opt/clear-queue.sh" >> /etc/crontab
echo "#!/bin/sh"
echo "postfix -f"