Closed
Bug 787190
Opened 13 years ago
Closed 13 years ago
ubuntu system wide manual proxy settings not honored
Categories
(Core :: Networking: HTTP, defect)
Tracking
()
RESOLVED
FIXED
mozilla18
People
(Reporter: mcmanus, Assigned: mcmanus)
Details
Attachments
(1 file)
1.29 KB,
patch
|
Biesinger
:
review+
|
Details | Diff | Splinter Review |
set firefox proxy settings to "system" and use ubuntu 12.04 to set system wide manual proxy.
e.g. ubuntu-system->network.. method = manual.. http proxy = IP port = PORT
this is not picked up in firefox.
If you set method to "automatic" and provide a valid pac file it is picked up in firefox.
I tracked this down to firefox requiring gconf values of (/system/proxy/mode == manual) AND (/system/http_proxy/use_http_proxy == true)
the right logic is mode==manual OR use_http_proxy==true.. ubuntu 12.04 only sets the mode.
patch forthcoming
Assignee | ||
Comment 1•13 years ago
|
||
Comment 2•13 years ago
|
||
Comment on attachment 657002 [details] [diff] [review]
patch 0
- if (!IsProxyMode("manual") || !masterProxySwitch) {
+ if (!(IsProxyMode("manual") || masterProxySwitch)) {
I think this would be easier to read as:
if (!IsProxyMode("manual") && !masterProxySwitch) {
Attachment #657002 -
Flags: review?(cbiesinger) → review+
Assignee | ||
Comment 3•13 years ago
|
||
Assignee | ||
Comment 4•13 years ago
|
||
Comment 5•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla18
You need to log in
before you can comment on or make changes to this bug.
Description
•