# File lib/jabber4r/jid.rb, line 59
59:     def same_account?(other)
60:       other = JID.to_jid(other)
61:       return true if other.node==@node  and other.host==@host
62:        return false
63:     end