...
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
|
Step-by-step guide
For appliance firmware 1.6.9 and lower:
- Enable root access via SSH.
- Connect to the device as root user.
- Execute the
mailq
command to take a look at the mail queue. Run the following to delete all mails from the queue:
to delete all mails from the queue.Code Block language bash theme RDark root@linux~# rm /var/spool/nullmailer/queue/*
- Disable root access via SSH.
For appliance firmware 1.7.0 and higher:
- Enable root access via SSH.
- Connect to the device as root user.
- Execute the
mailq
command to take a look at the mail queue. Run
postsuper -d ALL
tothe following to delete all mails from the queue
.:
Code Block language bash theme RDark root@linux~# postsuper -d ALL
- Disable root access via SSH.
...