diff options
author | Mike McCormack <mike@codeweavers.com> | 2006-03-10 14:32:50 +0900 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-10 22:09:24 -0800 |
commit | f2561fda364ad984ef1441a80c90b0ee04f1a7c4 (patch) | |
tree | 87f2a58ed5b62c6e72f33644bcb3f45f462c3d8a /.gitignore | |
parent | 2d0048e681dafa8f48593088fb6c2630c3186c96 (diff) | |
download | git-f2561fda364ad984ef1441a80c90b0ee04f1a7c4.tar.gz git-f2561fda364ad984ef1441a80c90b0ee04f1a7c4.tar.xz |
Add git-imap-send, derived from isync 1.0.1.
git-imap-send drops a patch series generated by git-format-patch into an
IMAP folder. This allows patch submitters to send patches through their
own mail program.
git-imap-send uses the following values from the GIT repository
configuration:
The target IMAP folder:
[imap]
Folder = "INBOX.Drafts"
A command to open an ssh tunnel to the imap mail server.
[imap]
Tunnel = "ssh -q user@imap.server.com /usr/bin/imapd ./Maildir
2> /dev/null"
[imap]
Host = imap.server.com
User = bob
Password = pwd
Port = 143
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 8e94cbde6..b4355b9fa 100644 --- a/.gitignore +++ b/.gitignore @@ -42,6 +42,7 @@ git-grep git-hash-object git-http-fetch git-http-push +git-imap-send git-index-pack git-init-db git-local-fetch |