# File lib/larch/imap/mailbox.rb, line 121
  def expunge
    return false unless imap_select

    @imap.safely do
      debug "expunging deleted messages"

      @last_scan = nil
      @imap.conn.expunge unless @imap.options[:dry_run]
    end
  end