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"
29 #include "parse-options.h"
36 static const char * const imap_send_usage
[] = { "git imap-send [-v] [-q] < <mbox>", NULL
};
38 static struct option imap_send_options
[] = {
39 OPT__VERBOSITY(&verbosity
),
45 #define DRV_MSG_BAD -1
46 #define DRV_BOX_BAD -2
47 #define DRV_STORE_BAD -3
49 __attribute__((format (printf
, 1, 2)))
50 static void imap_info(const char *, ...);
51 __attribute__((format (printf
, 1, 2)))
52 static void imap_warn(const char *, ...);
54 static char *next_arg(char **);
56 __attribute__((format (printf
, 3, 4)))
57 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...);
59 static int nfvasprintf(char **strp
, const char *fmt
, va_list ap
)
64 len
= vsnprintf(tmp
, sizeof(tmp
), fmt
, ap
);
66 die("Fatal: Out of memory");
67 if (len
>= sizeof(tmp
))
68 die("imap command overflow!");
69 *strp
= xmemdupz(tmp
, len
);
73 struct imap_server_conf
{
87 static struct imap_server_conf server
= {
98 NULL
, /* auth_method */
107 struct imap_socket sock
;
116 int uidnext
; /* from SELECT responses */
117 unsigned caps
, rcaps
; /* CAPABILITY results */
119 int nexttag
, num_in_progress
, literal_pending
;
120 struct imap_cmd
*in_progress
, **in_progress_append
;
121 struct imap_buffer buf
; /* this is BIG, so put it last */
125 /* currently open mailbox */
126 const char *name
; /* foreign! maybe preset? */
133 int (*cont
)(struct imap_store
*ctx
, struct imap_cmd
*cmd
, const char *prompt
);
134 void (*done
)(struct imap_store
*ctx
, struct imap_cmd
*cmd
, int response
);
142 struct imap_cmd
*next
;
143 struct imap_cmd_cb cb
;
148 #define CAP(cap) (imap->caps & (1 << (cap)))
159 static const char *cap_list
[] = {
172 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
);
176 static void ssl_socket_perror(const char *func
)
178 fprintf(stderr
, "%s: %s\n", func
, ERR_error_string(ERR_get_error(), NULL
));
182 static void socket_perror(const char *func
, struct imap_socket
*sock
, int ret
)
186 int sslerr
= SSL_get_error(sock
->ssl
, ret
);
190 case SSL_ERROR_SYSCALL
:
191 perror("SSL_connect");
194 ssl_socket_perror("SSL_connect");
203 fprintf(stderr
, "%s: unexpected EOF\n", func
);
208 static int ssl_socket_connect(struct imap_socket
*sock
, int use_tls_only
, int verify
)
210 fprintf(stderr
, "SSL requested but SSL support not compiled in\n");
216 static int host_matches(const char *host
, const char *pattern
)
218 if (pattern
[0] == '*' && pattern
[1] == '.') {
220 if (!(host
= strchr(host
, '.')))
225 return *host
&& *pattern
&& !strcasecmp(host
, pattern
);
228 static int verify_hostname(X509
*cert
, const char *hostname
)
234 STACK_OF(GENERAL_NAME
) *subj_alt_names
;
236 /* try the DNS subjectAltNames */
238 if ((subj_alt_names
= X509_get_ext_d2i(cert
, NID_subject_alt_name
, NULL
, NULL
))) {
239 int num_subj_alt_names
= sk_GENERAL_NAME_num(subj_alt_names
);
240 for (i
= 0; !found
&& i
< num_subj_alt_names
; i
++) {
241 GENERAL_NAME
*subj_alt_name
= sk_GENERAL_NAME_value(subj_alt_names
, i
);
242 if (subj_alt_name
->type
== GEN_DNS
&&
243 strlen((const char *)subj_alt_name
->d
.ia5
->data
) == (size_t)subj_alt_name
->d
.ia5
->length
&&
244 host_matches(hostname
, (const char *)(subj_alt_name
->d
.ia5
->data
)))
247 sk_GENERAL_NAME_pop_free(subj_alt_names
, GENERAL_NAME_free
);
252 /* try the common name */
253 if (!(subj
= X509_get_subject_name(cert
)))
254 return error("cannot get certificate subject");
255 if ((len
= X509_NAME_get_text_by_NID(subj
, NID_commonName
, cname
, sizeof(cname
))) < 0)
256 return error("cannot get certificate common name");
257 if (strlen(cname
) == (size_t)len
&& host_matches(hostname
, cname
))
259 return error("certificate owner '%s' does not match hostname '%s'",
263 static int ssl_socket_connect(struct imap_socket
*sock
, int use_tls_only
, int verify
)
265 #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
266 const SSL_METHOD
*meth
;
275 SSL_load_error_strings();
278 meth
= TLSv1_method();
280 meth
= SSLv23_method();
283 ssl_socket_perror("SSLv23_method");
287 ctx
= SSL_CTX_new(meth
);
290 SSL_CTX_set_verify(ctx
, SSL_VERIFY_PEER
, NULL
);
292 if (!SSL_CTX_set_default_verify_paths(ctx
)) {
293 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
296 sock
->ssl
= SSL_new(ctx
);
298 ssl_socket_perror("SSL_new");
301 if (!SSL_set_rfd(sock
->ssl
, sock
->fd
[0])) {
302 ssl_socket_perror("SSL_set_rfd");
305 if (!SSL_set_wfd(sock
->ssl
, sock
->fd
[1])) {
306 ssl_socket_perror("SSL_set_wfd");
310 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
313 * OpenSSL does not document this function, but the implementation
314 * returns 1 on success, 0 on failure after calling SSLerr().
316 ret
= SSL_set_tlsext_host_name(sock
->ssl
, server
.host
);
318 warning("SSL_set_tlsext_host_name(%s) failed.", server
.host
);
321 ret
= SSL_connect(sock
->ssl
);
323 socket_perror("SSL_connect", sock
, ret
);
328 /* make sure the hostname matches that of the certificate */
329 cert
= SSL_get_peer_certificate(sock
->ssl
);
331 return error("unable to get peer certificate.");
332 if (verify_hostname(cert
, server
.host
) < 0)
340 static int socket_read(struct imap_socket
*sock
, char *buf
, int len
)
345 n
= SSL_read(sock
->ssl
, buf
, len
);
348 n
= xread(sock
->fd
[0], buf
, len
);
350 socket_perror("read", sock
, n
);
353 sock
->fd
[0] = sock
->fd
[1] = -1;
358 static int socket_write(struct imap_socket
*sock
, const char *buf
, int len
)
363 n
= SSL_write(sock
->ssl
, buf
, len
);
366 n
= write_in_full(sock
->fd
[1], buf
, len
);
368 socket_perror("write", sock
, n
);
371 sock
->fd
[0] = sock
->fd
[1] = -1;
376 static void socket_shutdown(struct imap_socket
*sock
)
380 SSL_shutdown(sock
->ssl
);
388 /* simple line buffering */
389 static int buffer_gets(struct imap_buffer
*b
, char **s
)
392 int start
= b
->offset
;
397 /* make sure we have enough data to read the \r\n sequence */
398 if (b
->offset
+ 1 >= b
->bytes
) {
400 /* shift down used bytes */
403 assert(start
<= b
->bytes
);
404 n
= b
->bytes
- start
;
407 memmove(b
->buf
, b
->buf
+ start
, n
);
413 n
= socket_read(&b
->sock
, b
->buf
+ b
->bytes
,
414 sizeof(b
->buf
) - b
->bytes
);
422 if (b
->buf
[b
->offset
] == '\r') {
423 assert(b
->offset
+ 1 < b
->bytes
);
424 if (b
->buf
[b
->offset
+ 1] == '\n') {
425 b
->buf
[b
->offset
] = 0; /* terminate the string */
426 b
->offset
+= 2; /* next line */
438 static void imap_info(const char *msg
, ...)
442 if (0 <= verbosity
) {
450 static void imap_warn(const char *msg
, ...)
454 if (-2 < verbosity
) {
456 vfprintf(stderr
, msg
, va
);
461 static char *next_arg(char **s
)
467 while (isspace((unsigned char) **s
))
476 *s
= strchr(*s
, '"');
479 while (**s
&& !isspace((unsigned char) **s
))
491 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...)
497 if (blen
<= 0 || (unsigned)(ret
= vsnprintf(buf
, blen
, fmt
, va
)) >= (unsigned)blen
)
498 die("Fatal: buffer too small. Please report a bug.");
503 static struct imap_cmd
*issue_imap_cmd(struct imap_store
*ctx
,
504 struct imap_cmd_cb
*cb
,
505 const char *fmt
, va_list ap
)
507 struct imap
*imap
= ctx
->imap
;
508 struct imap_cmd
*cmd
;
512 cmd
= xmalloc(sizeof(struct imap_cmd
));
513 nfvasprintf(&cmd
->cmd
, fmt
, ap
);
514 cmd
->tag
= ++imap
->nexttag
;
519 memset(&cmd
->cb
, 0, sizeof(cmd
->cb
));
521 while (imap
->literal_pending
)
522 get_cmd_result(ctx
, NULL
);
525 bufl
= nfsnprintf(buf
, sizeof(buf
), "%d %s\r\n", cmd
->tag
, cmd
->cmd
);
527 bufl
= nfsnprintf(buf
, sizeof(buf
), "%d %s{%d%s}\r\n",
528 cmd
->tag
, cmd
->cmd
, cmd
->cb
.dlen
,
529 CAP(LITERALPLUS
) ? "+" : "");
532 if (imap
->num_in_progress
)
533 printf("(%d in progress) ", imap
->num_in_progress
);
534 if (!starts_with(cmd
->cmd
, "LOGIN"))
535 printf(">>> %s", buf
);
537 printf(">>> %d LOGIN <user> <pass>\n", cmd
->tag
);
539 if (socket_write(&imap
->buf
.sock
, buf
, bufl
) != bufl
) {
547 if (CAP(LITERALPLUS
)) {
548 n
= socket_write(&imap
->buf
.sock
, cmd
->cb
.data
, cmd
->cb
.dlen
);
550 if (n
!= cmd
->cb
.dlen
||
551 socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2) {
558 imap
->literal_pending
= 1;
559 } else if (cmd
->cb
.cont
)
560 imap
->literal_pending
= 1;
562 *imap
->in_progress_append
= cmd
;
563 imap
->in_progress_append
= &cmd
->next
;
564 imap
->num_in_progress
++;
568 __attribute__((format (printf
, 3, 4)))
569 static int imap_exec(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
570 const char *fmt
, ...)
573 struct imap_cmd
*cmdp
;
576 cmdp
= issue_imap_cmd(ctx
, cb
, fmt
, ap
);
581 return get_cmd_result(ctx
, cmdp
);
584 __attribute__((format (printf
, 3, 4)))
585 static int imap_exec_m(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
586 const char *fmt
, ...)
589 struct imap_cmd
*cmdp
;
592 cmdp
= issue_imap_cmd(ctx
, cb
, fmt
, ap
);
595 return DRV_STORE_BAD
;
597 switch (get_cmd_result(ctx
, cmdp
)) {
598 case RESP_BAD
: return DRV_STORE_BAD
;
599 case RESP_NO
: return DRV_MSG_BAD
;
600 default: return DRV_OK
;
604 static int skip_imap_list_l(char **sp
, int level
)
609 while (isspace((unsigned char)*s
))
611 if (level
&& *s
== ')') {
618 if (skip_imap_list_l(&s
, level
+ 1))
620 } else if (*s
== '"') {
623 for (; *s
!= '"'; s
++)
629 for (; *s
&& !isspace((unsigned char)*s
); s
++)
630 if (level
&& *s
== ')')
646 static void skip_list(char **sp
)
648 skip_imap_list_l(sp
, 0);
651 static void parse_capability(struct imap
*imap
, char *cmd
)
656 imap
->caps
= 0x80000000;
657 while ((arg
= next_arg(&cmd
)))
658 for (i
= 0; i
< ARRAY_SIZE(cap_list
); i
++)
659 if (!strcmp(cap_list
[i
], arg
))
660 imap
->caps
|= 1 << i
;
661 imap
->rcaps
= imap
->caps
;
664 static int parse_response_code(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
667 struct imap
*imap
= ctx
->imap
;
671 return RESP_OK
; /* no response code */
673 if (!(p
= strchr(s
, ']'))) {
674 fprintf(stderr
, "IMAP error: malformed response code\n");
679 if (!strcmp("UIDVALIDITY", arg
)) {
680 if (!(arg
= next_arg(&s
)) || !(ctx
->uidvalidity
= atoi(arg
))) {
681 fprintf(stderr
, "IMAP error: malformed UIDVALIDITY status\n");
684 } else if (!strcmp("UIDNEXT", arg
)) {
685 if (!(arg
= next_arg(&s
)) || !(imap
->uidnext
= atoi(arg
))) {
686 fprintf(stderr
, "IMAP error: malformed NEXTUID status\n");
689 } else if (!strcmp("CAPABILITY", arg
)) {
690 parse_capability(imap
, s
);
691 } else if (!strcmp("ALERT", arg
)) {
692 /* RFC2060 says that these messages MUST be displayed
695 for (; isspace((unsigned char)*p
); p
++);
696 fprintf(stderr
, "*** IMAP ALERT *** %s\n", p
);
697 } else if (cb
&& cb
->ctx
&& !strcmp("APPENDUID", arg
)) {
698 if (!(arg
= next_arg(&s
)) || !(ctx
->uidvalidity
= atoi(arg
)) ||
699 !(arg
= next_arg(&s
)) || !(*(int *)cb
->ctx
= atoi(arg
))) {
700 fprintf(stderr
, "IMAP error: malformed APPENDUID status\n");
707 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
)
709 struct imap
*imap
= ctx
->imap
;
710 struct imap_cmd
*cmdp
, **pcmdp
;
711 char *cmd
, *arg
, *arg1
;
712 int n
, resp
, resp2
, tag
;
715 if (buffer_gets(&imap
->buf
, &cmd
))
718 arg
= next_arg(&cmd
);
720 arg
= next_arg(&cmd
);
722 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
726 if (!strcmp("NAMESPACE", arg
)) {
727 /* rfc2342 NAMESPACE response. */
728 skip_list(&cmd
); /* Personal mailboxes */
729 skip_list(&cmd
); /* Others' mailboxes */
730 skip_list(&cmd
); /* Shared mailboxes */
731 } else if (!strcmp("OK", arg
) || !strcmp("BAD", arg
) ||
732 !strcmp("NO", arg
) || !strcmp("BYE", arg
)) {
733 if ((resp
= parse_response_code(ctx
, NULL
, cmd
)) != RESP_OK
)
735 } else if (!strcmp("CAPABILITY", arg
)) {
736 parse_capability(imap
, cmd
);
737 } else if ((arg1
= next_arg(&cmd
))) {
739 * Unhandled response-data with at least two words.
742 * NEEDSWORK: Previously this case handled '<num> EXISTS'
743 * and '<num> RECENT' but as a probably-unintended side
744 * effect it ignores other unrecognized two-word
745 * responses. imap-send doesn't ever try to read
746 * messages or mailboxes these days, so consider
747 * eliminating this case.
750 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
753 } else if (!imap
->in_progress
) {
754 fprintf(stderr
, "IMAP error: unexpected reply: %s %s\n", arg
, cmd
? cmd
: "");
756 } else if (*arg
== '+') {
757 /* This can happen only with the last command underway, as
758 it enforces a round-trip. */
759 cmdp
= (struct imap_cmd
*)((char *)imap
->in_progress_append
-
760 offsetof(struct imap_cmd
, next
));
762 n
= socket_write(&imap
->buf
.sock
, cmdp
->cb
.data
, cmdp
->cb
.dlen
);
764 cmdp
->cb
.data
= NULL
;
765 if (n
!= (int)cmdp
->cb
.dlen
)
767 } else if (cmdp
->cb
.cont
) {
768 if (cmdp
->cb
.cont(ctx
, cmdp
, cmd
))
771 fprintf(stderr
, "IMAP error: unexpected command continuation request\n");
774 if (socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2)
777 imap
->literal_pending
= 0;
782 for (pcmdp
= &imap
->in_progress
; (cmdp
= *pcmdp
); pcmdp
= &cmdp
->next
)
783 if (cmdp
->tag
== tag
)
785 fprintf(stderr
, "IMAP error: unexpected tag %s\n", arg
);
788 if (!(*pcmdp
= cmdp
->next
))
789 imap
->in_progress_append
= pcmdp
;
790 imap
->num_in_progress
--;
791 if (cmdp
->cb
.cont
|| cmdp
->cb
.data
)
792 imap
->literal_pending
= 0;
793 arg
= next_arg(&cmd
);
794 if (!strcmp("OK", arg
))
797 if (!strcmp("NO", arg
))
799 else /*if (!strcmp("BAD", arg))*/
801 fprintf(stderr
, "IMAP command '%s' returned response (%s) - %s\n",
802 !starts_with(cmdp
->cmd
, "LOGIN") ?
803 cmdp
->cmd
: "LOGIN <user> <pass>",
804 arg
, cmd
? cmd
: "");
806 if ((resp2
= parse_response_code(ctx
, &cmdp
->cb
, cmd
)) > resp
)
809 cmdp
->cb
.done(ctx
, cmdp
, resp
);
813 if (!tcmd
|| tcmd
== cmdp
)
820 static void imap_close_server(struct imap_store
*ictx
)
822 struct imap
*imap
= ictx
->imap
;
824 if (imap
->buf
.sock
.fd
[0] != -1) {
825 imap_exec(ictx
, NULL
, "LOGOUT");
826 socket_shutdown(&imap
->buf
.sock
);
831 static void imap_close_store(struct imap_store
*ctx
)
833 imap_close_server(ctx
);
840 * hexchar() and cram() functions are based on the code from the isync
841 * project (http://isync.sf.net/).
843 static char hexchar(unsigned int b
)
845 return b
< 10 ? '0' + b
: 'a' + (b
- 10);
848 #define ENCODED_SIZE(n) (4*((n+2)/3))
849 static char *cram(const char *challenge_64
, const char *user
, const char *pass
)
851 int i
, resp_len
, encoded_len
, decoded_len
;
853 unsigned char hash
[16];
855 char *response
, *response_64
, *challenge
;
858 * length of challenge_64 (i.e. base-64 encoded string) is a good
859 * enough upper bound for challenge (decoded result).
861 encoded_len
= strlen(challenge_64
);
862 challenge
= xmalloc(encoded_len
);
863 decoded_len
= EVP_DecodeBlock((unsigned char *)challenge
,
864 (unsigned char *)challenge_64
, encoded_len
);
866 die("invalid challenge %s", challenge_64
);
867 HMAC_Init(&hmac
, (unsigned char *)pass
, strlen(pass
), EVP_md5());
868 HMAC_Update(&hmac
, (unsigned char *)challenge
, decoded_len
);
869 HMAC_Final(&hmac
, hash
, NULL
);
870 HMAC_CTX_cleanup(&hmac
);
873 for (i
= 0; i
< 16; i
++) {
874 hex
[2 * i
] = hexchar((hash
[i
] >> 4) & 0xf);
875 hex
[2 * i
+ 1] = hexchar(hash
[i
] & 0xf);
878 /* response: "<user> <digest in hex>" */
879 resp_len
= strlen(user
) + 1 + strlen(hex
) + 1;
880 response
= xmalloc(resp_len
);
881 sprintf(response
, "%s %s", user
, hex
);
883 response_64
= xmalloc(ENCODED_SIZE(resp_len
) + 1);
884 encoded_len
= EVP_EncodeBlock((unsigned char *)response_64
,
885 (unsigned char *)response
, resp_len
);
887 die("EVP_EncodeBlock error");
888 response_64
[encoded_len
] = '\0';
889 return (char *)response_64
;
894 static char *cram(const char *challenge_64
, const char *user
, const char *pass
)
896 die("If you want to use CRAM-MD5 authenticate method, "
897 "you have to build git-imap-send with OpenSSL library.");
902 static int auth_cram_md5(struct imap_store
*ctx
, struct imap_cmd
*cmd
, const char *prompt
)
907 response
= cram(prompt
, server
.user
, server
.pass
);
909 ret
= socket_write(&ctx
->imap
->buf
.sock
, response
, strlen(response
));
910 if (ret
!= strlen(response
))
911 return error("IMAP error: sending response failed");
918 static struct imap_store
*imap_open_store(struct imap_server_conf
*srvc
, char *folder
)
920 struct credential cred
= CREDENTIAL_INIT
;
921 struct imap_store
*ctx
;
926 ctx
= xcalloc(1, sizeof(*ctx
));
928 ctx
->imap
= imap
= xcalloc(1, sizeof(*imap
));
929 imap
->buf
.sock
.fd
[0] = imap
->buf
.sock
.fd
[1] = -1;
930 imap
->in_progress_append
= &imap
->in_progress
;
932 /* open connection to IMAP server */
935 struct child_process tunnel
= CHILD_PROCESS_INIT
;
937 imap_info("Starting tunnel '%s'... ", srvc
->tunnel
);
939 argv_array_push(&tunnel
.args
, srvc
->tunnel
);
940 tunnel
.use_shell
= 1;
943 if (start_command(&tunnel
))
944 die("cannot start proxy %s", srvc
->tunnel
);
946 imap
->buf
.sock
.fd
[0] = tunnel
.out
;
947 imap
->buf
.sock
.fd
[1] = tunnel
.in
;
952 struct addrinfo hints
, *ai0
, *ai
;
956 snprintf(portstr
, sizeof(portstr
), "%d", srvc
->port
);
958 memset(&hints
, 0, sizeof(hints
));
959 hints
.ai_socktype
= SOCK_STREAM
;
960 hints
.ai_protocol
= IPPROTO_TCP
;
962 imap_info("Resolving %s... ", srvc
->host
);
963 gai
= getaddrinfo(srvc
->host
, portstr
, &hints
, &ai
);
965 fprintf(stderr
, "getaddrinfo: %s\n", gai_strerror(gai
));
970 for (ai0
= ai
; ai
; ai
= ai
->ai_next
) {
971 char addr
[NI_MAXHOST
];
973 s
= socket(ai
->ai_family
, ai
->ai_socktype
,
978 getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
,
979 sizeof(addr
), NULL
, 0, NI_NUMERICHOST
);
980 imap_info("Connecting to [%s]:%s... ", addr
, portstr
);
982 if (connect(s
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
994 struct sockaddr_in addr
;
996 memset(&addr
, 0, sizeof(addr
));
997 addr
.sin_port
= htons(srvc
->port
);
998 addr
.sin_family
= AF_INET
;
1000 imap_info("Resolving %s... ", srvc
->host
);
1001 he
= gethostbyname(srvc
->host
);
1003 perror("gethostbyname");
1008 addr
.sin_addr
.s_addr
= *((int *) he
->h_addr_list
[0]);
1010 s
= socket(PF_INET
, SOCK_STREAM
, 0);
1012 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr
.sin_addr
), ntohs(addr
.sin_port
));
1013 if (connect(s
, (struct sockaddr
*)&addr
, sizeof(addr
))) {
1020 fputs("Error: unable to connect to server.\n", stderr
);
1024 imap
->buf
.sock
.fd
[0] = s
;
1025 imap
->buf
.sock
.fd
[1] = dup(s
);
1027 if (srvc
->use_ssl
&&
1028 ssl_socket_connect(&imap
->buf
.sock
, 0, srvc
->ssl_verify
)) {
1035 /* read the greeting string */
1036 if (buffer_gets(&imap
->buf
, &rsp
)) {
1037 fprintf(stderr
, "IMAP error: no greeting response\n");
1040 arg
= next_arg(&rsp
);
1041 if (!arg
|| *arg
!= '*' || (arg
= next_arg(&rsp
)) == NULL
) {
1042 fprintf(stderr
, "IMAP error: invalid greeting response\n");
1046 if (!strcmp("PREAUTH", arg
))
1048 else if (strcmp("OK", arg
) != 0) {
1049 fprintf(stderr
, "IMAP error: unknown greeting response\n");
1052 parse_response_code(ctx
, NULL
, rsp
);
1053 if (!imap
->caps
&& imap_exec(ctx
, NULL
, "CAPABILITY") != RESP_OK
)
1058 if (!srvc
->use_ssl
&& CAP(STARTTLS
)) {
1059 if (imap_exec(ctx
, NULL
, "STARTTLS") != RESP_OK
)
1061 if (ssl_socket_connect(&imap
->buf
.sock
, 1,
1064 /* capabilities may have changed, so get the new capabilities */
1065 if (imap_exec(ctx
, NULL
, "CAPABILITY") != RESP_OK
)
1069 imap_info("Logging in...\n");
1070 if (!srvc
->user
|| !srvc
->pass
) {
1071 cred
.protocol
= xstrdup(srvc
->use_ssl
? "imaps" : "imap");
1072 cred
.host
= xstrdup(srvc
->host
);
1075 cred
.username
= xstrdup(srvc
->user
);
1077 cred
.password
= xstrdup(srvc
->pass
);
1079 credential_fill(&cred
);
1082 srvc
->user
= xstrdup(cred
.username
);
1084 srvc
->pass
= xstrdup(cred
.password
);
1088 fprintf(stderr
, "Skipping account %s@%s, server forbids LOGIN\n", srvc
->user
, srvc
->host
);
1092 if (srvc
->auth_method
) {
1093 struct imap_cmd_cb cb
;
1095 if (!strcmp(srvc
->auth_method
, "CRAM-MD5")) {
1096 if (!CAP(AUTH_CRAM_MD5
)) {
1097 fprintf(stderr
, "You specified"
1098 "CRAM-MD5 as authentication method, "
1099 "but %s doesn't support it.\n", srvc
->host
);
1104 memset(&cb
, 0, sizeof(cb
));
1105 cb
.cont
= auth_cram_md5
;
1106 if (imap_exec(ctx
, &cb
, "AUTHENTICATE CRAM-MD5") != RESP_OK
) {
1107 fprintf(stderr
, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
1111 fprintf(stderr
, "Unknown authentication method:%s\n", srvc
->host
);
1115 if (!imap
->buf
.sock
.ssl
)
1116 imap_warn("*** IMAP Warning *** Password is being "
1117 "sent in the clear\n");
1118 if (imap_exec(ctx
, NULL
, "LOGIN \"%s\" \"%s\"", srvc
->user
, srvc
->pass
) != RESP_OK
) {
1119 fprintf(stderr
, "IMAP error: LOGIN failed\n");
1126 credential_approve(&cred
);
1127 credential_clear(&cred
);
1129 /* check the target mailbox exists */
1131 switch (imap_exec(ctx
, NULL
, "EXAMINE \"%s\"", ctx
->name
)) {
1136 fprintf(stderr
, "IMAP error: could not check mailbox\n");
1139 if (imap_exec(ctx
, NULL
, "CREATE \"%s\"", ctx
->name
) == RESP_OK
) {
1140 imap_info("Created missing mailbox\n");
1142 fprintf(stderr
, "IMAP error: could not create missing mailbox\n");
1153 credential_reject(&cred
);
1154 credential_clear(&cred
);
1157 imap_close_store(ctx
);
1162 * Insert CR characters as necessary in *msg to ensure that every LF
1163 * character in *msg is preceded by a CR.
1165 static void lf_to_crlf(struct strbuf
*msg
)
1171 /* First pass: tally, in j, the size of the new string: */
1172 for (i
= j
= 0, lastc
= '\0'; i
< msg
->len
; i
++) {
1173 if (msg
->buf
[i
] == '\n' && lastc
!= '\r')
1174 j
++; /* a CR will need to be added here */
1175 lastc
= msg
->buf
[i
];
1179 new = xmalloc(j
+ 1);
1182 * Second pass: write the new string. Note that this loop is
1183 * otherwise identical to the first pass.
1185 for (i
= j
= 0, lastc
= '\0'; i
< msg
->len
; i
++) {
1186 if (msg
->buf
[i
] == '\n' && lastc
!= '\r')
1188 lastc
= new[j
++] = msg
->buf
[i
];
1190 strbuf_attach(msg
, new, j
, j
+ 1);
1194 * Store msg to IMAP. Also detach and free the data from msg->data,
1195 * leaving msg->data empty.
1197 static int imap_store_msg(struct imap_store
*ctx
, struct strbuf
*msg
)
1199 struct imap
*imap
= ctx
->imap
;
1200 struct imap_cmd_cb cb
;
1201 const char *prefix
, *box
;
1205 memset(&cb
, 0, sizeof(cb
));
1208 cb
.data
= strbuf_detach(msg
, NULL
);
1211 prefix
= !strcmp(box
, "INBOX") ? "" : ctx
->prefix
;
1212 ret
= imap_exec_m(ctx
, &cb
, "APPEND \"%s%s\" ", prefix
, box
);
1213 imap
->caps
= imap
->rcaps
;
1220 static void wrap_in_html(struct strbuf
*msg
)
1222 struct strbuf buf
= STRBUF_INIT
;
1223 static char *content_type
= "Content-Type: text/html;\n";
1224 static char *pre_open
= "<pre>\n";
1225 static char *pre_close
= "</pre>\n";
1226 const char *body
= strstr(msg
->buf
, "\n\n");
1229 return; /* Headers but no body; no wrapping needed */
1233 strbuf_add(&buf
, msg
->buf
, body
- msg
->buf
- 1);
1234 strbuf_addstr(&buf
, content_type
);
1235 strbuf_addch(&buf
, '\n');
1236 strbuf_addstr(&buf
, pre_open
);
1237 strbuf_addstr_xml_quoted(&buf
, body
);
1238 strbuf_addstr(&buf
, pre_close
);
1240 strbuf_release(msg
);
1244 #define CHUNKSIZE 0x1000
1246 static int read_message(FILE *f
, struct strbuf
*all_msgs
)
1249 if (strbuf_fread(all_msgs
, CHUNKSIZE
, f
) <= 0)
1253 return ferror(f
) ? -1 : 0;
1256 static int count_messages(struct strbuf
*all_msgs
)
1259 char *p
= all_msgs
->buf
;
1262 if (starts_with(p
, "From ")) {
1263 p
= strstr(p
+5, "\nFrom: ");
1265 p
= strstr(p
+7, "\nDate: ");
1267 p
= strstr(p
+7, "\nSubject: ");
1272 p
= strstr(p
+5, "\nFrom ");
1281 * Copy the next message from all_msgs, starting at offset *ofs, to
1282 * msg. Update *ofs to the start of the following message. Return
1283 * true iff a message was successfully copied.
1285 static int split_msg(struct strbuf
*all_msgs
, struct strbuf
*msg
, int *ofs
)
1290 if (*ofs
>= all_msgs
->len
)
1293 data
= &all_msgs
->buf
[*ofs
];
1294 len
= all_msgs
->len
- *ofs
;
1296 if (len
< 5 || !starts_with(data
, "From "))
1299 p
= strchr(data
, '\n');
1307 p
= strstr(data
, "\nFrom ");
1311 strbuf_add(msg
, data
, len
);
1316 static void git_imap_config(void)
1318 const char *val
= NULL
;
1320 git_config_get_bool("imap.sslverify", &server
.ssl_verify
);
1321 git_config_get_bool("imap.preformattedhtml", &server
.use_html
);
1322 git_config_get_string("imap.folder", &server
.folder
);
1324 if (!git_config_get_value("imap.host", &val
)) {
1326 git_die_config("imap.host", "Missing value for 'imap.host'");
1328 if (starts_with(val
, "imap:"))
1330 else if (starts_with(val
, "imaps:")) {
1334 if (starts_with(val
, "//"))
1336 server
.host
= xstrdup(val
);
1340 git_config_get_string("imap.user", &server
.user
);
1341 git_config_get_string("imap.pass", &server
.pass
);
1342 git_config_get_int("imap.port", &server
.port
);
1343 git_config_get_string("imap.tunnel", &server
.tunnel
);
1344 git_config_get_string("imap.authmethod", &server
.auth_method
);
1347 int main(int argc
, char **argv
)
1349 struct strbuf all_msgs
= STRBUF_INIT
;
1350 struct strbuf msg
= STRBUF_INIT
;
1351 struct imap_store
*ctx
= NULL
;
1357 git_extract_argv0_path(argv
[0]);
1359 git_setup_gettext();
1361 setup_git_directory_gently(&nongit_ok
);
1364 argc
= parse_options(argc
, (const char **)argv
, "", imap_send_options
, imap_send_usage
, 0);
1367 usage_with_options(imap_send_usage
, imap_send_options
);
1370 server
.port
= server
.use_ssl
? 993 : 143;
1372 if (!server
.folder
) {
1373 fprintf(stderr
, "no imap store specified\n");
1377 if (!server
.tunnel
) {
1378 fprintf(stderr
, "no imap host specified\n");
1381 server
.host
= "tunnel";
1384 /* read the messages */
1385 if (read_message(stdin
, &all_msgs
)) {
1386 fprintf(stderr
, "error reading input\n");
1390 if (all_msgs
.len
== 0) {
1391 fprintf(stderr
, "nothing to send\n");
1395 total
= count_messages(&all_msgs
);
1397 fprintf(stderr
, "no messages to send\n");
1401 /* write it to the imap server */
1402 ctx
= imap_open_store(&server
, server
.folder
);
1404 fprintf(stderr
, "failed to open store\n");
1408 fprintf(stderr
, "sending %d message%s\n", total
, (total
!= 1) ? "s" : "");
1410 unsigned percent
= n
* 100 / total
;
1412 fprintf(stderr
, "%4u%% (%d/%d) done\r", percent
, n
, total
);
1413 if (!split_msg(&all_msgs
, &msg
, &ofs
))
1415 if (server
.use_html
)
1417 r
= imap_store_msg(ctx
, &msg
);
1422 fprintf(stderr
, "\n");
1424 imap_close_store(ctx
);