Questions tagged [proxy]
18 questions
3
votes
1 answer
Can we pick our emacs proxy settings from the Broader settings set by our desktop environment?
In linux, the desktop environment stores the proxy settings. These proxy settings are then picked up by applications running for that instance of the desktop environment for a particular user. Your browsers. terminal etc, pick up these settings.
In…

ksinkar
- 526
- 5
- 9
3
votes
2 answers
How can I use Gnus to access Gmail IMAP through http(s) firefwall?
My company's firewall only allow http and https connections.
To access internet, I have to specify the proxy before connecting the internet:
export http_proxy=http://my-company.com
export https_proxy=http://my-company.com
That's the current…

chen bin
- 4,781
- 18
- 36
2
votes
0 answers
MELPA no longer works: error in process sentinel: End of file during parsing
MELPA no longer updates after no changes of mine. With a minimal .emacs of
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(add-to-list 'package-archives '("org" .…

serv-inc
- 816
- 6
- 26
2
votes
1 answer
Emacs behind firewall cannot download packages from Melpa
I am using emacs behind a firewall in Windows. I configured the access to proxy and I worked with no problems for a week. But now I can't upgrade emacs packages using Melpa, because the proxy refuses to download packages ("Bad request"). Any clue to…

sbac
- 399
- 4
- 13
1
vote
1 answer
Using TRAMP through CyberArk Privileged Session Manager
Normally it is very easy to convert ssh and scp commands into tramp format for access via dired.
For example
The command line
ssh username@hostname
will become
/ssh:username@hostname:
in emacs.
Unfortunately, I'm unsure how to convert even the…

Melioratus
- 4,504
- 1
- 25
- 43
1
vote
1 answer
Tramp connection through proxy
Our servers are behind a proxy that requires two factor authenticatio. I managed to get through the authentication process yet was wondering, is there a way of authenticating only once and not for each different connection?

Adam
- 11
- 2
1
vote
1 answer
Configure package manager to use an NTLM Proxy
I've seen a few examples of how to setup Emacs to use Basic Auth proxies - is there a way to configure it to use an NTLM proxy?

sunwukung
- 227
- 3
- 10
1
vote
2 answers
Emacs and CNTLM
I'm trying to configure Emacs to use CNTLM to work with my company's authenticating proxy. I've followed the steps to configure CNTLM, and I've got the following in my init.el file:
(setq url-proxy-services
'(("http" . "127.0.0.1:3128")
…

Delmania
- 111
- 3
0
votes
0 answers
How to setup proxy in Emacs which rquires authentification to download packages from melpa?
I try to setup a corporate proxy in Emacs:
in Bash I've setup the following environment variables:
export http_proxy="http://my_login:my_psw@192.168.100.1:8080";export https_proxy="http://my_login:my_psw@192.168.100.1:8080";export…

major
- 1
- 1
0
votes
0 answers
Spacemacs and elpa-mirror
OS: Windows 10
Spacemacs branch: develop
Hi, I am behind a corporate proxy. I want to use a local version of elpa through d12frosted's elpa-mirror (https://github.com/d12frosted/elpa-mirror).
I have tried to put the following at the beginning of…

Trad Dog
- 153
- 6
0
votes
1 answer
How do I use a proxy for only some specific URLs?
Like with FoxyProxy, I want to use proxy in emacs only for URLs that match a specific regexp.
E.g., if the URL matches \\.ec2\\.internal, I want the url-proxy-services to be "ip-10-0-37-237.ec2.internal:8081", otherwise none.
Note that the no_proxy…

sds
- 5,928
- 20
- 39
0
votes
1 answer
Melpa upgrade ignores url-proxy-service
I use Emacs in a corporate environment behind a proxy.
I have customized url-proxy-services:
'(url-proxy-services
(quote
(("http" . "proxy:3128")
("https" . "proxy:3128"))))
I use the package tool:
(require 'package)
And I have…

ceving
- 1,308
- 1
- 14
- 28
0
votes
1 answer
Emacs failing to access HTTPS URL behind a proxy
I hoped that this problem's solution would solve it for me, but it didn't. I've got my proxy set up as follows (slightly redacted):
(setq url-proxy-services
'(("no_proxy" . "^\\(localhost\\|10.*\\)")
("http" . "proxy.xxx.com:8080")
…

IpsRich
- 103
- 2
0
votes
2 answers
Cannot access ELPA from Emacs behind a corporate proxy (Mac)
I'm having trouble accessing ELPA on my Mac from behind a corporate proxy. Emacs 27.1.
I have http_proxy and https_proxy configured appropriately (I've also tried setting url-proxy-services).
From Emacs (M-x package-refresh-contents):
Using a proxy…

EightyEight
- 123
- 6
0
votes
1 answer
Debugging ELPA and Emacs connection issues behind a corporate proxy
I'm having trouble getting to ELPA behind our corporate proxy. I see proxy traffic attempting to CONNECT to the ELPA domain which then fails. How can I turn on debugging to see the exact URL that Emacs is trying to access? -debug-init didn't work…

EightyEight
- 123
- 6