/usr/lib/exmh/http_proxy.tcl is in exmh 1:2.8.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | # Default proxy selection
proc Http_Proxy {host} {
global Http
if {[info exists Http(server)] && [string length $Http(server)]} {
if {![info exists Http(port)]} {
set Http(port) 8080
}
return [list $Http(server) $Http(port)]
}
return {}
}
|