2 * git-imap-send - drops patches into an imap Drafts folder
3 * derived from isync/mbsync - mailbox synchronizer
5 * Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
6 * Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
7 * Copyright (C) 2004 Theodore Y. Ts'o <tytso@mit.edu>
8 * Copyright (C) 2006 Mike McCormack
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "credential.h"
28 #include "run-command.h"
33 static const char imap_send_usage
[] = "git imap-send < <mbox>";
37 #define DRV_MSG_BAD -1
38 #define DRV_BOX_BAD -2
39 #define DRV_STORE_BAD -3
41 static int Verbose
, Quiet
;
43 __attribute__((format (printf
, 1, 2)))
44 static void imap_info(const char *, ...);
45 __attribute__((format (printf
, 1, 2)))
46 static void imap_warn(const char *, ...);
48 static char *next_arg(char **);
50 __attribute__((format (printf
, 3, 4)))
51 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...);
53 static int nfvasprintf(char **strp
, const char *fmt
, va_list ap
)
58 len
= vsnprintf(tmp
, sizeof(tmp
), fmt
, ap
);
60 die("Fatal: Out of memory");
61 if (len
>= sizeof(tmp
))
62 die("imap command overflow!");
63 *strp
= xmemdupz(tmp
, len
);
67 struct imap_server_conf
{
80 static struct imap_server_conf server
= {
90 NULL
, /* auth_method */
99 struct imap_socket sock
;
108 int uidnext
; /* from SELECT responses */
109 unsigned caps
, rcaps
; /* CAPABILITY results */
111 int nexttag
, num_in_progress
, literal_pending
;
112 struct imap_cmd
*in_progress
, **in_progress_append
;
113 struct imap_buffer buf
; /* this is BIG, so put it last */
117 /* currently open mailbox */
118 const char *name
; /* foreign! maybe preset? */
125 int (*cont
)(struct imap_store
*ctx
, struct imap_cmd
*cmd
, const char *prompt
);
126 void (*done
)(struct imap_store
*ctx
, struct imap_cmd
*cmd
, int response
);
134 struct imap_cmd
*next
;
135 struct imap_cmd_cb cb
;
140 #define CAP(cap) (imap->caps & (1 << (cap)))
151 static const char *cap_list
[] = {
164 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
);
168 static void ssl_socket_perror(const char *func
)
170 fprintf(stderr
, "%s: %s\n", func
, ERR_error_string(ERR_get_error(), NULL
));
174 static void socket_perror(const char *func
, struct imap_socket
*sock
, int ret
)
178 int sslerr
= SSL_get_error(sock
->ssl
, ret
);
182 case SSL_ERROR_SYSCALL
:
183 perror("SSL_connect");
186 ssl_socket_perror("SSL_connect");
195 fprintf(stderr
, "%s: unexpected EOF\n", func
);
200 static int ssl_socket_connect(struct imap_socket
*sock
, int use_tls_only
, int verify
)
202 fprintf(stderr
, "SSL requested but SSL support not compiled in\n");
208 static int host_matches(const char *host
, const char *pattern
)
210 if (pattern
[0] == '*' && pattern
[1] == '.') {
212 if (!(host
= strchr(host
, '.')))
217 return *host
&& *pattern
&& !strcasecmp(host
, pattern
);
220 static int verify_hostname(X509
*cert
, const char *hostname
)
226 STACK_OF(GENERAL_NAME
) *subj_alt_names
;
228 /* try the DNS subjectAltNames */
230 if ((subj_alt_names
= X509_get_ext_d2i(cert
, NID_subject_alt_name
, NULL
, NULL
))) {
231 int num_subj_alt_names
= sk_GENERAL_NAME_num(subj_alt_names
);
232 for (i
= 0; !found
&& i
< num_subj_alt_names
; i
++) {
233 GENERAL_NAME
*subj_alt_name
= sk_GENERAL_NAME_value(subj_alt_names
, i
);
234 if (subj_alt_name
->type
== GEN_DNS
&&
235 strlen((const char *)subj_alt_name
->d
.ia5
->data
) == (size_t)subj_alt_name
->d
.ia5
->length
&&
236 host_matches(hostname
, (const char *)(subj_alt_name
->d
.ia5
->data
)))
239 sk_GENERAL_NAME_pop_free(subj_alt_names
, GENERAL_NAME_free
);
244 /* try the common name */
245 if (!(subj
= X509_get_subject_name(cert
)))
246 return error("cannot get certificate subject");
247 if ((len
= X509_NAME_get_text_by_NID(subj
, NID_commonName
, cname
, sizeof(cname
))) < 0)
248 return error("cannot get certificate common name");
249 if (strlen(cname
) == (size_t)len
&& host_matches(hostname
, cname
))
251 return error("certificate owner '%s' does not match hostname '%s'",
255 static int ssl_socket_connect(struct imap_socket
*sock
, int use_tls_only
, int verify
)
257 #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
258 const SSL_METHOD
*meth
;
267 SSL_load_error_strings();
270 meth
= TLSv1_method();
272 meth
= SSLv23_method();
275 ssl_socket_perror("SSLv23_method");
279 ctx
= SSL_CTX_new(meth
);
282 SSL_CTX_set_verify(ctx
, SSL_VERIFY_PEER
, NULL
);
284 if (!SSL_CTX_set_default_verify_paths(ctx
)) {
285 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
288 sock
->ssl
= SSL_new(ctx
);
290 ssl_socket_perror("SSL_new");
293 if (!SSL_set_rfd(sock
->ssl
, sock
->fd
[0])) {
294 ssl_socket_perror("SSL_set_rfd");
297 if (!SSL_set_wfd(sock
->ssl
, sock
->fd
[1])) {
298 ssl_socket_perror("SSL_set_wfd");
302 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
305 * OpenSSL does not document this function, but the implementation
306 * returns 1 on success, 0 on failure after calling SSLerr().
308 ret
= SSL_set_tlsext_host_name(sock
->ssl
, server
.host
);
310 warning("SSL_set_tlsext_host_name(%s) failed.", server
.host
);
313 ret
= SSL_connect(sock
->ssl
);
315 socket_perror("SSL_connect", sock
, ret
);
320 /* make sure the hostname matches that of the certificate */
321 cert
= SSL_get_peer_certificate(sock
->ssl
);
323 return error("unable to get peer certificate.");
324 if (verify_hostname(cert
, server
.host
) < 0)
332 static int socket_read(struct imap_socket
*sock
, char *buf
, int len
)
337 n
= SSL_read(sock
->ssl
, buf
, len
);
340 n
= xread(sock
->fd
[0], buf
, len
);
342 socket_perror("read", sock
, n
);
345 sock
->fd
[0] = sock
->fd
[1] = -1;
350 static int socket_write(struct imap_socket
*sock
, const char *buf
, int len
)
355 n
= SSL_write(sock
->ssl
, buf
, len
);
358 n
= write_in_full(sock
->fd
[1], buf
, len
);
360 socket_perror("write", sock
, n
);
363 sock
->fd
[0] = sock
->fd
[1] = -1;
368 static void socket_shutdown(struct imap_socket
*sock
)
372 SSL_shutdown(sock
->ssl
);
380 /* simple line buffering */
381 static int buffer_gets(struct imap_buffer
*b
, char **s
)
384 int start
= b
->offset
;
389 /* make sure we have enough data to read the \r\n sequence */
390 if (b
->offset
+ 1 >= b
->bytes
) {
392 /* shift down used bytes */
395 assert(start
<= b
->bytes
);
396 n
= b
->bytes
- start
;
399 memmove(b
->buf
, b
->buf
+ start
, n
);
405 n
= socket_read(&b
->sock
, b
->buf
+ b
->bytes
,
406 sizeof(b
->buf
) - b
->bytes
);
414 if (b
->buf
[b
->offset
] == '\r') {
415 assert(b
->offset
+ 1 < b
->bytes
);
416 if (b
->buf
[b
->offset
+ 1] == '\n') {
417 b
->buf
[b
->offset
] = 0; /* terminate the string */
418 b
->offset
+= 2; /* next line */
430 static void imap_info(const char *msg
, ...)
442 static void imap_warn(const char *msg
, ...)
448 vfprintf(stderr
, msg
, va
);
453 static char *next_arg(char **s
)
459 while (isspace((unsigned char) **s
))
468 *s
= strchr(*s
, '"');
471 while (**s
&& !isspace((unsigned char) **s
))
483 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...)
489 if (blen
<= 0 || (unsigned)(ret
= vsnprintf(buf
, blen
, fmt
, va
)) >= (unsigned)blen
)
490 die("Fatal: buffer too small. Please report a bug.");
495 static struct imap_cmd
*issue_imap_cmd(struct imap_store
*ctx
,
496 struct imap_cmd_cb
*cb
,
497 const char *fmt
, va_list ap
)
499 struct imap
*imap
= ctx
->imap
;
500 struct imap_cmd
*cmd
;
504 cmd
= xmalloc(sizeof(struct imap_cmd
));
505 nfvasprintf(&cmd
->cmd
, fmt
, ap
);
506 cmd
->tag
= ++imap
->nexttag
;
511 memset(&cmd
->cb
, 0, sizeof(cmd
->cb
));
513 while (imap
->literal_pending
)
514 get_cmd_result(ctx
, NULL
);
517 bufl
= nfsnprintf(buf
, sizeof(buf
), "%d %s\r\n", cmd
->tag
, cmd
->cmd
);
519 bufl
= nfsnprintf(buf
, sizeof(buf
), "%d %s{%d%s}\r\n",
520 cmd
->tag
, cmd
->cmd
, cmd
->cb
.dlen
,
521 CAP(LITERALPLUS
) ? "+" : "");
524 if (imap
->num_in_progress
)
525 printf("(%d in progress) ", imap
->num_in_progress
);
526 if (memcmp(cmd
->cmd
, "LOGIN", 5))
527 printf(">>> %s", buf
);
529 printf(">>> %d LOGIN <user> <pass>\n", cmd
->tag
);
531 if (socket_write(&imap
->buf
.sock
, buf
, bufl
) != bufl
) {
539 if (CAP(LITERALPLUS
)) {
540 n
= socket_write(&imap
->buf
.sock
, cmd
->cb
.data
, cmd
->cb
.dlen
);
542 if (n
!= cmd
->cb
.dlen
||
543 socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2) {
550 imap
->literal_pending
= 1;
551 } else if (cmd
->cb
.cont
)
552 imap
->literal_pending
= 1;
554 *imap
->in_progress_append
= cmd
;
555 imap
->in_progress_append
= &cmd
->next
;
556 imap
->num_in_progress
++;
560 __attribute__((format (printf
, 3, 4)))
561 static int imap_exec(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
562 const char *fmt
, ...)
565 struct imap_cmd
*cmdp
;
568 cmdp
= issue_imap_cmd(ctx
, cb
, fmt
, ap
);
573 return get_cmd_result(ctx
, cmdp
);
576 __attribute__((format (printf
, 3, 4)))
577 static int imap_exec_m(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
578 const char *fmt
, ...)
581 struct imap_cmd
*cmdp
;
584 cmdp
= issue_imap_cmd(ctx
, cb
, fmt
, ap
);
587 return DRV_STORE_BAD
;
589 switch (get_cmd_result(ctx
, cmdp
)) {
590 case RESP_BAD
: return DRV_STORE_BAD
;
591 case RESP_NO
: return DRV_MSG_BAD
;
592 default: return DRV_OK
;
596 static int skip_imap_list_l(char **sp
, int level
)
601 while (isspace((unsigned char)*s
))
603 if (level
&& *s
== ')') {
610 if (skip_imap_list_l(&s
, level
+ 1))
612 } else if (*s
== '"') {
615 for (; *s
!= '"'; s
++)
621 for (; *s
&& !isspace((unsigned char)*s
); s
++)
622 if (level
&& *s
== ')')
638 static void skip_list(char **sp
)
640 skip_imap_list_l(sp
, 0);
643 static void parse_capability(struct imap
*imap
, char *cmd
)
648 imap
->caps
= 0x80000000;
649 while ((arg
= next_arg(&cmd
)))
650 for (i
= 0; i
< ARRAY_SIZE(cap_list
); i
++)
651 if (!strcmp(cap_list
[i
], arg
))
652 imap
->caps
|= 1 << i
;
653 imap
->rcaps
= imap
->caps
;
656 static int parse_response_code(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
659 struct imap
*imap
= ctx
->imap
;
663 return RESP_OK
; /* no response code */
665 if (!(p
= strchr(s
, ']'))) {
666 fprintf(stderr
, "IMAP error: malformed response code\n");
671 if (!strcmp("UIDVALIDITY", arg
)) {
672 if (!(arg
= next_arg(&s
)) || !(ctx
->uidvalidity
= atoi(arg
))) {
673 fprintf(stderr
, "IMAP error: malformed UIDVALIDITY status\n");
676 } else if (!strcmp("UIDNEXT", arg
)) {
677 if (!(arg
= next_arg(&s
)) || !(imap
->uidnext
= atoi(arg
))) {
678 fprintf(stderr
, "IMAP error: malformed NEXTUID status\n");
681 } else if (!strcmp("CAPABILITY", arg
)) {
682 parse_capability(imap
, s
);
683 } else if (!strcmp("ALERT", arg
)) {
684 /* RFC2060 says that these messages MUST be displayed
687 for (; isspace((unsigned char)*p
); p
++);
688 fprintf(stderr
, "*** IMAP ALERT *** %s\n", p
);
689 } else if (cb
&& cb
->ctx
&& !strcmp("APPENDUID", arg
)) {
690 if (!(arg
= next_arg(&s
)) || !(ctx
->uidvalidity
= atoi(arg
)) ||
691 !(arg
= next_arg(&s
)) || !(*(int *)cb
->ctx
= atoi(arg
))) {
692 fprintf(stderr
, "IMAP error: malformed APPENDUID status\n");
699 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
)
701 struct imap
*imap
= ctx
->imap
;
702 struct imap_cmd
*cmdp
, **pcmdp
;
703 char *cmd
, *arg
, *arg1
;
704 int n
, resp
, resp2
, tag
;
707 if (buffer_gets(&imap
->buf
, &cmd
))
710 arg
= next_arg(&cmd
);
712 arg
= next_arg(&cmd
);
714 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
718 if (!strcmp("NAMESPACE", arg
)) {
719 /* rfc2342 NAMESPACE response. */
720 skip_list(&cmd
); /* Personal mailboxes */
721 skip_list(&cmd
); /* Others' mailboxes */
722 skip_list(&cmd
); /* Shared mailboxes */
723 } else if (!strcmp("OK", arg
) || !strcmp("BAD", arg
) ||
724 !strcmp("NO", arg
) || !strcmp("BYE", arg
)) {
725 if ((resp
= parse_response_code(ctx
, NULL
, cmd
)) != RESP_OK
)
727 } else if (!strcmp("CAPABILITY", arg
)) {
728 parse_capability(imap
, cmd
);
729 } else if ((arg1
= next_arg(&cmd
))) {
731 * Unhandled response-data with at least two words.
734 * NEEDSWORK: Previously this case handled '<num> EXISTS'
735 * and '<num> RECENT' but as a probably-unintended side
736 * effect it ignores other unrecognized two-word
737 * responses. imap-send doesn't ever try to read
738 * messages or mailboxes these days, so consider
739 * eliminating this case.
742 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
745 } else if (!imap
->in_progress
) {
746 fprintf(stderr
, "IMAP error: unexpected reply: %s %s\n", arg
, cmd
? cmd
: "");
748 } else if (*arg
== '+') {
749 /* This can happen only with the last command underway, as
750 it enforces a round-trip. */
751 cmdp
= (struct imap_cmd
*)((char *)imap
->in_progress_append
-
752 offsetof(struct imap_cmd
, next
));
754 n
= socket_write(&imap
->buf
.sock
, cmdp
->cb
.data
, cmdp
->cb
.dlen
);
756 cmdp
->cb
.data
= NULL
;
757 if (n
!= (int)cmdp
->cb
.dlen
)
759 } else if (cmdp
->cb
.cont
) {
760 if (cmdp
->cb
.cont(ctx
, cmdp
, cmd
))
763 fprintf(stderr
, "IMAP error: unexpected command continuation request\n");
766 if (socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2)
769 imap
->literal_pending
= 0;
774 for (pcmdp
= &imap
->in_progress
; (cmdp
= *pcmdp
); pcmdp
= &cmdp
->next
)
775 if (cmdp
->tag
== tag
)
777 fprintf(stderr
, "IMAP error: unexpected tag %s\n", arg
);
780 if (!(*pcmdp
= cmdp
->next
))
781 imap
->in_progress_append
= pcmdp
;
782 imap
->num_in_progress
--;
783 if (cmdp
->cb
.cont
|| cmdp
->cb
.data
)
784 imap
->literal_pending
= 0;
785 arg
= next_arg(&cmd
);
786 if (!strcmp("OK", arg
))
789 if (!strcmp("NO", arg
))
791 else /*if (!strcmp("BAD", arg))*/
793 fprintf(stderr
, "IMAP command '%s' returned response (%s) - %s\n",
794 memcmp(cmdp
->cmd
, "LOGIN", 5) ?
795 cmdp
->cmd
: "LOGIN <user> <pass>",
796 arg
, cmd
? cmd
: "");
798 if ((resp2
= parse_response_code(ctx
, &cmdp
->cb
, cmd
)) > resp
)
801 cmdp
->cb
.done(ctx
, cmdp
, resp
);
805 if (!tcmd
|| tcmd
== cmdp
)
812 static void imap_close_server(struct imap_store
*ictx
)
814 struct imap
*imap
= ictx
->imap
;
816 if (imap
->buf
.sock
.fd
[0] != -1) {
817 imap_exec(ictx
, NULL
, "LOGOUT");
818 socket_shutdown(&imap
->buf
.sock
);
823 static void imap_close_store(struct imap_store
*ctx
)
825 imap_close_server(ctx
);
832 * hexchar() and cram() functions are based on the code from the isync
833 * project (http://isync.sf.net/).
835 static char hexchar(unsigned int b
)
837 return b
< 10 ? '0' + b
: 'a' + (b
- 10);
840 #define ENCODED_SIZE(n) (4*((n+2)/3))
841 static char *cram(const char *challenge_64
, const char *user
, const char *pass
)
843 int i
, resp_len
, encoded_len
, decoded_len
;
845 unsigned char hash
[16];
847 char *response
, *response_64
, *challenge
;
850 * length of challenge_64 (i.e. base-64 encoded string) is a good
851 * enough upper bound for challenge (decoded result).
853 encoded_len
= strlen(challenge_64
);
854 challenge
= xmalloc(encoded_len
);
855 decoded_len
= EVP_DecodeBlock((unsigned char *)challenge
,
856 (unsigned char *)challenge_64
, encoded_len
);
858 die("invalid challenge %s", challenge_64
);
859 HMAC_Init(&hmac
, (unsigned char *)pass
, strlen(pass
), EVP_md5());
860 HMAC_Update(&hmac
, (unsigned char *)challenge
, decoded_len
);
861 HMAC_Final(&hmac
, hash
, NULL
);
862 HMAC_CTX_cleanup(&hmac
);
865 for (i
= 0; i
< 16; i
++) {
866 hex
[2 * i
] = hexchar((hash
[i
] >> 4) & 0xf);
867 hex
[2 * i
+ 1] = hexchar(hash
[i
] & 0xf);
870 /* response: "<user> <digest in hex>" */
871 resp_len
= strlen(user
) + 1 + strlen(hex
) + 1;
872 response
= xmalloc(resp_len
);
873 sprintf(response
, "%s %s", user
, hex
);
875 response_64
= xmalloc(ENCODED_SIZE(resp_len
) + 1);
876 encoded_len
= EVP_EncodeBlock((unsigned char *)response_64
,
877 (unsigned char *)response
, resp_len
);
879 die("EVP_EncodeBlock error");
880 response_64
[encoded_len
] = '\0';
881 return (char *)response_64
;
886 static char *cram(const char *challenge_64
, const char *user
, const char *pass
)
888 die("If you want to use CRAM-MD5 authenticate method, "
889 "you have to build git-imap-send with OpenSSL library.");
894 static int auth_cram_md5(struct imap_store
*ctx
, struct imap_cmd
*cmd
, const char *prompt
)
899 response
= cram(prompt
, server
.user
, server
.pass
);
901 ret
= socket_write(&ctx
->imap
->buf
.sock
, response
, strlen(response
));
902 if (ret
!= strlen(response
))
903 return error("IMAP error: sending response failed");
910 static struct imap_store
*imap_open_store(struct imap_server_conf
*srvc
, char *folder
)
912 struct credential cred
= CREDENTIAL_INIT
;
913 struct imap_store
*ctx
;
918 ctx
= xcalloc(1, sizeof(*ctx
));
920 ctx
->imap
= imap
= xcalloc(sizeof(*imap
), 1);
921 imap
->buf
.sock
.fd
[0] = imap
->buf
.sock
.fd
[1] = -1;
922 imap
->in_progress_append
= &imap
->in_progress
;
924 /* open connection to IMAP server */
927 const char *argv
[] = { srvc
->tunnel
, NULL
};
928 struct child_process tunnel
= {NULL
};
930 imap_info("Starting tunnel '%s'... ", srvc
->tunnel
);
933 tunnel
.use_shell
= 1;
936 if (start_command(&tunnel
))
937 die("cannot start proxy %s", argv
[0]);
939 imap
->buf
.sock
.fd
[0] = tunnel
.out
;
940 imap
->buf
.sock
.fd
[1] = tunnel
.in
;
945 struct addrinfo hints
, *ai0
, *ai
;
949 snprintf(portstr
, sizeof(portstr
), "%d", srvc
->port
);
951 memset(&hints
, 0, sizeof(hints
));
952 hints
.ai_socktype
= SOCK_STREAM
;
953 hints
.ai_protocol
= IPPROTO_TCP
;
955 imap_info("Resolving %s... ", srvc
->host
);
956 gai
= getaddrinfo(srvc
->host
, portstr
, &hints
, &ai
);
958 fprintf(stderr
, "getaddrinfo: %s\n", gai_strerror(gai
));
963 for (ai0
= ai
; ai
; ai
= ai
->ai_next
) {
964 char addr
[NI_MAXHOST
];
966 s
= socket(ai
->ai_family
, ai
->ai_socktype
,
971 getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
,
972 sizeof(addr
), NULL
, 0, NI_NUMERICHOST
);
973 imap_info("Connecting to [%s]:%s... ", addr
, portstr
);
975 if (connect(s
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
987 struct sockaddr_in addr
;
989 memset(&addr
, 0, sizeof(addr
));
990 addr
.sin_port
= htons(srvc
->port
);
991 addr
.sin_family
= AF_INET
;
993 imap_info("Resolving %s... ", srvc
->host
);
994 he
= gethostbyname(srvc
->host
);
996 perror("gethostbyname");
1001 addr
.sin_addr
.s_addr
= *((int *) he
->h_addr_list
[0]);
1003 s
= socket(PF_INET
, SOCK_STREAM
, 0);
1005 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr
.sin_addr
), ntohs(addr
.sin_port
));
1006 if (connect(s
, (struct sockaddr
*)&addr
, sizeof(addr
))) {
1013 fputs("Error: unable to connect to server.\n", stderr
);
1017 imap
->buf
.sock
.fd
[0] = s
;
1018 imap
->buf
.sock
.fd
[1] = dup(s
);
1020 if (srvc
->use_ssl
&&
1021 ssl_socket_connect(&imap
->buf
.sock
, 0, srvc
->ssl_verify
)) {
1028 /* read the greeting string */
1029 if (buffer_gets(&imap
->buf
, &rsp
)) {
1030 fprintf(stderr
, "IMAP error: no greeting response\n");
1033 arg
= next_arg(&rsp
);
1034 if (!arg
|| *arg
!= '*' || (arg
= next_arg(&rsp
)) == NULL
) {
1035 fprintf(stderr
, "IMAP error: invalid greeting response\n");
1039 if (!strcmp("PREAUTH", arg
))
1041 else if (strcmp("OK", arg
) != 0) {
1042 fprintf(stderr
, "IMAP error: unknown greeting response\n");
1045 parse_response_code(ctx
, NULL
, rsp
);
1046 if (!imap
->caps
&& imap_exec(ctx
, NULL
, "CAPABILITY") != RESP_OK
)
1051 if (!srvc
->use_ssl
&& CAP(STARTTLS
)) {
1052 if (imap_exec(ctx
, NULL
, "STARTTLS") != RESP_OK
)
1054 if (ssl_socket_connect(&imap
->buf
.sock
, 1,
1057 /* capabilities may have changed, so get the new capabilities */
1058 if (imap_exec(ctx
, NULL
, "CAPABILITY") != RESP_OK
)
1062 imap_info("Logging in...\n");
1063 if (!srvc
->user
|| !srvc
->pass
) {
1064 cred
.protocol
= xstrdup(srvc
->use_ssl
? "imaps" : "imap");
1065 cred
.host
= xstrdup(srvc
->host
);
1068 cred
.username
= xstrdup(srvc
->user
);
1070 cred
.password
= xstrdup(srvc
->pass
);
1072 credential_fill(&cred
);
1075 srvc
->user
= xstrdup(cred
.username
);
1077 srvc
->pass
= xstrdup(cred
.password
);
1081 fprintf(stderr
, "Skipping account %s@%s, server forbids LOGIN\n", srvc
->user
, srvc
->host
);
1085 if (srvc
->auth_method
) {
1086 struct imap_cmd_cb cb
;
1088 if (!strcmp(srvc
->auth_method
, "CRAM-MD5")) {
1089 if (!CAP(AUTH_CRAM_MD5
)) {
1090 fprintf(stderr
, "You specified"
1091 "CRAM-MD5 as authentication method, "
1092 "but %s doesn't support it.\n", srvc
->host
);
1097 memset(&cb
, 0, sizeof(cb
));
1098 cb
.cont
= auth_cram_md5
;
1099 if (imap_exec(ctx
, &cb
, "AUTHENTICATE CRAM-MD5") != RESP_OK
) {
1100 fprintf(stderr
, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
1104 fprintf(stderr
, "Unknown authentication method:%s\n", srvc
->host
);
1108 if (!imap
->buf
.sock
.ssl
)
1109 imap_warn("*** IMAP Warning *** Password is being "
1110 "sent in the clear\n");
1111 if (imap_exec(ctx
, NULL
, "LOGIN \"%s\" \"%s\"", srvc
->user
, srvc
->pass
) != RESP_OK
) {
1112 fprintf(stderr
, "IMAP error: LOGIN failed\n");
1119 credential_approve(&cred
);
1120 credential_clear(&cred
);
1122 /* check the target mailbox exists */
1124 switch (imap_exec(ctx
, NULL
, "EXAMINE \"%s\"", ctx
->name
)) {
1129 fprintf(stderr
, "IMAP error: could not check mailbox\n");
1132 if (imap_exec(ctx
, NULL
, "CREATE \"%s\"", ctx
->name
) == RESP_OK
) {
1133 imap_info("Created missing mailbox\n");
1135 fprintf(stderr
, "IMAP error: could not create missing mailbox\n");
1146 credential_reject(&cred
);
1147 credential_clear(&cred
);
1150 imap_close_store(ctx
);
1155 * Insert CR characters as necessary in *msg to ensure that every LF
1156 * character in *msg is preceded by a CR.
1158 static void lf_to_crlf(struct strbuf
*msg
)
1164 /* First pass: tally, in j, the size of the new string: */
1165 for (i
= j
= 0, lastc
= '\0'; i
< msg
->len
; i
++) {
1166 if (msg
->buf
[i
] == '\n' && lastc
!= '\r')
1167 j
++; /* a CR will need to be added here */
1168 lastc
= msg
->buf
[i
];
1172 new = xmalloc(j
+ 1);
1175 * Second pass: write the new string. Note that this loop is
1176 * otherwise identical to the first pass.
1178 for (i
= j
= 0, lastc
= '\0'; i
< msg
->len
; i
++) {
1179 if (msg
->buf
[i
] == '\n' && lastc
!= '\r')
1181 lastc
= new[j
++] = msg
->buf
[i
];
1183 strbuf_attach(msg
, new, j
, j
+ 1);
1187 * Store msg to IMAP. Also detach and free the data from msg->data,
1188 * leaving msg->data empty.
1190 static int imap_store_msg(struct imap_store
*ctx
, struct strbuf
*msg
)
1192 struct imap
*imap
= ctx
->imap
;
1193 struct imap_cmd_cb cb
;
1194 const char *prefix
, *box
;
1198 memset(&cb
, 0, sizeof(cb
));
1201 cb
.data
= strbuf_detach(msg
, NULL
);
1204 prefix
= !strcmp(box
, "INBOX") ? "" : ctx
->prefix
;
1205 ret
= imap_exec_m(ctx
, &cb
, "APPEND \"%s%s\" ", prefix
, box
);
1206 imap
->caps
= imap
->rcaps
;
1213 static void wrap_in_html(struct strbuf
*msg
)
1215 struct strbuf buf
= STRBUF_INIT
;
1216 static char *content_type
= "Content-Type: text/html;\n";
1217 static char *pre_open
= "<pre>\n";
1218 static char *pre_close
= "</pre>\n";
1219 const char *body
= strstr(msg
->buf
, "\n\n");
1222 return; /* Headers but no body; no wrapping needed */
1226 strbuf_add(&buf
, msg
->buf
, body
- msg
->buf
- 1);
1227 strbuf_addstr(&buf
, content_type
);
1228 strbuf_addch(&buf
, '\n');
1229 strbuf_addstr(&buf
, pre_open
);
1230 strbuf_addstr_xml_quoted(&buf
, body
);
1231 strbuf_addstr(&buf
, pre_close
);
1233 strbuf_release(msg
);
1237 #define CHUNKSIZE 0x1000
1239 static int read_message(FILE *f
, struct strbuf
*all_msgs
)
1242 if (strbuf_fread(all_msgs
, CHUNKSIZE
, f
) <= 0)
1246 return ferror(f
) ? -1 : 0;
1249 static int count_messages(struct strbuf
*all_msgs
)
1252 char *p
= all_msgs
->buf
;
1255 if (starts_with(p
, "From ")) {
1256 p
= strstr(p
+5, "\nFrom: ");
1258 p
= strstr(p
+7, "\nDate: ");
1260 p
= strstr(p
+7, "\nSubject: ");
1265 p
= strstr(p
+5, "\nFrom ");
1274 * Copy the next message from all_msgs, starting at offset *ofs, to
1275 * msg. Update *ofs to the start of the following message. Return
1276 * true iff a message was successfully copied.
1278 static int split_msg(struct strbuf
*all_msgs
, struct strbuf
*msg
, int *ofs
)
1283 if (*ofs
>= all_msgs
->len
)
1286 data
= &all_msgs
->buf
[*ofs
];
1287 len
= all_msgs
->len
- *ofs
;
1289 if (len
< 5 || !starts_with(data
, "From "))
1292 p
= strchr(data
, '\n');
1300 p
= strstr(data
, "\nFrom ");
1304 strbuf_add(msg
, data
, len
);
1309 static char *imap_folder
;
1311 static int git_imap_config(const char *key
, const char *val
, void *cb
)
1313 if (!skip_prefix(key
, "imap.", &key
))
1316 /* check booleans first, and barf on others */
1317 if (!strcmp("sslverify", key
))
1318 server
.ssl_verify
= git_config_bool(key
, val
);
1319 else if (!strcmp("preformattedhtml", key
))
1320 server
.use_html
= git_config_bool(key
, val
);
1322 return config_error_nonbool(key
);
1324 if (!strcmp("folder", key
)) {
1325 imap_folder
= xstrdup(val
);
1326 } else if (!strcmp("host", key
)) {
1327 if (starts_with(val
, "imap:"))
1329 else if (starts_with(val
, "imaps:")) {
1333 if (starts_with(val
, "//"))
1335 server
.host
= xstrdup(val
);
1336 } else if (!strcmp("user", key
))
1337 server
.user
= xstrdup(val
);
1338 else if (!strcmp("pass", key
))
1339 server
.pass
= xstrdup(val
);
1340 else if (!strcmp("port", key
))
1341 server
.port
= git_config_int(key
, val
);
1342 else if (!strcmp("tunnel", key
))
1343 server
.tunnel
= xstrdup(val
);
1344 else if (!strcmp("authmethod", key
))
1345 server
.auth_method
= xstrdup(val
);
1350 int main(int argc
, char **argv
)
1352 struct strbuf all_msgs
= STRBUF_INIT
;
1353 struct strbuf msg
= STRBUF_INIT
;
1354 struct imap_store
*ctx
= NULL
;
1360 git_extract_argv0_path(argv
[0]);
1362 git_setup_gettext();
1365 usage(imap_send_usage
);
1367 setup_git_directory_gently(&nongit_ok
);
1368 git_config(git_imap_config
, NULL
);
1371 server
.port
= server
.use_ssl
? 993 : 143;
1374 fprintf(stderr
, "no imap store specified\n");
1378 if (!server
.tunnel
) {
1379 fprintf(stderr
, "no imap host specified\n");
1382 server
.host
= "tunnel";
1385 /* read the messages */
1386 if (read_message(stdin
, &all_msgs
)) {
1387 fprintf(stderr
, "error reading input\n");
1391 if (all_msgs
.len
== 0) {
1392 fprintf(stderr
, "nothing to send\n");
1396 total
= count_messages(&all_msgs
);
1398 fprintf(stderr
, "no messages to send\n");
1402 /* write it to the imap server */
1403 ctx
= imap_open_store(&server
, imap_folder
);
1405 fprintf(stderr
, "failed to open store\n");
1409 fprintf(stderr
, "sending %d message%s\n", total
, (total
!= 1) ? "s" : "");
1411 unsigned percent
= n
* 100 / total
;
1413 fprintf(stderr
, "%4u%% (%d/%d) done\r", percent
, n
, total
);
1414 if (!split_msg(&all_msgs
, &msg
, &ofs
))
1416 if (server
.use_html
)
1418 r
= imap_store_msg(ctx
, &msg
);
1423 fprintf(stderr
, "\n");
1425 imap_close_store(ctx
);