From 52121383f898700c9dbfccc6121d40185e207330 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 14 Sep 2015 13:54:52 +0200 Subject: Add a SIGNAL section to the manpage. --- interimap.1 | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'interimap.1') diff --git a/interimap.1 b/interimap.1 index 7ac8204..ef0752e 100644 --- a/interimap.1 +++ b/interimap.1 @@ -342,6 +342,11 @@ for more information. File containing trusted certificates to use during server certificate authentication if \(lq\fISSL_verify\fR=YES\(rq. +.SH SIGNALS + +Sending a \fBSIGHUP\fR to \fBInterIMAP\fR makes it print I/O statistics +and then resume synchronization. + .SH SUPPORTED EXTENSIONS Performance is better for servers supporting the following extensions to -- cgit v1.2.3 From 9a2a5edacc95c630d37d1215b0c7c938f82b998d Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Tue, 15 Sep 2015 02:10:55 +0200 Subject: Add the ability to proxy TCP connections through a SOCKSv5 proxy. --- interimap.1 | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'interimap.1') diff --git a/interimap.1 b/interimap.1 index ef0752e..4822259 100644 --- a/interimap.1 +++ b/interimap.1 @@ -254,6 +254,16 @@ Server port. (Default: \(lq143\(rq for \fItype\fR=imap, \(lq993\(rq for \fItype\fR=imaps.) +.TP +.I proxy +An optional SOCKS proxy to use for TCP connections to the IMAP server +(\fItype\fR=imap and \fItype\fR=imaps only), formatted as +\(lq\fIprotocol\fR://[\fIuser\fR:\fIpassword\fR@]\fIproxyhost\fR[:\fIproxyport\fR]\(rq. +If \fIproxyport\fR is omitted, it is assumed at port 1080. +Only SOCKSv5 is supported, in two flavors: \(lqsocks5://\(rq to resolve +\fIhostname\fR locally, and \(lqsocks5h://\(rq to let the proxy resolve +\fIhostname\fR. + .TP .I command Command to use for \fItype\fR=tunnel. Must speak the IMAP4rev1 protocol -- cgit v1.2.3 From 277dc0a7f946b90bfe04d6da225b4f53b443d1f6 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Tue, 15 Sep 2015 02:25:24 +0200 Subject: wibble --- interimap.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'interimap.1') diff --git a/interimap.1 b/interimap.1 index 4822259..78f2e5f 100644 --- a/interimap.1 +++ b/interimap.1 @@ -399,8 +399,8 @@ currently supported. .IP \[bu] \fBInterIMAP\fR will probably not work with non RFC-compliant servers. In particular, no work-around are currently implemented beside the -tunable in the configuration file. Morever, few IMAP servers have been -tested so far. +tunables in the \fBCONFIGURATION FILE\fR. Morever, few IMAP servers +have been tested so far. .SH AUTHOR Written by Guilhem Moulin -- cgit v1.2.3 From 6011b94a5c6f0b787ce883b5646684828a54a994 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Tue, 15 Sep 2015 05:14:06 +0200 Subject: Don't catch SIGHUP as it only work during IDLE. Sending any signal while some mails are being copied interrupts the syscall (eg, write) and attempting to resume crashes interimap. --- interimap.1 | 5 ----- 1 file changed, 5 deletions(-) (limited to 'interimap.1') diff --git a/interimap.1 b/interimap.1 index 78f2e5f..621d968 100644 --- a/interimap.1 +++ b/interimap.1 @@ -352,11 +352,6 @@ for more information. File containing trusted certificates to use during server certificate authentication if \(lq\fISSL_verify\fR=YES\(rq. -.SH SIGNALS - -Sending a \fBSIGHUP\fR to \fBInterIMAP\fR makes it print I/O statistics -and then resume synchronization. - .SH SUPPORTED EXTENSIONS Performance is better for servers supporting the following extensions to -- cgit v1.2.3