1

DMA keeps on trying to send this EMail:

$ dma -bp
ID  : c08be.177cb00
From: example@foo.bar
To  : example@foo.bar

How can I flush the queue?

Marc Gravell
  • 1,026,079
  • 266
  • 2,566
  • 2,900
paddel10
  • 170
  • 1
  • 12

2 Answers2

1

This might be helpful for someone:

Retrieve the PID and kill the process

$ ps -ef | grep dma
mail      6922     1 66 Jun28 ?        15:31:04 /usr/sbin/dma -q1
$ kill -9 6922
paddel10
  • 170
  • 1
  • 12
1

If the files are no longer required you can delete those with this command:

rm /var/spool/dma/*.*
panticz
  • 2,135
  • 25
  • 16