2006-01-12 05:08:18 -05:00
|
|
|
elinks.conf(5)
|
2006-01-12 02:33:50 -05:00
|
|
|
==============
|
2006-01-12 04:30:25 -05:00
|
|
|
:Description: ELinks configuration file
|
2006-01-12 02:33:50 -05:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
elinks.conf - ELinks configuration file
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2008-03-08 09:17:50 -05:00
|
|
|
set <option> = <value>
|
|
|
|
set_domain <domain> <option> = <value>
|
|
|
|
unset <option>
|
|
|
|
bind "<keymap>" "<key>" = "<action>"
|
|
|
|
include "<file>"
|
2006-01-12 02:33:50 -05:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The `elinks.conf` file contains configuration information for ELinks. It can
|
|
|
|
be used to configure the behaviour of ELinks in a wide variety of ways:
|
|
|
|
protocol behaviour, keybindings, colors used for rendering and for the user
|
|
|
|
interface.
|
|
|
|
|
|
|
|
It is read at startup and saved only when requested. All options described in
|
2009-08-22 10:34:01 -04:00
|
|
|
this document can be configured from within ELinks. Editing of elinks.conf is
|
|
|
|
needed only if you want to override the values of some options in individual
|
|
|
|
domains (`set_domain`).
|
2006-01-12 02:33:50 -05:00
|
|
|
|
2009-08-22 10:35:37 -04:00
|
|
|
// elinks-web/website.conf links "the MIME chapter of the ELinks manual" below
|
|
|
|
|
|
|
|
Note that MIME-related options used for specifying handlers of various
|
|
|
|
MIME types are not fully described in this document. Documentation for
|
|
|
|
these options can be found in the MIME chapter of the ELinks manual.
|
|
|
|
Keybindings can also be specified in elinks.conf. This is described
|
|
|
|
in man:elinkskeys[5].
|
2006-01-12 02:33:50 -05:00
|
|
|
|
|
|
|
SYNTAX
|
|
|
|
------
|
|
|
|
|
|
|
|
The syntax of the configuration file is very simple. The elinks.conf file is a
|
|
|
|
free-form ASCII text file. The file may contain extra tabs and newlines for
|
|
|
|
formatting purposes. Keywords in the file are case-sensitive. Comments may be
|
|
|
|
placed anywhere within the file (except within quotes). Comments begin with
|
|
|
|
the # character and end at the end of the line.
|
|
|
|
|
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
Some sample settings:
|
|
|
|
|
|
|
|
# Use asynchronous DNS resolver?
|
|
|
|
set connection.async_dns = 1
|
|
|
|
# horizontal text margin.
|
|
|
|
set document.browse.margin_width = 3
|
|
|
|
# Default document codepage.
|
|
|
|
set document.codepage.assume = "ISO-8859-1"
|
|
|
|
# User defined protocol handlers
|
2008-03-06 03:23:21 -05:00
|
|
|
set protocol.user.mailto.unix = "mutt %h -s \"%s\""
|
2006-01-12 02:33:50 -05:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-05-03 11:30:26 -04:00
|
|
|
|
|
|
|
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
ifdef::backend-docbook[]
|
|
|
|
include1::{builddir}option-config.frag.xml[]
|
|
|
|
endif::backend-docbook[]
|
|
|
|
ifdef::backend-xhtml11[]
|
|
|
|
include1::{builddir}option-config.frag.xhtml[]
|
|
|
|
endif::backend-xhtml11[]
|
|
|
|
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
2006-01-12 02:33:50 -05:00
|
|
|
|
2009-04-30 17:40:23 -04:00
|
|
|
// The OpenSSL license requires the following acknowledgements in all
|
|
|
|
// advertising materials that mention features of OpenSSL. The web
|
|
|
|
// pages at http://elinks.cz/ might be thought of as advertising, and
|
|
|
|
// the documentation of the connection.ssl.cert_verify option mentions
|
|
|
|
// a feature of OpenSSL. So include the acknowledgements in the HTML
|
|
|
|
// web page that documents the options.
|
|
|
|
ifdef::man-webpage[]
|
|
|
|
|
|
|
|
ACKNOWLEDGEMENTS
|
|
|
|
----------------
|
|
|
|
|
|
|
|
If ELinks was configured to use OpenSSL, then the following apply:
|
|
|
|
|
|
|
|
- This product includes software developed by the OpenSSL Project
|
|
|
|
for use in the OpenSSL Toolkit. (http://www.openssl.org/)
|
|
|
|
|
|
|
|
- This product includes cryptographic software written by
|
|
|
|
Eric Young (eay@cryptsoft.com)
|
|
|
|
|
|
|
|
endif::man-webpage[]
|
|
|
|
|
2006-01-12 02:33:50 -05:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
man:elinks[1], man:elinkskeys[5]
|