Re: [PATCH 2/4] git-imap-send: Add support for SSL.
From: Josh Triplett <hidden>
Date: 2016-06-15 22:44:55
On Tue, 2008-07-08 at 23:18 +0100, Robert Shearman wrote:
quoted hunk ↗ jump to hunk
--- a/Documentation/git-imap-send.txt +++ b/Documentation/git-imap-send.txt@@ -37,10 +37,11 @@ configuration file (shown with examples): Tunnel = "ssh -q user@server.com /usr/bin/imapd ./Maildir 2> /dev/null" [imap] - Host = imap.server.com + Host = imaps://imap.example.com User = bob Pass = pwd - Port = 143 + Port = 993 + sslverify = false
[...]
quoted hunk ↗ jump to hunk
@@ -1280,6 +1411,8 @@ git_imap_config(const char *key, const char *val, void *cb) server.port = git_config_int( key, val ); else if (!strcmp( "tunnel", key )) server.tunnel = xstrdup( val ); + else if (!strcmp( "ssl_verify", key )) + server.ssl_verify = git_config_bool( key, val );
The example and the code disagree on the name of the sslverify/ssl_verify option. Also, ssl_verify needs explanation. - Josh Triplett