6 git-imap-send - Dump a mailbox from stdin into an imap folder
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
21 Typical usage is something like:
23 git format-patch --signoff --stdout --attach origin | git imap-send
29 'git-imap-send' requires the following values in the repository
30 configuration file (shown with examples):
32 ..........................
34 Folder = "INBOX.Drafts"
37 Tunnel = "ssh -q user@server.com /usr/bin/imapd ./Maildir 2> /dev/null"
40 Host = imap.server.com
44 ..........................
49 Doesn't handle lines starting with "From " in the message body.
54 Derived from isync 1.0.1 by Mike McCormack.
58 Documentation by Mike McCormack
62 Part of the linkgit:git[1] suite