expunge()
public
Sends a EXPUNGE command to permanently remove from the currently selected
mailbox all messages that have the Deleted flag set.
# File lib/net/imap.rb, line 726
def expunge
synchronize do
send_command("EXPUNGE")
return @responses.delete("EXPUNGE")
end
end