aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-imap-send.txt
diff options
context:
space:
mode:
authorRobert Shearman <robertshearman@gmail.com>2008-07-09 22:29:00 +0100
committerJunio C Hamano <gitster@pobox.com>2008-07-25 21:51:30 -0700
commit684ec6c63cd92a3755500b3b63f3d5ad9f6828b2 (patch)
treee88bd07e6ff3a3fc92d990721bb6aec2b61a1cb2 /Documentation/git-imap-send.txt
parenta0406b94d57e8443a7b31b5412763cac4ddb5d21 (diff)
downloadgit-684ec6c63cd92a3755500b3b63f3d5ad9f6828b2.tar.gz
git-imap-send: Support SSL
Allow SSL to be used when a imaps:// URL is used for the host name. Also, automatically use TLS when not using imaps:// by using the IMAP STARTTLS command, if the server supports it. Tested with Courier and Gimap IMAP servers. Signed-off-by: Robert Shearman <robertshearman@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-imap-send.txt')
-rw-r--r--Documentation/git-imap-send.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap-send.txt
index b3d8da33ee..136c82bfdd 100644
--- 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 = imap://imap.example.com
User = bob
Pass = pwd
Port = 143
+ sslverify = false
..........................