Filtering to figure out the traffic of interest:
imap || pop || sip || irc
#look for commonly used communication protocols e.g. imap, pop, sip, irc
sip.Method==MESSAGE
#extract SIP messages from the traffic
http.request.method==GET
#browsing activity by means of the GET method
Wireshark display filter syntax and reference here.