index-pack: be careful after fixing up the header/footer
[git/dscho.git] / Documentation / git-imap-send.txt
blobb3d8da33ee64730794821440c287f30c4bb85789
1 git-imap-send(1)
2 ================
4 NAME
5 ----
6 git-imap-send - Dump a mailbox from stdin into an imap folder
9 SYNOPSIS
10 --------
11 'git imap-send'
14 DESCRIPTION
15 -----------
16 This command uploads a mailbox generated with git-format-patch
17 into an imap drafts folder.  This allows patches to be sent as
18 other email is sent with mail clients that cannot read mailbox
19 files directly.
21 Typical usage is something like:
23 git format-patch --signoff --stdout --attach origin | git imap-send
26 CONFIGURATION
27 -------------
29 'git-imap-send' requires the following values in the repository
30 configuration file (shown with examples):
32 ..........................
33 [imap]
34     Folder = "INBOX.Drafts"
36 [imap]
37     Tunnel = "ssh -q user@server.com /usr/bin/imapd ./Maildir 2> /dev/null"
39 [imap]
40     Host = imap.server.com
41     User = bob
42     Pass = pwd
43     Port = 143
44 ..........................
47 BUGS
48 ----
49 Doesn't handle lines starting with "From " in the message body.
52 Author
53 ------
54 Derived from isync 1.0.1 by Mike McCormack.
56 Documentation
57 --------------
58 Documentation by Mike McCormack
60 GIT
61 ---
62 Part of the linkgit:git[1] suite