From 1e5601d5bccd260d0abd64dd6e3a34dde89ac21e Mon Sep 17 00:00:00 2001 From: Ailin Nemui Date: Thu, 29 Mar 2018 01:48:09 +0200 Subject: add help versions --- documentation/help/server_(1.0).markdown | 108 +++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 documentation/help/server_(1.0).markdown (limited to 'documentation/help/server_(1.0).markdown') diff --git a/documentation/help/server_(1.0).markdown b/documentation/help/server_(1.0).markdown new file mode 100644 index 0000000..aabf4f2 --- /dev/null +++ b/documentation/help/server_(1.0).markdown @@ -0,0 +1,108 @@ +--- +layout: page +title: "Help: server (1.0)" +--- + +{% comment %} + +Please submit changes to +- https://github.com/irssi/irssi/blob/master/docs/help/in/server.in +- https://github.com/irssi/irssi/blob/master/src/core/chat-commands.c +- https://github.com/irssi/irssi/blob/master/src/fe-common/core/fe-server.c +- https://github.com/irssi/irssi/blob/master/src/fe-common/irc/fe-irc-server.c +- https://github.com/irssi/irssi/blob/master/src/irc/core/irc-commands.c + + +{% endcomment %} +[Help index](/documentation/help/index_(1.0)) + +[ v1.0 ] - [ [v1.1](/documentation/help/server) ] + +### Syntax ### + +
SERVER [-4 | -6] [-ssl] [-ssl_cert <cert>] [-ssl_pkey <pkey>] [-ssl_pass <password>] [-ssl_verify] [-ssl_cafile <cafile>] [-ssl_capath <capath>] [-ssl_ciphers <list>] [-!] [-noautosendcmd] [-noproxy] [-network <network>] [-host <hostname>] [-rawlog <file>] [+]<address>|<chatnet> [<port> [<password> [<nick>]]]
+ + +
SERVER REMOVE <address> [<port>] [<network>]
+ + +
SERVER ADD|MODIFY [-4 | -6] [-ssl] [-ssl_cert <cert>] [-ssl_pkey <pkey>] [-ssl_pass <password>] [-ssl_verify] [-ssl_cafile <cafile>] [-ssl_capath <capath>] [-ssl_ciphers <list>] [-auto | -noauto] [-network <network>] [-host <hostname>] [-cmdspeed <ms>] [-cmdmax <count>] [-port <port>] <address> [<port> [<password>]]
+ + +
SERVER LIST
+ + +
SERVER PURGE [<target>]
+ + + +### Parameters ### + + +| `LIST`: | Displays the list of servers you are connected to. | +| `CONNECT`: | Connects to the given server. | +| `ADD`: | Adds a server to your configuration. | +| `MODIFY`: | Modifies a server in your configuration. | +| `REMOVE`: | Removes a server from your configuration. | +| `PURGE`: | Purges the commands queued to be sent to the server. | +{:.table.kv} + + +| `-!`: | Doesn't autojoin the channels. | +| `-4`: | Connects using IPv4. | +| `-6`: | Connects using IPv6. | +| `-tls`: | Connects using TLS encryption. | +| `-tls_cert`: | The TLS client certificate file. | +| `-tls_pkey`: | The TLS client private key, if not included in the certificate file. | +| `-tls_pass`: | The password for the TLS client private key or certificate. | +| `-tls_verify`: | Verifies the TLS certificate of the server. | +| `-tls_cafile`: | The file with the list of CA certificates. | +| `-tls_capath`: | The directory which contains the CA certificates. | +| `-tls_ciphers`: | TLS cipher suite preference lists. | +| `-tls_pinned_cert`: | Pinned x509 certificate fingerprint. | +| `-tls_pinned_pubkey`: | Pinned public key fingerprint. | +| `-auto`: | Automatically connects to the server on startup. | +| `-noauto`: | Doesn't connect to the server on startup. | +| `-network`: | The network the server belongs to. | +| `-host`: | The hostname you would like to connect from. | +| `-cmdspeed`: | Specifies the minimum amount of time, expressed in milliseconds, that the client must wait before sending additional commands to the server. | +| `-cmdmax`: | Specifies the maximum number of commands to perform before starting the internal flood protection. | +| `-port`: | Specifies the port to connect to the server. | +| `-noproxy`: | Ignores the global proxy configuration. | +| `-rawlog`: | Immediately open rawlog after connecting. | +| `-noautosendcmd`: | Doesn't execute autosendcmd. | +{:.table.kv} + +The server, port and network to add, modify or remove; if no argument is +given, the list of servers you are connected to will be returned. + +### Description ### + +Displays, adds, modifies or removes the network configuration of IRC +servers. + +When using the ADD parameter on a server that already exists, the +configuration will be merged with each other. + +When using the command without any of the given parameters, it will +connect to the specified server; the server in the active window will be +disconnected unless you prepend the server with the '+' character; the same +method is applicable to the CONNECT parameter. + +### Examples ### + + /SERVER + /SERVER chat.freenode.net + /SERVER +chat.freenode.net + /SERVER CONNECT chat.freenode.net + /SERVER CONNECT +chat.freenode.net + /SERVER ADD -network Freenode -noautosendcmd orwell.freenode.net + /SERVER ADD -! -auto -host staff.irssi.org -4 -network Freenode -noproxy orwell.freenode.net 6667 + /SERVER MODIFY -network Freenode -noauto orwell.freenode.net + /SERVER REMOVE orwell.freenode.net 6667 Freenode + /SERVER PURGE + /SERVER PURGE orwell.freenode.net + +### See also ### +[CHANNEL](/documentation/help/channel), [CONNECT](/documentation/help/connect), [DISCONNECT](/documentation/help/disconnect), [NETWORK](/documentation/help/network), [RECONNECT](/documentation/help/reconnect), [RMRECONNS](/documentation/help/rmreconns) + -- cgit v1.2.3