This commit is contained in:
Kovid Goyal 2018-01-29 16:25:19 +05:30
parent 557b26f5da
commit b4c8d223f4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 7 additions and 6 deletions

View File

@ -41,7 +41,7 @@ Environment variables
* ``CALIBRE_SHOW_DEPRECATION_WARNINGS`` - Causes calibre to print deprecation warnings to stdout. Useful for calibre developers. * ``CALIBRE_SHOW_DEPRECATION_WARNINGS`` - Causes calibre to print deprecation warnings to stdout. Useful for calibre developers.
* ``CALIBRE_NO_DEFAULT_PROGRAMS`` - Prevent calibre from automatically registering the filetypes it is capable of handling with Windows. * ``CALIBRE_NO_DEFAULT_PROGRAMS`` - Prevent calibre from automatically registering the filetypes it is capable of handling with Windows.
* ``SYSFS_PATH`` - Use if sysfs is mounted somewhere other than /sys * ``SYSFS_PATH`` - Use if sysfs is mounted somewhere other than /sys
* ``http_proxy`` - Used on linux to specify an HTTP proxy * ``http_proxy``, ``https_proxy`` - Used on linux to specify an HTTP(S) proxy
See `How to set environment variables in Windows <https://www.computerhope.com/issues/ch000549.htm>`_ or See `How to set environment variables in Windows <https://www.computerhope.com/issues/ch000549.htm>`_ or
`How to set environment variables in macOS <http://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-mac-os-x-launchd-plist/>`_. `How to set environment variables in macOS <http://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-mac-os-x-launchd-plist/>`_.

View File

@ -1008,11 +1008,12 @@ How do I get calibre to use my HTTP proxy?
By default, calibre uses whatever proxy settings are set in your OS. Sometimes By default, calibre uses whatever proxy settings are set in your OS. Sometimes
these are incorrect, for example, on Windows if you don't use Internet Explorer these are incorrect, for example, on Windows if you don't use Internet Explorer
then the proxy settings may not be up to date. You can tell calibre to use a then the proxy settings may not be up to date. You can tell calibre to use a
particular proxy server by setting the ``http_proxy`` environment variable. The particular proxy server by setting the ``http_proxy`` and ``https_proxy``
format of the variable is: ``http://username:password@servername`` you should environment variables. The format of the variable is:
ask your network administrator to give you the correct value for this variable. ``http://username:password@servername`` you should ask your network
Note that calibre only supports HTTP proxies not SOCKS proxies. You can see the administrator to give you the correct value for this variable. Note that
current proxies used by calibre in Preferences->Miscellaneous. calibre only supports HTTP proxies not SOCKS proxies. You can see the current
proxies used by calibre in Preferences->Miscellaneous.
I want some feature added to calibre. What can I do? I want some feature added to calibre. What can I do?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~