is this correct? i edit what i found in this forum so im askin is this corect?
Code:
alias re.link return (?:\w+\:\/\/)?[\w\.]+\.(?:com|net|org|biz|us|ca|uk|ph|info)(?:[\w\/\%\.]*?)
alias re.mail return [\w.]+\@[\w.]+

on *:text:*:#channel:{
  if ($nick !isop $chan) {
    if ($regex($1,/ $+ $re.mail $+ /i)) {
      .kick # *!* $+ $address $+ * 1 75 no adds
    }
    elseif ($regex($1,/ $+ $re.link $+ /i)) {
      .kick # *!* $+ $address $+ * 1 75 no adds
    }
  }
}