expunge()
public
Sends a EXPUNGE command to permanently remove from the currently selected
mailbox all messages that have the Deleted flag set.
Show source
def expunge
synchronize do
send_command("EXPUNGE")
return @responses.delete("EXPUNGE")
end
end