...
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:
Code Block root@linux~#language bash theme RDark rm
/var/spool/nullmailer/queue/*
to delete all mails from the 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 the following to
postsuper -d ALL
to delete all mails from the queue:Code Block root@linux~# postsuper -d ALL.language bash theme RDark - Disable root access via SSH.
...