Displaying 1 result from an estimated 1 matches for "server_connect".
Did you mean:
  servertoconnect
  
2012 Apr 11
0
F5 SLB iRule - POP3 TLS Offload & Add Realm
...when CLIENT_ACCEPTED {
  if { [TCP::local_port clientside] == "110" } {
    # Disable SSL if we're on port 110 (as we're doing TLS Offload)
    set secure 0
    SSL::disable
  } else {
    set secure 1
  }
  set realm "mydomain.com"
  set debug 0
  set loggedin 0
}
when SERVER_CONNECTED {
  TCP::collect
}
when CLIENTSSL_HANDSHAKE {
  SSL::collect
  set secure 1
}
when CLIENTSSL_DATA {
  if { $debug } { log local0. "CLIENT DATA: [SSL::payload]" }
  set lcpayload [string tolower [SSL::payload]]
  if { $lcpayload starts_with "user" } {
    scan [SSL::payload...