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
27 #include "run-command.h"
32 #include <openssl/evp.h>
33 #include <openssl/hmac.h>
38 const char *path; /* should this be here? its interpretation is driver-specific */
41 unsigned max_size; /* off_t is overkill */
42 unsigned trash_remote_new:1, trash_only_new:1;
45 /* For message->status */
46 #define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
47 #define M_DEAD (1<<1) /* expunged */
48 #define M_FLAGS (1<<2) /* flags fetched */
52 size_t size; /* zero implies "not fetched" */
54 unsigned char flags, status;
58 struct store_conf *conf; /* foreign */
60 /* currently open mailbox */
61 const char *name; /* foreign! maybe preset? */
63 struct message *msgs; /* own */
65 unsigned char opts; /* maybe preset? */
66 /* note that the following do _not_ reflect stats from msgs, but mailbox totals */
67 int count; /* # of messages */
68 int recent; /* # of recent messages - don't trust this beyond the initial read */
77 static const char imap_send_usage[] = "git imap-send < <mbox>";
81 #define DRV_MSG_BAD -1
82 #define DRV_BOX_BAD -2
83 #define DRV_STORE_BAD -3
85 static int Verbose, Quiet;
87 __attribute__((format (printf, 1, 2)))
88 static void imap_info(const char *, ...);
89 __attribute__((format (printf, 1, 2)))
90 static void imap_warn(const char *, ...);
92 static char *next_arg(char **);
94 static void free_generic_messages(struct message *);
96 __attribute__((format (printf, 3, 4)))
97 static int nfsnprintf(char *buf, int blen, const char *fmt, ...);
99 static int nfvasprintf(char **strp, const char *fmt, va_list ap)
104 len = vsnprintf(tmp, sizeof(tmp), fmt, ap);
106 die("Fatal: Out of memory");
107 if (len >= sizeof(tmp))
108 die("imap command overflow!");
109 *strp = xmemdupz(tmp, len);
113 struct imap_server_conf {
126 static struct imap_server_conf server = {
136 NULL, /* auth_method */
139 struct imap_store_conf {
140 struct store_conf gen;
141 struct imap_server_conf *server;
144 #define NIL (void *)0x1
145 #define LIST (void *)0x2
148 struct imap_list *next, *child;
159 struct imap_socket sock;
168 int uidnext; /* from SELECT responses */
169 struct imap_list *ns_personal, *ns_other, *ns_shared; /* NAMESPACE info */
170 unsigned caps, rcaps; /* CAPABILITY results */
172 int nexttag, num_in_progress, literal_pending;
173 struct imap_cmd *in_progress, **in_progress_append;
174 struct imap_buffer buf; /* this is BIG, so put it last */
182 unsigned /*currentnc:1,*/ trashnc:1;
186 int (*cont)(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt);
187 void (*done)(struct imap_store *ctx, struct imap_cmd *cmd, int response);
192 unsigned create:1, trycreate:1;
196 struct imap_cmd *next;
197 struct imap_cmd_cb cb;
202 #define CAP(cap) (imap->caps & (1 << (cap)))
213 static const char *cap_list[] = {
226 static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd);
229 static const char *Flags[] = {
238 static void ssl_socket_perror(const char *func)
240 fprintf(stderr, "%s: %s\n", func, ERR_error_string(ERR_get_error(), NULL));
244 static void socket_perror(const char *func, struct imap_socket *sock, int ret)
248 int sslerr = SSL_get_error(sock->ssl, ret);
252 case SSL_ERROR_SYSCALL:
253 perror("SSL_connect");
256 ssl_socket_perror("SSL_connect");
265 fprintf(stderr, "%s: unexpected EOF\n", func);
269 static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
272 fprintf(stderr, "SSL requested but SSL support not compiled in\n");
275 #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
276 const SSL_METHOD *meth;
284 SSL_load_error_strings();
287 meth = TLSv1_method();
289 meth = SSLv23_method();
292 ssl_socket_perror("SSLv23_method");
296 ctx = SSL_CTX_new(meth);
299 SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
301 if (!SSL_CTX_set_default_verify_paths(ctx)) {
302 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
305 sock->ssl = SSL_new(ctx);
307 ssl_socket_perror("SSL_new");
310 if (!SSL_set_rfd(sock->ssl, sock->fd[0])) {
311 ssl_socket_perror("SSL_set_rfd");
314 if (!SSL_set_wfd(sock->ssl, sock->fd[1])) {
315 ssl_socket_perror("SSL_set_wfd");
319 ret = SSL_connect(sock->ssl);
321 socket_perror("SSL_connect", sock, ret);
329 static int socket_read(struct imap_socket *sock, char *buf, int len)
334 n = SSL_read(sock->ssl, buf, len);
337 n = xread(sock->fd[0], buf, len);
339 socket_perror("read", sock, n);
342 sock->fd[0] = sock->fd[1] = -1;
347 static int socket_write(struct imap_socket *sock, const char *buf, int len)
352 n = SSL_write(sock->ssl, buf, len);
355 n = write_in_full(sock->fd[1], buf, len);
357 socket_perror("write", sock, n);
360 sock->fd[0] = sock->fd[1] = -1;
365 static void socket_shutdown(struct imap_socket *sock)
369 SSL_shutdown(sock->ssl);
377 /* simple line buffering */
378 static int buffer_gets(struct imap_buffer *b, char **s)
381 int start = b->offset;
386 /* make sure we have enough data to read the \r\n sequence */
387 if (b->offset + 1 >= b->bytes) {
389 /* shift down used bytes */
392 assert(start <= b->bytes);
393 n = b->bytes - start;
396 memmove(b->buf, b->buf + start, n);
402 n = socket_read(&b->sock, b->buf + b->bytes,
403 sizeof(b->buf) - b->bytes);
411 if (b->buf[b->offset] == '\r') {
412 assert(b->offset + 1 < b->bytes);
413 if (b->buf[b->offset + 1] == '\n') {
414 b->buf[b->offset] = 0; /* terminate the string */
415 b->offset += 2; /* next line */
427 static void imap_info(const char *msg, ...)
439 static void imap_warn(const char *msg, ...)
445 vfprintf(stderr, msg, va);
450 static char *next_arg(char **s)
456 while (isspace((unsigned char) **s))
465 *s = strchr(*s, '"');
468 while (**s && !isspace((unsigned char) **s))
480 static void free_generic_messages(struct message *msgs)
482 struct message *tmsg;
484 for (; msgs; msgs = tmsg) {
490 static int nfsnprintf(char *buf, int blen, const char *fmt, ...)
496 if (blen <= 0 || (unsigned)(ret = vsnprintf(buf, blen, fmt, va)) >= (unsigned)blen)
497 die("Fatal: buffer too small. Please report a bug.");
502 static struct imap_cmd *v_issue_imap_cmd(struct imap_store *ctx,
503 struct imap_cmd_cb *cb,
504 const char *fmt, va_list ap)
506 struct imap *imap = ctx->imap;
507 struct imap_cmd *cmd;
511 cmd = xmalloc(sizeof(struct imap_cmd));
512 nfvasprintf(&cmd->cmd, fmt, ap);
513 cmd->tag = ++imap->nexttag;
518 memset(&cmd->cb, 0, sizeof(cmd->cb));
520 while (imap->literal_pending)
521 get_cmd_result(ctx, NULL);
524 bufl = nfsnprintf(buf, sizeof(buf), "%d %s\r\n", cmd->tag, cmd->cmd);
526 bufl = nfsnprintf(buf, sizeof(buf), "%d %s{%d%s}\r\n",
527 cmd->tag, cmd->cmd, cmd->cb.dlen,
528 CAP(LITERALPLUS) ? "+" : "");
531 if (imap->num_in_progress)
532 printf("(%d in progress) ", imap->num_in_progress);
533 if (memcmp(cmd->cmd, "LOGIN", 5))
534 printf(">>> %s", buf);
536 printf(">>> %d LOGIN <user> <pass>\n", cmd->tag);
538 if (socket_write(&imap->buf.sock, buf, bufl) != bufl) {
546 if (CAP(LITERALPLUS)) {
547 n = socket_write(&imap->buf.sock, cmd->cb.data, cmd->cb.dlen);
549 if (n != cmd->cb.dlen ||
550 socket_write(&imap->buf.sock, "\r\n", 2) != 2) {
557 imap->literal_pending = 1;
558 } else if (cmd->cb.cont)
559 imap->literal_pending = 1;
561 *imap->in_progress_append = cmd;
562 imap->in_progress_append = &cmd->next;
563 imap->num_in_progress++;
567 __attribute__((format (printf, 3, 4)))
568 static struct imap_cmd *issue_imap_cmd(struct imap_store *ctx,
569 struct imap_cmd_cb *cb,
570 const char *fmt, ...)
572 struct imap_cmd *ret;
576 ret = v_issue_imap_cmd(ctx, cb, fmt, ap);
581 __attribute__((format (printf, 3, 4)))
582 static int imap_exec(struct imap_store *ctx, struct imap_cmd_cb *cb,
583 const char *fmt, ...)
586 struct imap_cmd *cmdp;
589 cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
594 return get_cmd_result(ctx, cmdp);
597 __attribute__((format (printf, 3, 4)))
598 static int imap_exec_m(struct imap_store *ctx, struct imap_cmd_cb *cb,
599 const char *fmt, ...)
602 struct imap_cmd *cmdp;
605 cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
608 return DRV_STORE_BAD;
610 switch (get_cmd_result(ctx, cmdp)) {
611 case RESP_BAD: return DRV_STORE_BAD;
612 case RESP_NO: return DRV_MSG_BAD;
613 default: return DRV_OK;
617 static int is_atom(struct imap_list *list)
619 return list && list->val && list->val != NIL && list->val != LIST;
622 static int is_list(struct imap_list *list)
624 return list && list->val == LIST;
627 static void free_list(struct imap_list *list)
629 struct imap_list *tmp;
631 for (; list; list = tmp) {
634 free_list(list->child);
635 else if (is_atom(list))
641 static int parse_imap_list_l(struct imap *imap, char **sp, struct imap_list **curp, int level)
643 struct imap_list *cur;
648 while (isspace((unsigned char)*s))
650 if (level && *s == ')') {
654 *curp = cur = xmalloc(sizeof(*cur));
656 cur->val = NULL; /* for clean bail */
661 if (parse_imap_list_l(imap, &s, &cur->child, level + 1))
663 } else if (imap && *s == '{') {
665 bytes = cur->len = strtol(s + 1, &s, 10);
669 s = cur->val = xmalloc(cur->len);
671 /* dump whats left over in the input buffer */
672 n = imap->buf.bytes - imap->buf.offset;
675 /* the entire message fit in the buffer */
678 memcpy(s, imap->buf.buf + imap->buf.offset, n);
682 /* mark that we used part of the buffer */
683 imap->buf.offset += n;
685 /* now read the rest of the message */
687 if ((n = socket_read(&imap->buf.sock, s, bytes)) <= 0)
693 if (buffer_gets(&imap->buf, &s))
695 } else if (*s == '"') {
699 for (; *s != '"'; s++)
704 cur->val = xmemdupz(p, cur->len);
708 for (; *s && !isspace((unsigned char)*s); s++)
709 if (level && *s == ')')
712 if (cur->len == 3 && !memcmp("NIL", p, 3))
715 cur->val = xmemdupz(p, cur->len);
732 static struct imap_list *parse_imap_list(struct imap *imap, char **sp)
734 struct imap_list *head;
736 if (!parse_imap_list_l(imap, sp, &head, 0))
742 static struct imap_list *parse_list(char **sp)
744 return parse_imap_list(NULL, sp);
747 static void parse_capability(struct imap *imap, char *cmd)
752 imap->caps = 0x80000000;
753 while ((arg = next_arg(&cmd)))
754 for (i = 0; i < ARRAY_SIZE(cap_list); i++)
755 if (!strcmp(cap_list[i], arg))
756 imap->caps |= 1 << i;
757 imap->rcaps = imap->caps;
760 static int parse_response_code(struct imap_store *ctx, struct imap_cmd_cb *cb,
763 struct imap *imap = ctx->imap;
767 return RESP_OK; /* no response code */
769 if (!(p = strchr(s, ']'))) {
770 fprintf(stderr, "IMAP error: malformed response code\n");
775 if (!strcmp("UIDVALIDITY", arg)) {
776 if (!(arg = next_arg(&s)) || !(ctx->gen.uidvalidity = atoi(arg))) {
777 fprintf(stderr, "IMAP error: malformed UIDVALIDITY status\n");
780 } else if (!strcmp("UIDNEXT", arg)) {
781 if (!(arg = next_arg(&s)) || !(imap->uidnext = atoi(arg))) {
782 fprintf(stderr, "IMAP error: malformed NEXTUID status\n");
785 } else if (!strcmp("CAPABILITY", arg)) {
786 parse_capability(imap, s);
787 } else if (!strcmp("ALERT", arg)) {
788 /* RFC2060 says that these messages MUST be displayed
791 for (; isspace((unsigned char)*p); p++);
792 fprintf(stderr, "*** IMAP ALERT *** %s\n", p);
793 } else if (cb && cb->ctx && !strcmp("APPENDUID", arg)) {
794 if (!(arg = next_arg(&s)) || !(ctx->gen.uidvalidity = atoi(arg)) ||
795 !(arg = next_arg(&s)) || !(*(int *)cb->ctx = atoi(arg))) {
796 fprintf(stderr, "IMAP error: malformed APPENDUID status\n");
803 static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd)
805 struct imap *imap = ctx->imap;
806 struct imap_cmd *cmdp, **pcmdp, *ncmdp;
807 char *cmd, *arg, *arg1, *p;
808 int n, resp, resp2, tag;
811 if (buffer_gets(&imap->buf, &cmd))
814 arg = next_arg(&cmd);
816 arg = next_arg(&cmd);
818 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
822 if (!strcmp("NAMESPACE", arg)) {
823 imap->ns_personal = parse_list(&cmd);
824 imap->ns_other = parse_list(&cmd);
825 imap->ns_shared = parse_list(&cmd);
826 } else if (!strcmp("OK", arg) || !strcmp("BAD", arg) ||
827 !strcmp("NO", arg) || !strcmp("BYE", arg)) {
828 if ((resp = parse_response_code(ctx, NULL, cmd)) != RESP_OK)
830 } else if (!strcmp("CAPABILITY", arg))
831 parse_capability(imap, cmd);
832 else if ((arg1 = next_arg(&cmd))) {
833 if (!strcmp("EXISTS", arg1))
834 ctx->gen.count = atoi(arg);
835 else if (!strcmp("RECENT", arg1))
836 ctx->gen.recent = atoi(arg);
838 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
841 } else if (!imap->in_progress) {
842 fprintf(stderr, "IMAP error: unexpected reply: %s %s\n", arg, cmd ? cmd : "");
844 } else if (*arg == '+') {
845 /* This can happen only with the last command underway, as
846 it enforces a round-trip. */
847 cmdp = (struct imap_cmd *)((char *)imap->in_progress_append -
848 offsetof(struct imap_cmd, next));
850 n = socket_write(&imap->buf.sock, cmdp->cb.data, cmdp->cb.dlen);
852 cmdp->cb.data = NULL;
853 if (n != (int)cmdp->cb.dlen)
855 } else if (cmdp->cb.cont) {
856 if (cmdp->cb.cont(ctx, cmdp, cmd))
859 fprintf(stderr, "IMAP error: unexpected command continuation request\n");
862 if (socket_write(&imap->buf.sock, "\r\n", 2) != 2)
865 imap->literal_pending = 0;
870 for (pcmdp = &imap->in_progress; (cmdp = *pcmdp); pcmdp = &cmdp->next)
871 if (cmdp->tag == tag)
873 fprintf(stderr, "IMAP error: unexpected tag %s\n", arg);
876 if (!(*pcmdp = cmdp->next))
877 imap->in_progress_append = pcmdp;
878 imap->num_in_progress--;
879 if (cmdp->cb.cont || cmdp->cb.data)
880 imap->literal_pending = 0;
881 arg = next_arg(&cmd);
882 if (!strcmp("OK", arg))
885 if (!strcmp("NO", arg)) {
886 if (cmdp->cb.create && cmd && (cmdp->cb.trycreate || !memcmp(cmd, "[TRYCREATE]", 11))) { /* SELECT, APPEND or UID COPY */
887 p = strchr(cmdp->cmd, '"');
888 if (!issue_imap_cmd(ctx, NULL, "CREATE \"%.*s\"", (int)(strchr(p + 1, '"') - p + 1), p)) {
892 /* not waiting here violates the spec, but a server that does not
893 grok this nonetheless violates it too. */
895 if (!(ncmdp = issue_imap_cmd(ctx, &cmdp->cb, "%s", cmdp->cmd))) {
902 return 0; /* ignored */
908 } else /*if (!strcmp("BAD", arg))*/
910 fprintf(stderr, "IMAP command '%s' returned response (%s) - %s\n",
911 memcmp(cmdp->cmd, "LOGIN", 5) ?
912 cmdp->cmd : "LOGIN <user> <pass>",
913 arg, cmd ? cmd : "");
915 if ((resp2 = parse_response_code(ctx, &cmdp->cb, cmd)) > resp)
919 cmdp->cb.done(ctx, cmdp, resp);
923 if (!tcmd || tcmd == cmdp)
930 static void imap_close_server(struct imap_store *ictx)
932 struct imap *imap = ictx->imap;
934 if (imap->buf.sock.fd[0] != -1) {
935 imap_exec(ictx, NULL, "LOGOUT");
936 socket_shutdown(&imap->buf.sock);
938 free_list(imap->ns_personal);
939 free_list(imap->ns_other);
940 free_list(imap->ns_shared);
944 static void imap_close_store(struct store *ctx)
946 imap_close_server((struct imap_store *)ctx);
947 free_generic_messages(ctx->msgs);
954 * hexchar() and cram() functions are based on the code from the isync
955 * project (http://isync.sf.net/).
957 static char hexchar(unsigned int b)
959 return b < 10 ? '0' + b : 'a' + (b - 10);
962 #define ENCODED_SIZE(n) (4*((n+2)/3))
963 static char *cram(const char *challenge_64, const char *user, const char *pass)
965 int i, resp_len, encoded_len, decoded_len;
967 unsigned char hash[16];
969 char *response, *response_64, *challenge;
972 * length of challenge_64 (i.e. base-64 encoded string) is a good
973 * enough upper bound for challenge (decoded result).
975 encoded_len = strlen(challenge_64);
976 challenge = xmalloc(encoded_len);
977 decoded_len = EVP_DecodeBlock((unsigned char *)challenge,
978 (unsigned char *)challenge_64, encoded_len);
980 die("invalid challenge %s", challenge_64);
981 HMAC_Init(&hmac, (unsigned char *)pass, strlen(pass), EVP_md5());
982 HMAC_Update(&hmac, (unsigned char *)challenge, decoded_len);
983 HMAC_Final(&hmac, hash, NULL);
984 HMAC_CTX_cleanup(&hmac);
987 for (i = 0; i < 16; i++) {
988 hex[2 * i] = hexchar((hash[i] >> 4) & 0xf);
989 hex[2 * i + 1] = hexchar(hash[i] & 0xf);
992 /* response: "<user> <digest in hex>" */
993 resp_len = strlen(user) + 1 + strlen(hex) + 1;
994 response = xmalloc(resp_len);
995 sprintf(response, "%s %s", user, hex);
997 response_64 = xmalloc(ENCODED_SIZE(resp_len) + 1);
998 encoded_len = EVP_EncodeBlock((unsigned char *)response_64,
999 (unsigned char *)response, resp_len);
1000 if (encoded_len < 0)
1001 die("EVP_EncodeBlock error");
1002 response_64[encoded_len] = '\0';
1003 return (char *)response_64;
1008 static char *cram(const char *challenge_64, const char *user, const char *pass)
1010 die("If you want to use CRAM-MD5 authenticate method, "
1011 "you have to build git-imap-send with OpenSSL library.");
1016 static int auth_cram_md5(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt)
1021 response = cram(prompt, server.user, server.pass);
1023 ret = socket_write(&ctx->imap->buf.sock, response, strlen(response));
1024 if (ret != strlen(response))
1025 return error("IMAP error: sending response failed");
1032 static struct store *imap_open_store(struct imap_server_conf *srvc)
1034 struct imap_store *ctx;
1037 int s = -1, preauth;
1039 ctx = xcalloc(sizeof(*ctx), 1);
1041 ctx->imap = imap = xcalloc(sizeof(*imap), 1);
1042 imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
1043 imap->in_progress_append = &imap->in_progress;
1045 /* open connection to IMAP server */
1048 const char *argv[] = { srvc->tunnel, NULL };
1049 struct child_process tunnel = {NULL};
1051 imap_info("Starting tunnel '%s'... ", srvc->tunnel);
1054 tunnel.use_shell = 1;
1057 if (start_command(&tunnel))
1058 die("cannot start proxy %s", argv[0]);
1060 imap->buf.sock.fd[0] = tunnel.out;
1061 imap->buf.sock.fd[1] = tunnel.in;
1066 struct addrinfo hints, *ai0, *ai;
1070 snprintf(portstr, sizeof(portstr), "%d", srvc->port);
1072 memset(&hints, 0, sizeof(hints));
1073 hints.ai_socktype = SOCK_STREAM;
1074 hints.ai_protocol = IPPROTO_TCP;
1076 imap_info("Resolving %s... ", srvc->host);
1077 gai = getaddrinfo(srvc->host, portstr, &hints, &ai);
1079 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(gai));
1084 for (ai0 = ai; ai; ai = ai->ai_next) {
1085 char addr[NI_MAXHOST];
1087 s = socket(ai->ai_family, ai->ai_socktype,
1092 getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1093 sizeof(addr), NULL, 0, NI_NUMERICHOST);
1094 imap_info("Connecting to [%s]:%s... ", addr, portstr);
1096 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
1108 struct sockaddr_in addr;
1110 memset(&addr, 0, sizeof(addr));
1111 addr.sin_port = htons(srvc->port);
1112 addr.sin_family = AF_INET;
1114 imap_info("Resolving %s... ", srvc->host);
1115 he = gethostbyname(srvc->host);
1117 perror("gethostbyname");
1122 addr.sin_addr.s_addr = *((int *) he->h_addr_list[0]);
1124 s = socket(PF_INET, SOCK_STREAM, 0);
1126 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
1127 if (connect(s, (struct sockaddr *)&addr, sizeof(addr))) {
1134 fputs("Error: unable to connect to server.\n", stderr);
1138 imap->buf.sock.fd[0] = s;
1139 imap->buf.sock.fd[1] = dup(s);
1141 if (srvc->use_ssl &&
1142 ssl_socket_connect(&imap->buf.sock, 0, srvc->ssl_verify)) {
1149 /* read the greeting string */
1150 if (buffer_gets(&imap->buf, &rsp)) {
1151 fprintf(stderr, "IMAP error: no greeting response\n");
1154 arg = next_arg(&rsp);
1155 if (!arg || *arg != '*' || (arg = next_arg(&rsp)) == NULL) {
1156 fprintf(stderr, "IMAP error: invalid greeting response\n");
1160 if (!strcmp("PREAUTH", arg))
1162 else if (strcmp("OK", arg) != 0) {
1163 fprintf(stderr, "IMAP error: unknown greeting response\n");
1166 parse_response_code(ctx, NULL, rsp);
1167 if (!imap->caps && imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
1172 if (!srvc->use_ssl && CAP(STARTTLS)) {
1173 if (imap_exec(ctx, NULL, "STARTTLS") != RESP_OK)
1175 if (ssl_socket_connect(&imap->buf.sock, 1,
1178 /* capabilities may have changed, so get the new capabilities */
1179 if (imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
1183 imap_info("Logging in...\n");
1185 fprintf(stderr, "Skipping server %s, no user\n", srvc->host);
1189 struct strbuf prompt = STRBUF_INIT;
1190 strbuf_addf(&prompt, "Password (%s@%s): ", srvc->user, srvc->host);
1191 arg = git_getpass(prompt.buf);
1192 strbuf_release(&prompt);
1194 fprintf(stderr, "Skipping account %s@%s, no password\n", srvc->user, srvc->host);
1198 * getpass() returns a pointer to a static buffer. make a copy
1199 * for long term storage.
1201 srvc->pass = xstrdup(arg);
1204 fprintf(stderr, "Skipping account %s@%s, server forbids LOGIN\n", srvc->user, srvc->host);
1208 if (srvc->auth_method) {
1209 struct imap_cmd_cb cb;
1211 if (!strcmp(srvc->auth_method, "CRAM-MD5")) {
1212 if (!CAP(AUTH_CRAM_MD5)) {
1213 fprintf(stderr, "You specified"
1214 "CRAM-MD5 as authentication method, "
1215 "but %s doesn't support it.\n", srvc->host);
1220 memset(&cb, 0, sizeof(cb));
1221 cb.cont = auth_cram_md5;
1222 if (imap_exec(ctx, &cb, "AUTHENTICATE CRAM-MD5") != RESP_OK) {
1223 fprintf(stderr, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
1227 fprintf(stderr, "Unknown authentication method:%s\n", srvc->host);
1231 if (!imap->buf.sock.ssl)
1232 imap_warn("*** IMAP Warning *** Password is being "
1233 "sent in the clear\n");
1234 if (imap_exec(ctx, NULL, "LOGIN \"%s\" \"%s\"", srvc->user, srvc->pass) != RESP_OK) {
1235 fprintf(stderr, "IMAP error: LOGIN failed\n");
1243 return (struct store *)ctx;
1246 imap_close_store(&ctx->gen);
1250 static int imap_make_flags(int flags, char *buf)
1255 for (i = d = 0; i < ARRAY_SIZE(Flags); i++)
1256 if (flags & (1 << i)) {
1259 for (s = Flags[i]; *s; s++)
1267 static void lf_to_crlf(struct msg_data *msg)
1270 int i, j, lfnum = 0;
1272 if (msg->data[0] == '\n')
1274 for (i = 1; i < msg->len; i++) {
1275 if (msg->data[i - 1] != '\r' && msg->data[i] == '\n')
1279 new = xmalloc(msg->len + lfnum);
1280 if (msg->data[0] == '\n') {
1286 new[0] = msg->data[0];
1290 for ( ; i < msg->len; i++) {
1291 if (msg->data[i] != '\n') {
1292 new[j++] = msg->data[i];
1295 if (msg->data[i - 1] != '\r')
1297 /* otherwise it already had CR before */
1305 static int imap_store_msg(struct store *gctx, struct msg_data *data)
1307 struct imap_store *ctx = (struct imap_store *)gctx;
1308 struct imap *imap = ctx->imap;
1309 struct imap_cmd_cb cb;
1310 const char *prefix, *box;
1315 memset(&cb, 0, sizeof(cb));
1317 cb.dlen = data->len;
1318 cb.data = xmalloc(cb.dlen);
1319 memcpy(cb.data, data->data, data->len);
1323 d = imap_make_flags(data->flags, flagstr);
1329 prefix = !strcmp(box, "INBOX") ? "" : ctx->prefix;
1331 ret = imap_exec_m(ctx, &cb, "APPEND \"%s%s\" %s", prefix, box, flagstr);
1332 imap->caps = imap->rcaps;
1340 static void encode_html_chars(struct strbuf *p)
1343 for (i = 0; i < p->len; i++) {
1344 if (p->buf[i] == '&')
1345 strbuf_splice(p, i, 1, "&", 5);
1346 if (p->buf[i] == '<')
1347 strbuf_splice(p, i, 1, "<", 4);
1348 if (p->buf[i] == '>')
1349 strbuf_splice(p, i, 1, ">", 4);
1350 if (p->buf[i] == '"')
1351 strbuf_splice(p, i, 1, """, 6);
1354 static void wrap_in_html(struct msg_data *msg)
1356 struct strbuf buf = STRBUF_INIT;
1357 struct strbuf **lines;
1359 static char *content_type = "Content-Type: text/html;\n";
1360 static char *pre_open = "<pre>\n";
1361 static char *pre_close = "</pre>\n";
1362 int added_header = 0;
1364 strbuf_attach(&buf, msg->data, msg->len, msg->len);
1365 lines = strbuf_split(&buf, '\n');
1366 strbuf_release(&buf);
1367 for (p = lines; *p; p++) {
1368 if (! added_header) {
1369 if ((*p)->len == 1 && *((*p)->buf) == '\n') {
1370 strbuf_addstr(&buf, content_type);
1371 strbuf_addbuf(&buf, *p);
1372 strbuf_addstr(&buf, pre_open);
1378 encode_html_chars(*p);
1379 strbuf_addbuf(&buf, *p);
1381 strbuf_addstr(&buf, pre_close);
1382 strbuf_list_free(lines);
1384 msg->data = strbuf_detach(&buf, NULL);
1387 #define CHUNKSIZE 0x1000
1389 static int read_message(FILE *f, struct msg_data *msg)
1391 struct strbuf buf = STRBUF_INIT;
1393 memset(msg, 0, sizeof(*msg));
1396 if (strbuf_fread(&buf, CHUNKSIZE, f) <= 0)
1401 msg->data = strbuf_detach(&buf, NULL);
1405 static int count_messages(struct msg_data *msg)
1408 char *p = msg->data;
1411 if (!prefixcmp(p, "From ")) {
1412 p = strstr(p+5, "\nFrom: ");
1414 p = strstr(p+7, "\nDate: ");
1416 p = strstr(p+7, "\nSubject: ");
1421 p = strstr(p+5, "\nFrom ");
1429 static int split_msg(struct msg_data *all_msgs, struct msg_data *msg, int *ofs)
1433 memset(msg, 0, sizeof *msg);
1434 if (*ofs >= all_msgs->len)
1437 data = &all_msgs->data[*ofs];
1438 msg->len = all_msgs->len - *ofs;
1440 if (msg->len < 5 || prefixcmp(data, "From "))
1443 p = strchr(data, '\n');
1451 p = strstr(data, "\nFrom ");
1453 msg->len = &p[1] - data;
1455 msg->data = xmemdupz(data, msg->len);
1460 static char *imap_folder;
1462 static int git_imap_config(const char *key, const char *val, void *cb)
1464 char imap_key[] = "imap.";
1466 if (strncmp(key, imap_key, sizeof imap_key - 1))
1469 key += sizeof imap_key - 1;
1471 /* check booleans first, and barf on others */
1472 if (!strcmp("sslverify", key))
1473 server.ssl_verify = git_config_bool(key, val);
1474 else if (!strcmp("preformattedhtml", key))
1475 server.use_html = git_config_bool(key, val);
1477 return config_error_nonbool(key);
1479 if (!strcmp("folder", key)) {
1480 imap_folder = xstrdup(val);
1481 } else if (!strcmp("host", key)) {
1482 if (!prefixcmp(val, "imap:"))
1484 else if (!prefixcmp(val, "imaps:")) {
1488 if (!prefixcmp(val, "//"))
1490 server.host = xstrdup(val);
1491 } else if (!strcmp("user", key))
1492 server.user = xstrdup(val);
1493 else if (!strcmp("pass", key))
1494 server.pass = xstrdup(val);
1495 else if (!strcmp("port", key))
1496 server.port = git_config_int(key, val);
1497 else if (!strcmp("tunnel", key))
1498 server.tunnel = xstrdup(val);
1499 else if (!strcmp("authmethod", key))
1500 server.auth_method = xstrdup(val);
1505 int main(int argc, char **argv)
1507 struct msg_data all_msgs, msg;
1508 struct store *ctx = NULL;
1514 git_extract_argv0_path(argv[0]);
1516 git_setup_gettext();
1519 usage(imap_send_usage);
1521 setup_git_directory_gently(&nongit_ok);
1522 git_config(git_imap_config, NULL);
1525 server.port = server.use_ssl ? 993 : 143;
1528 fprintf(stderr, "no imap store specified\n");
1532 if (!server.tunnel) {
1533 fprintf(stderr, "no imap host specified\n");
1536 server.host = "tunnel";
1539 /* read the messages */
1540 if (!read_message(stdin, &all_msgs)) {
1541 fprintf(stderr, "nothing to send\n");
1545 total = count_messages(&all_msgs);
1547 fprintf(stderr, "no messages to send\n");
1551 /* write it to the imap server */
1552 ctx = imap_open_store(&server);
1554 fprintf(stderr, "failed to open store\n");
1558 fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1559 ctx->name = imap_folder;
1561 unsigned percent = n * 100 / total;
1562 fprintf(stderr, "%4u%% (%d/%d) done\r", percent, n, total);
1563 if (!split_msg(&all_msgs, &msg, &ofs))
1565 if (server.use_html)
1567 r = imap_store_msg(ctx, &msg);
1572 fprintf(stderr, "\n");
1574 imap_close_store(ctx);