]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-imap-send.txt
Documentation: rename gitlink macro to linkgit
[thirdparty/git.git] / Documentation / git-imap-send.txt
CommitLineData
454a35b8
MM
1git-imap-send(1)
2================
3
4NAME
5----
6git-imap-send - Dump a mailbox from stdin into an imap folder
7
8
9SYNOPSIS
10--------
11'git-imap-send'
12
13
14DESCRIPTION
15-----------
16This command uploads a mailbox generated with git-format-patch
17into an imap drafts folder. This allows patches to be sent as
18other email is sent with mail clients that cannot read mailbox
19files directly.
20
21Typical usage is something like:
22
23git-format-patch --signoff --stdout --attach origin | git-imap-send
24
25
26CONFIGURATION
27-------------
28
29git-imap-send requires the following values in the repository
30configuration file (shown with examples):
31
2b5f3ed3 32..........................
454a35b8
MM
33[imap]
34 Folder = "INBOX.Drafts"
35
36[imap]
37 Tunnel = "ssh -q user@server.com /usr/bin/imapd ./Maildir 2> /dev/null"
38
39[imap]
40 Host = imap.server.com
41 User = bob
2b5f3ed3 42 Pass = pwd
454a35b8 43 Port = 143
2b5f3ed3 44..........................
454a35b8
MM
45
46
47BUGS
48----
49Doesn't handle lines starting with "From " in the message body.
50
51
52Author
53------
54Derived from isync 1.0.1 by Mike McCormack.
55
56Documentation
57--------------
58Documentation by Mike McCormack
59
60GIT
61---
5162e697 62Part of the linkgit:git[7] suite