6 lines
153 B
Bash
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" |