1GIT-IMAP-SEND(1) Git Manual GIT-IMAP-SEND(1)
2
3
4
6 git-imap-send - Dump a mailbox from stdin into an imap folder
7
9 git-imap-send
10
12 This command uploads a mailbox generated with git-format-patch into an
13 imap drafts folder. This allows patches to be sent as other email is
14 sent with mail clients that cannot read mailbox files directly.
15
16 Typical usage is something like:
17
18 git-format-patch --signoff --stdout --attach origin | git-imap-send
19
21 git-imap-send requires the following values in the repository
22 configuration file (shown with examples):
23
24
25 [imap]
26 Folder = "INBOX.Drafts"
27
28 [imap]
29 Tunnel = "ssh -q user@server.com /usr/bin/imapd ./Maildir 2> /dev/null"
30
31 [imap]
32 Host = imap.server.com
33 User = bob
34 Pass = pwd
35 Port = 143
36
38 Doesn´t handle lines starting with "From " in the message body.
39
41 Derived from isync 1.0.1 by Mike McCormack.
42
44 Documentation by Mike McCormack
45
47 Part of the git(7) suite
48
49
50
51
52Git 1.5.3.3 10/09/2007 GIT-IMAP-SEND(1)