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 {
81 static struct imap_server_conf server = {
92 NULL, /* auth_method */
101 struct imap_socket sock;
110 int uidnext; /* from SELECT responses */
111 unsigned caps, rcaps; /* CAPABILITY results */
113 int nexttag, num_in_progress, literal_pending;
114 struct imap_cmd *in_progress, **in_progress_append;
115 struct imap_buffer buf; /* this is BIG, so put it last */
119 /* currently open mailbox */
120 const char *name; /* foreign! maybe preset? */
127 int (*cont)(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt);
128 void (*done)(struct imap_store *ctx, struct imap_cmd *cmd, int response);
133 unsigned create:1, trycreate:1;
137 struct imap_cmd *next;
138 struct imap_cmd_cb cb;
143 #define CAP(cap) (imap->caps & (1 << (cap)))
154 static const char *cap_list[] = {
167 static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd);
171 static void ssl_socket_perror(const char *func)
173 fprintf(stderr, "%s: %s\n", func, ERR_error_string(ERR_get_error(), NULL));
177 static void socket_perror(const char *func, struct imap_socket *sock, int ret)
181 int sslerr = SSL_get_error(sock->ssl, ret);
185 case SSL_ERROR_SYSCALL:
186 perror("SSL_connect");
189 ssl_socket_perror("SSL_connect");
198 fprintf(stderr, "%s: unexpected EOF\n", func);
203 static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
205 fprintf(stderr, "SSL requested but SSL support not compiled in\n");
211 static int host_matches(const char *host, const char *pattern)
213 if (pattern[0] == '*' && pattern[1] == '.') {
215 if (!(host = strchr(host, '.')))
220 return *host && *pattern && !strcasecmp(host, pattern);
223 static int verify_hostname(X509 *cert, const char *hostname)
229 STACK_OF(GENERAL_NAME) *subj_alt_names;
231 /* try the DNS subjectAltNames */
233 if ((subj_alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL))) {
234 int num_subj_alt_names = sk_GENERAL_NAME_num(subj_alt_names);
235 for (i = 0; !found && i < num_subj_alt_names; i++) {
236 GENERAL_NAME *subj_alt_name = sk_GENERAL_NAME_value(subj_alt_names, i);
237 if (subj_alt_name->type == GEN_DNS &&
238 strlen((const char *)subj_alt_name->d.ia5->data) == (size_t)subj_alt_name->d.ia5->length &&
239 host_matches(hostname, (const char *)(subj_alt_name->d.ia5->data)))
242 sk_GENERAL_NAME_pop_free(subj_alt_names, GENERAL_NAME_free);
247 /* try the common name */
248 if (!(subj = X509_get_subject_name(cert)))
249 return error("cannot get certificate subject");
250 if ((len = X509_NAME_get_text_by_NID(subj, NID_commonName, cname, sizeof(cname))) < 0)
251 return error("cannot get certificate common name");
252 if (strlen(cname) == (size_t)len && host_matches(hostname, cname))
254 return error("certificate owner '%s' does not match hostname '%s'",
258 static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
260 #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
261 const SSL_METHOD *meth;
270 SSL_load_error_strings();
273 meth = TLSv1_method();
275 meth = SSLv23_method();
278 ssl_socket_perror("SSLv23_method");
282 ctx = SSL_CTX_new(meth);
285 SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
287 if (!SSL_CTX_set_default_verify_paths(ctx)) {
288 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
291 sock->ssl = SSL_new(ctx);
293 ssl_socket_perror("SSL_new");
296 if (!SSL_set_rfd(sock->ssl, sock->fd[0])) {
297 ssl_socket_perror("SSL_set_rfd");
300 if (!SSL_set_wfd(sock->ssl, sock->fd[1])) {
301 ssl_socket_perror("SSL_set_wfd");
305 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
308 * OpenSSL does not document this function, but the implementation
309 * returns 1 on success, 0 on failure after calling SSLerr().
311 ret = SSL_set_tlsext_host_name(sock->ssl, server.host);
313 warning("SSL_set_tlsext_host_name(%s) failed.", server.host);
316 ret = SSL_connect(sock->ssl);
318 socket_perror("SSL_connect", sock, ret);
323 /* make sure the hostname matches that of the certificate */
324 cert = SSL_get_peer_certificate(sock->ssl);
326 return error("unable to get peer certificate.");
327 if (verify_hostname(cert, server.host) < 0)
335 static int socket_read(struct imap_socket *sock, char *buf, int len)
340 n = SSL_read(sock->ssl, buf, len);
343 n = xread(sock->fd[0], buf, len);
345 socket_perror("read", sock, n);
348 sock->fd[0] = sock->fd[1] = -1;
353 static int socket_write(struct imap_socket *sock, const char *buf, int len)
358 n = SSL_write(sock->ssl, buf, len);
361 n = write_in_full(sock->fd[1], buf, len);
363 socket_perror("write", sock, n);
366 sock->fd[0] = sock->fd[1] = -1;
371 static void socket_shutdown(struct imap_socket *sock)
375 SSL_shutdown(sock->ssl);
383 /* simple line buffering */
384 static int buffer_gets(struct imap_buffer *b, char **s)
387 int start = b->offset;
392 /* make sure we have enough data to read the \r\n sequence */
393 if (b->offset + 1 >= b->bytes) {
395 /* shift down used bytes */
398 assert(start <= b->bytes);
399 n = b->bytes - start;
402 memmove(b->buf, b->buf + start, n);
408 n = socket_read(&b->sock, b->buf + b->bytes,
409 sizeof(b->buf) - b->bytes);
417 if (b->buf[b->offset] == '\r') {
418 assert(b->offset + 1 < b->bytes);
419 if (b->buf[b->offset + 1] == '\n') {
420 b->buf[b->offset] = 0; /* terminate the string */
421 b->offset += 2; /* next line */
433 static void imap_info(const char *msg, ...)
445 static void imap_warn(const char *msg, ...)
451 vfprintf(stderr, msg, va);
456 static char *next_arg(char **s)
462 while (isspace((unsigned char) **s))
471 *s = strchr(*s, '"');
474 while (**s && !isspace((unsigned char) **s))
486 static int nfsnprintf(char *buf, int blen, const char *fmt, ...)
492 if (blen <= 0 || (unsigned)(ret = vsnprintf(buf, blen, fmt, va)) >= (unsigned)blen)
493 die("Fatal: buffer too small. Please report a bug.");
498 static struct imap_cmd *v_issue_imap_cmd(struct imap_store *ctx,
499 struct imap_cmd_cb *cb,
500 const char *fmt, va_list ap)
502 struct imap *imap = ctx->imap;
503 struct imap_cmd *cmd;
507 cmd = xmalloc(sizeof(struct imap_cmd));
508 nfvasprintf(&cmd->cmd, fmt, ap);
509 cmd->tag = ++imap->nexttag;
514 memset(&cmd->cb, 0, sizeof(cmd->cb));
516 while (imap->literal_pending)
517 get_cmd_result(ctx, NULL);
520 bufl = nfsnprintf(buf, sizeof(buf), "%d %s\r\n", cmd->tag, cmd->cmd);
522 bufl = nfsnprintf(buf, sizeof(buf), "%d %s{%d%s}\r\n",
523 cmd->tag, cmd->cmd, cmd->cb.dlen,
524 CAP(LITERALPLUS) ? "+" : "");
527 if (imap->num_in_progress)
528 printf("(%d in progress) ", imap->num_in_progress);
529 if (!starts_with(cmd->cmd, "LOGIN"))
530 printf(">>> %s", buf);
532 printf(">>> %d LOGIN <user> <pass>\n", cmd->tag);
534 if (socket_write(&imap->buf.sock, buf, bufl) != bufl) {
542 if (CAP(LITERALPLUS)) {
543 n = socket_write(&imap->buf.sock, cmd->cb.data, cmd->cb.dlen);
545 if (n != cmd->cb.dlen ||
546 socket_write(&imap->buf.sock, "\r\n", 2) != 2) {
553 imap->literal_pending = 1;
554 } else if (cmd->cb.cont)
555 imap->literal_pending = 1;
557 *imap->in_progress_append = cmd;
558 imap->in_progress_append = &cmd->next;
559 imap->num_in_progress++;
563 __attribute__((format (printf, 3, 4)))
564 static struct imap_cmd *issue_imap_cmd(struct imap_store *ctx,
565 struct imap_cmd_cb *cb,
566 const char *fmt, ...)
568 struct imap_cmd *ret;
572 ret = v_issue_imap_cmd(ctx, cb, fmt, ap);
577 __attribute__((format (printf, 3, 4)))
578 static int imap_exec(struct imap_store *ctx, struct imap_cmd_cb *cb,
579 const char *fmt, ...)
582 struct imap_cmd *cmdp;
585 cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
590 return get_cmd_result(ctx, cmdp);
593 __attribute__((format (printf, 3, 4)))
594 static int imap_exec_m(struct imap_store *ctx, struct imap_cmd_cb *cb,
595 const char *fmt, ...)
598 struct imap_cmd *cmdp;
601 cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
604 return DRV_STORE_BAD;
606 switch (get_cmd_result(ctx, cmdp)) {
607 case RESP_BAD: return DRV_STORE_BAD;
608 case RESP_NO: return DRV_MSG_BAD;
609 default: return DRV_OK;
613 static int skip_imap_list_l(char **sp, int level)
618 while (isspace((unsigned char)*s))
620 if (level && *s == ')') {
627 if (skip_imap_list_l(&s, level + 1))
629 } else if (*s == '"') {
632 for (; *s != '"'; s++)
638 for (; *s && !isspace((unsigned char)*s); s++)
639 if (level && *s == ')')
655 static void skip_list(char **sp)
657 skip_imap_list_l(sp, 0);
660 static void parse_capability(struct imap *imap, char *cmd)
665 imap->caps = 0x80000000;
666 while ((arg = next_arg(&cmd)))
667 for (i = 0; i < ARRAY_SIZE(cap_list); i++)
668 if (!strcmp(cap_list[i], arg))
669 imap->caps |= 1 << i;
670 imap->rcaps = imap->caps;
673 static int parse_response_code(struct imap_store *ctx, struct imap_cmd_cb *cb,
676 struct imap *imap = ctx->imap;
680 return RESP_OK; /* no response code */
682 if (!(p = strchr(s, ']'))) {
683 fprintf(stderr, "IMAP error: malformed response code\n");
688 if (!strcmp("UIDVALIDITY", arg)) {
689 if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg))) {
690 fprintf(stderr, "IMAP error: malformed UIDVALIDITY status\n");
693 } else if (!strcmp("UIDNEXT", arg)) {
694 if (!(arg = next_arg(&s)) || !(imap->uidnext = atoi(arg))) {
695 fprintf(stderr, "IMAP error: malformed NEXTUID status\n");
698 } else if (!strcmp("CAPABILITY", arg)) {
699 parse_capability(imap, s);
700 } else if (!strcmp("ALERT", arg)) {
701 /* RFC2060 says that these messages MUST be displayed
704 for (; isspace((unsigned char)*p); p++);
705 fprintf(stderr, "*** IMAP ALERT *** %s\n", p);
706 } else if (cb && cb->ctx && !strcmp("APPENDUID", arg)) {
707 if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg)) ||
708 !(arg = next_arg(&s)) || !(*(int *)cb->ctx = atoi(arg))) {
709 fprintf(stderr, "IMAP error: malformed APPENDUID status\n");
716 static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd)
718 struct imap *imap = ctx->imap;
719 struct imap_cmd *cmdp, **pcmdp, *ncmdp;
720 char *cmd, *arg, *arg1, *p;
721 int n, resp, resp2, tag;
724 if (buffer_gets(&imap->buf, &cmd))
727 arg = next_arg(&cmd);
729 arg = next_arg(&cmd);
731 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
735 if (!strcmp("NAMESPACE", arg)) {
736 /* rfc2342 NAMESPACE response. */
737 skip_list(&cmd); /* Personal mailboxes */
738 skip_list(&cmd); /* Others' mailboxes */
739 skip_list(&cmd); /* Shared mailboxes */
740 } else if (!strcmp("OK", arg) || !strcmp("BAD", arg) ||
741 !strcmp("NO", arg) || !strcmp("BYE", arg)) {
742 if ((resp = parse_response_code(ctx, NULL, cmd)) != RESP_OK)
744 } else if (!strcmp("CAPABILITY", arg)) {
745 parse_capability(imap, cmd);
746 } else if ((arg1 = next_arg(&cmd))) {
748 * Unhandled response-data with at least two words.
751 * NEEDSWORK: Previously this case handled '<num> EXISTS'
752 * and '<num> RECENT' but as a probably-unintended side
753 * effect it ignores other unrecognized two-word
754 * responses. imap-send doesn't ever try to read
755 * messages or mailboxes these days, so consider
756 * eliminating this case.
759 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
762 } else if (!imap->in_progress) {
763 fprintf(stderr, "IMAP error: unexpected reply: %s %s\n", arg, cmd ? cmd : "");
765 } else if (*arg == '+') {
766 /* This can happen only with the last command underway, as
767 it enforces a round-trip. */
768 cmdp = (struct imap_cmd *)((char *)imap->in_progress_append -
769 offsetof(struct imap_cmd, next));
771 n = socket_write(&imap->buf.sock, cmdp->cb.data, cmdp->cb.dlen);
773 cmdp->cb.data = NULL;
774 if (n != (int)cmdp->cb.dlen)
776 } else if (cmdp->cb.cont) {
777 if (cmdp->cb.cont(ctx, cmdp, cmd))
780 fprintf(stderr, "IMAP error: unexpected command continuation request\n");
783 if (socket_write(&imap->buf.sock, "\r\n", 2) != 2)
786 imap->literal_pending = 0;
791 for (pcmdp = &imap->in_progress; (cmdp = *pcmdp); pcmdp = &cmdp->next)
792 if (cmdp->tag == tag)
794 fprintf(stderr, "IMAP error: unexpected tag %s\n", arg);
797 if (!(*pcmdp = cmdp->next))
798 imap->in_progress_append = pcmdp;
799 imap->num_in_progress--;
800 if (cmdp->cb.cont || cmdp->cb.data)
801 imap->literal_pending = 0;
802 arg = next_arg(&cmd);
803 if (!strcmp("OK", arg))
806 if (!strcmp("NO", arg)) {
807 if (cmdp->cb.create && cmd && (cmdp->cb.trycreate || !memcmp(cmd, "[TRYCREATE]", 11))) { /* SELECT, APPEND or UID COPY */
808 p = strchr(cmdp->cmd, '"');
809 if (!issue_imap_cmd(ctx, NULL, "CREATE \"%.*s\"", (int)(strchr(p + 1, '"') - p + 1), p)) {
813 /* not waiting here violates the spec, but a server that does not
814 grok this nonetheless violates it too. */
816 if (!(ncmdp = issue_imap_cmd(ctx, &cmdp->cb, "%s", cmdp->cmd))) {
823 return 0; /* ignored */
829 } else /*if (!strcmp("BAD", arg))*/
831 fprintf(stderr, "IMAP command '%s' returned response (%s) - %s\n",
832 !starts_with(cmdp->cmd, "LOGIN") ?
833 cmdp->cmd : "LOGIN <user> <pass>",
834 arg, cmd ? cmd : "");
836 if ((resp2 = parse_response_code(ctx, &cmdp->cb, cmd)) > resp)
840 cmdp->cb.done(ctx, cmdp, resp);
844 if (!tcmd || tcmd == cmdp)
851 static void imap_close_server(struct imap_store *ictx)
853 struct imap *imap = ictx->imap;
855 if (imap->buf.sock.fd[0] != -1) {
856 imap_exec(ictx, NULL, "LOGOUT");
857 socket_shutdown(&imap->buf.sock);
862 static void imap_close_store(struct imap_store *ctx)
864 imap_close_server(ctx);
871 * hexchar() and cram() functions are based on the code from the isync
872 * project (http://isync.sf.net/).
874 static char hexchar(unsigned int b)
876 return b < 10 ? '0' + b : 'a' + (b - 10);
879 #define ENCODED_SIZE(n) (4*((n+2)/3))
880 static char *cram(const char *challenge_64, const char *user, const char *pass)
882 int i, resp_len, encoded_len, decoded_len;
884 unsigned char hash[16];
886 char *response, *response_64, *challenge;
889 * length of challenge_64 (i.e. base-64 encoded string) is a good
890 * enough upper bound for challenge (decoded result).
892 encoded_len = strlen(challenge_64);
893 challenge = xmalloc(encoded_len);
894 decoded_len = EVP_DecodeBlock((unsigned char *)challenge,
895 (unsigned char *)challenge_64, encoded_len);
897 die("invalid challenge %s", challenge_64);
898 HMAC_Init(&hmac, (unsigned char *)pass, strlen(pass), EVP_md5());
899 HMAC_Update(&hmac, (unsigned char *)challenge, decoded_len);
900 HMAC_Final(&hmac, hash, NULL);
901 HMAC_CTX_cleanup(&hmac);
904 for (i = 0; i < 16; i++) {
905 hex[2 * i] = hexchar((hash[i] >> 4) & 0xf);
906 hex[2 * i + 1] = hexchar(hash[i] & 0xf);
909 /* response: "<user> <digest in hex>" */
910 resp_len = strlen(user) + 1 + strlen(hex) + 1;
911 response = xmalloc(resp_len);
912 sprintf(response, "%s %s", user, hex);
914 response_64 = xmalloc(ENCODED_SIZE(resp_len) + 1);
915 encoded_len = EVP_EncodeBlock((unsigned char *)response_64,
916 (unsigned char *)response, resp_len);
918 die("EVP_EncodeBlock error");
919 response_64[encoded_len] = '\0';
920 return (char *)response_64;
925 static char *cram(const char *challenge_64, const char *user, const char *pass)
927 die("If you want to use CRAM-MD5 authenticate method, "
928 "you have to build git-imap-send with OpenSSL library.");
933 static int auth_cram_md5(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt)
938 response = cram(prompt, server.user, server.pass);
940 ret = socket_write(&ctx->imap->buf.sock, response, strlen(response));
941 if (ret != strlen(response))
942 return error("IMAP error: sending response failed");
949 static struct imap_store *imap_open_store(struct imap_server_conf *srvc)
951 struct credential cred = CREDENTIAL_INIT;
952 struct imap_store *ctx;
957 ctx = xcalloc(1, sizeof(*ctx));
959 ctx->imap = imap = xcalloc(sizeof(*imap), 1);
960 imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
961 imap->in_progress_append = &imap->in_progress;
963 /* open connection to IMAP server */
966 struct child_process tunnel = {NULL};
968 imap_info("Starting tunnel '%s'... ", srvc->tunnel);
970 argv_array_push(&tunnel.args, srvc->tunnel);
971 tunnel.use_shell = 1;
974 if (start_command(&tunnel))
975 die("cannot start proxy %s", srvc->tunnel);
977 imap->buf.sock.fd[0] = tunnel.out;
978 imap->buf.sock.fd[1] = tunnel.in;
983 struct addrinfo hints, *ai0, *ai;
987 snprintf(portstr, sizeof(portstr), "%d", srvc->port);
989 memset(&hints, 0, sizeof(hints));
990 hints.ai_socktype = SOCK_STREAM;
991 hints.ai_protocol = IPPROTO_TCP;
993 imap_info("Resolving %s... ", srvc->host);
994 gai = getaddrinfo(srvc->host, portstr, &hints, &ai);
996 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(gai));
1001 for (ai0 = ai; ai; ai = ai->ai_next) {
1002 char addr[NI_MAXHOST];
1004 s = socket(ai->ai_family, ai->ai_socktype,
1009 getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1010 sizeof(addr), NULL, 0, NI_NUMERICHOST);
1011 imap_info("Connecting to [%s]:%s... ", addr, portstr);
1013 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
1025 struct sockaddr_in addr;
1027 memset(&addr, 0, sizeof(addr));
1028 addr.sin_port = htons(srvc->port);
1029 addr.sin_family = AF_INET;
1031 imap_info("Resolving %s... ", srvc->host);
1032 he = gethostbyname(srvc->host);
1034 perror("gethostbyname");
1039 addr.sin_addr.s_addr = *((int *) he->h_addr_list[0]);
1041 s = socket(PF_INET, SOCK_STREAM, 0);
1043 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
1044 if (connect(s, (struct sockaddr *)&addr, sizeof(addr))) {
1051 fputs("Error: unable to connect to server.\n", stderr);
1055 imap->buf.sock.fd[0] = s;
1056 imap->buf.sock.fd[1] = dup(s);
1058 if (srvc->use_ssl &&
1059 ssl_socket_connect(&imap->buf.sock, 0, srvc->ssl_verify)) {
1066 /* read the greeting string */
1067 if (buffer_gets(&imap->buf, &rsp)) {
1068 fprintf(stderr, "IMAP error: no greeting response\n");
1071 arg = next_arg(&rsp);
1072 if (!arg || *arg != '*' || (arg = next_arg(&rsp)) == NULL) {
1073 fprintf(stderr, "IMAP error: invalid greeting response\n");
1077 if (!strcmp("PREAUTH", arg))
1079 else if (strcmp("OK", arg) != 0) {
1080 fprintf(stderr, "IMAP error: unknown greeting response\n");
1083 parse_response_code(ctx, NULL, rsp);
1084 if (!imap->caps && imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
1089 if (!srvc->use_ssl && CAP(STARTTLS)) {
1090 if (imap_exec(ctx, NULL, "STARTTLS") != RESP_OK)
1092 if (ssl_socket_connect(&imap->buf.sock, 1,
1095 /* capabilities may have changed, so get the new capabilities */
1096 if (imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
1100 imap_info("Logging in...\n");
1101 if (!srvc->user || !srvc->pass) {
1102 cred.protocol = xstrdup(srvc->use_ssl ? "imaps" : "imap");
1103 cred.host = xstrdup(srvc->host);
1106 cred.username = xstrdup(srvc->user);
1108 cred.password = xstrdup(srvc->pass);
1110 credential_fill(&cred);
1113 srvc->user = xstrdup(cred.username);
1115 srvc->pass = xstrdup(cred.password);
1119 fprintf(stderr, "Skipping account %s@%s, server forbids LOGIN\n", srvc->user, srvc->host);
1123 if (srvc->auth_method) {
1124 struct imap_cmd_cb cb;
1126 if (!strcmp(srvc->auth_method, "CRAM-MD5")) {
1127 if (!CAP(AUTH_CRAM_MD5)) {
1128 fprintf(stderr, "You specified"
1129 "CRAM-MD5 as authentication method, "
1130 "but %s doesn't support it.\n", srvc->host);
1135 memset(&cb, 0, sizeof(cb));
1136 cb.cont = auth_cram_md5;
1137 if (imap_exec(ctx, &cb, "AUTHENTICATE CRAM-MD5") != RESP_OK) {
1138 fprintf(stderr, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
1142 fprintf(stderr, "Unknown authentication method:%s\n", srvc->host);
1146 if (!imap->buf.sock.ssl)
1147 imap_warn("*** IMAP Warning *** Password is being "
1148 "sent in the clear\n");
1149 if (imap_exec(ctx, NULL, "LOGIN \"%s\" \"%s\"", srvc->user, srvc->pass) != RESP_OK) {
1150 fprintf(stderr, "IMAP error: LOGIN failed\n");
1157 credential_approve(&cred);
1158 credential_clear(&cred);
1165 credential_reject(&cred);
1166 credential_clear(&cred);
1168 imap_close_store(ctx);
1173 * Insert CR characters as necessary in *msg to ensure that every LF
1174 * character in *msg is preceded by a CR.
1176 static void lf_to_crlf(struct strbuf *msg)
1182 /* First pass: tally, in j, the size of the new string: */
1183 for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
1184 if (msg->buf[i] == '\n' && lastc != '\r')
1185 j++; /* a CR will need to be added here */
1186 lastc = msg->buf[i];
1190 new = xmalloc(j + 1);
1193 * Second pass: write the new string. Note that this loop is
1194 * otherwise identical to the first pass.
1196 for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
1197 if (msg->buf[i] == '\n' && lastc != '\r')
1199 lastc = new[j++] = msg->buf[i];
1201 strbuf_attach(msg, new, j, j + 1);
1205 * Store msg to IMAP. Also detach and free the data from msg->data,
1206 * leaving msg->data empty.
1208 static int imap_store_msg(struct imap_store *ctx, struct strbuf *msg)
1210 struct imap *imap = ctx->imap;
1211 struct imap_cmd_cb cb;
1212 const char *prefix, *box;
1216 memset(&cb, 0, sizeof(cb));
1219 cb.data = strbuf_detach(msg, NULL);
1222 prefix = !strcmp(box, "INBOX") ? "" : ctx->prefix;
1224 ret = imap_exec_m(ctx, &cb, "APPEND \"%s%s\" ", prefix, box);
1225 imap->caps = imap->rcaps;
1232 static void wrap_in_html(struct strbuf *msg)
1234 struct strbuf buf = STRBUF_INIT;
1235 static char *content_type = "Content-Type: text/html;\n";
1236 static char *pre_open = "<pre>\n";
1237 static char *pre_close = "</pre>\n";
1238 const char *body = strstr(msg->buf, "\n\n");
1241 return; /* Headers but no body; no wrapping needed */
1245 strbuf_add(&buf, msg->buf, body - msg->buf - 1);
1246 strbuf_addstr(&buf, content_type);
1247 strbuf_addch(&buf, '\n');
1248 strbuf_addstr(&buf, pre_open);
1249 strbuf_addstr_xml_quoted(&buf, body);
1250 strbuf_addstr(&buf, pre_close);
1252 strbuf_release(msg);
1256 #define CHUNKSIZE 0x1000
1258 static int read_message(FILE *f, struct strbuf *all_msgs)
1261 if (strbuf_fread(all_msgs, CHUNKSIZE, f) <= 0)
1265 return ferror(f) ? -1 : 0;
1268 static int count_messages(struct strbuf *all_msgs)
1271 char *p = all_msgs->buf;
1274 if (starts_with(p, "From ")) {
1275 p = strstr(p+5, "\nFrom: ");
1277 p = strstr(p+7, "\nDate: ");
1279 p = strstr(p+7, "\nSubject: ");
1284 p = strstr(p+5, "\nFrom ");
1293 * Copy the next message from all_msgs, starting at offset *ofs, to
1294 * msg. Update *ofs to the start of the following message. Return
1295 * true iff a message was successfully copied.
1297 static int split_msg(struct strbuf *all_msgs, struct strbuf *msg, int *ofs)
1302 if (*ofs >= all_msgs->len)
1305 data = &all_msgs->buf[*ofs];
1306 len = all_msgs->len - *ofs;
1308 if (len < 5 || !starts_with(data, "From "))
1311 p = strchr(data, '\n');
1319 p = strstr(data, "\nFrom ");
1323 strbuf_add(msg, data, len);
1328 static int git_imap_config(const char *key, const char *val, void *cb)
1330 if (!skip_prefix(key, "imap.", &key))
1333 /* check booleans first, and barf on others */
1334 if (!strcmp("sslverify", key))
1335 server.ssl_verify = git_config_bool(key, val);
1336 else if (!strcmp("preformattedhtml", key))
1337 server.use_html = git_config_bool(key, val);
1339 return config_error_nonbool(key);
1341 if (!strcmp("folder", key)) {
1342 server.folder = xstrdup(val);
1343 } else if (!strcmp("host", key)) {
1344 if (starts_with(val, "imap:"))
1346 else if (starts_with(val, "imaps:")) {
1350 if (starts_with(val, "//"))
1352 server.host = xstrdup(val);
1353 } else if (!strcmp("user", key))
1354 server.user = xstrdup(val);
1355 else if (!strcmp("pass", key))
1356 server.pass = xstrdup(val);
1357 else if (!strcmp("port", key))
1358 server.port = git_config_int(key, val);
1359 else if (!strcmp("tunnel", key))
1360 server.tunnel = xstrdup(val);
1361 else if (!strcmp("authmethod", key))
1362 server.auth_method = xstrdup(val);
1367 int main(int argc, char **argv)
1369 struct strbuf all_msgs = STRBUF_INIT;
1370 struct strbuf msg = STRBUF_INIT;
1371 struct imap_store *ctx = NULL;
1377 git_extract_argv0_path(argv[0]);
1379 git_setup_gettext();
1382 usage(imap_send_usage);
1384 setup_git_directory_gently(&nongit_ok);
1385 git_config(git_imap_config, NULL);
1388 server.port = server.use_ssl ? 993 : 143;
1390 if (!server.folder) {
1391 fprintf(stderr, "no imap store specified\n");
1395 if (!server.tunnel) {
1396 fprintf(stderr, "no imap host specified\n");
1399 server.host = "tunnel";
1402 /* read the messages */
1403 if (read_message(stdin, &all_msgs)) {
1404 fprintf(stderr, "error reading input\n");
1408 if (all_msgs.len == 0) {
1409 fprintf(stderr, "nothing to send\n");
1413 total = count_messages(&all_msgs);
1415 fprintf(stderr, "no messages to send\n");
1419 /* write it to the imap server */
1420 ctx = imap_open_store(&server);
1422 fprintf(stderr, "failed to open store\n");
1426 fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1427 ctx->name = server.folder;
1429 unsigned percent = n * 100 / total;
1431 fprintf(stderr, "%4u%% (%d/%d) done\r", percent, n, total);
1432 if (!split_msg(&all_msgs, &msg, &ofs))
1434 if (server.use_html)
1436 r = imap_store_msg(ctx, &msg);
1441 fprintf(stderr, "\n");
1443 imap_close_store(ctx);