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
33 const char *path
; /* should this be here? its interpretation is driver-specific */
36 unsigned max_size
; /* off_t is overkill */
37 unsigned trash_remote_new
:1, trash_only_new
:1;
41 struct string_list
*next
;
46 struct channel_conf
*next
;
48 struct store_conf
*master
, *slave
;
49 char *master_name
, *slave_name
;
51 struct string_list
*patterns
;
53 unsigned max_messages
; /* for slave only */
57 struct group_conf
*next
;
59 struct string_list
*channels
;
62 /* For message->status */
63 #define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
64 #define M_DEAD (1<<1) /* expunged */
65 #define M_FLAGS (1<<2) /* flags fetched */
69 /* struct string_list *keywords; */
70 size_t size
; /* zero implies "not fetched" */
72 unsigned char flags
, status
;
76 struct store_conf
*conf
; /* foreign */
78 /* currently open mailbox */
79 const char *name
; /* foreign! maybe preset? */
81 struct message
*msgs
; /* own */
83 unsigned char opts
; /* maybe preset? */
84 /* note that the following do _not_ reflect stats from msgs, but mailbox totals */
85 int count
; /* # of messages */
86 int recent
; /* # of recent messages - don't trust this beyond the initial read */
97 #define DRV_MSG_BAD -1
98 #define DRV_BOX_BAD -2
99 #define DRV_STORE_BAD -3
101 static int Verbose
, Quiet
;
103 static void imap_info(const char *, ...);
104 static void imap_warn(const char *, ...);
106 static char *next_arg(char **);
108 static void free_generic_messages(struct message
*);
110 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...);
112 static int nfvasprintf(char **strp
, const char *fmt
, va_list ap
)
117 len
= vsnprintf(tmp
, sizeof(tmp
), fmt
, ap
);
119 die("Fatal: Out of memory");
120 if (len
>= sizeof(tmp
))
121 die("imap command overflow!");
122 *strp
= xmemdupz(tmp
, len
);
126 struct imap_server_conf
{
138 struct imap_store_conf
{
139 struct store_conf gen
;
140 struct imap_server_conf
*server
;
141 unsigned use_namespace
:1;
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)))
212 static const char *cap_list
[] = {
224 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
);
227 static const char *Flags
[] = {
236 static void ssl_socket_perror(const char *func
)
238 fprintf(stderr
, "%s: %s\n", func
, ERR_error_string(ERR_get_error(), NULL
));
242 static void socket_perror(const char *func
, struct imap_socket
*sock
, int ret
)
246 int sslerr
= SSL_get_error(sock
->ssl
, ret
);
250 case SSL_ERROR_SYSCALL
:
251 perror("SSL_connect");
254 ssl_socket_perror("SSL_connect");
263 fprintf(stderr
, "%s: unexpected EOF\n", func
);
267 static int ssl_socket_connect(struct imap_socket
*sock
, int use_tls_only
, int verify
)
270 fprintf(stderr
, "SSL requested but SSL support not compiled in\n");
278 SSL_load_error_strings();
281 meth
= TLSv1_method();
283 meth
= SSLv23_method();
286 ssl_socket_perror("SSLv23_method");
290 ctx
= SSL_CTX_new(meth
);
293 SSL_CTX_set_verify(ctx
, SSL_VERIFY_PEER
, NULL
);
295 if (!SSL_CTX_set_default_verify_paths(ctx
)) {
296 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
299 sock
->ssl
= SSL_new(ctx
);
301 ssl_socket_perror("SSL_new");
304 if (!SSL_set_fd(sock
->ssl
, sock
->fd
)) {
305 ssl_socket_perror("SSL_set_fd");
309 ret
= SSL_connect(sock
->ssl
);
311 socket_perror("SSL_connect", sock
, ret
);
319 static int socket_read(struct imap_socket
*sock
, char *buf
, int len
)
324 n
= SSL_read(sock
->ssl
, buf
, len
);
327 n
= xread(sock
->fd
, buf
, len
);
329 socket_perror("read", sock
, n
);
336 static int socket_write(struct imap_socket
*sock
, const char *buf
, int len
)
341 n
= SSL_write(sock
->ssl
, buf
, len
);
344 n
= write_in_full(sock
->fd
, buf
, len
);
346 socket_perror("write", sock
, n
);
353 static void socket_shutdown(struct imap_socket
*sock
)
357 SSL_shutdown(sock
->ssl
);
364 /* simple line buffering */
365 static int buffer_gets(struct imap_buffer
*b
, char **s
)
368 int start
= b
->offset
;
373 /* make sure we have enough data to read the \r\n sequence */
374 if (b
->offset
+ 1 >= b
->bytes
) {
376 /* shift down used bytes */
379 assert(start
<= b
->bytes
);
380 n
= b
->bytes
- start
;
383 memmove(b
->buf
, b
->buf
+ start
, n
);
389 n
= socket_read(&b
->sock
, b
->buf
+ b
->bytes
,
390 sizeof(b
->buf
) - b
->bytes
);
398 if (b
->buf
[b
->offset
] == '\r') {
399 assert(b
->offset
+ 1 < b
->bytes
);
400 if (b
->buf
[b
->offset
+ 1] == '\n') {
401 b
->buf
[b
->offset
] = 0; /* terminate the string */
402 b
->offset
+= 2; /* next line */
414 static void imap_info(const char *msg
, ...)
426 static void imap_warn(const char *msg
, ...)
432 vfprintf(stderr
, msg
, va
);
437 static char *next_arg(char **s
)
443 while (isspace((unsigned char) **s
))
452 *s
= strchr(*s
, '"');
455 while (**s
&& !isspace((unsigned char) **s
))
467 static void free_generic_messages(struct message
*msgs
)
469 struct message
*tmsg
;
471 for (; msgs
; msgs
= tmsg
) {
477 static int nfsnprintf(char *buf
, int blen
, const char *fmt
, ...)
483 if (blen
<= 0 || (unsigned)(ret
= vsnprintf(buf
, blen
, fmt
, va
)) >= (unsigned)blen
)
484 die("Fatal: buffer too small. Please report a bug.");
489 static struct imap_cmd
*v_issue_imap_cmd(struct imap_store
*ctx
,
490 struct imap_cmd_cb
*cb
,
491 const char *fmt
, va_list ap
)
493 struct imap
*imap
= ctx
->imap
;
494 struct imap_cmd
*cmd
;
498 cmd
= xmalloc(sizeof(struct imap_cmd
));
499 nfvasprintf(&cmd
->cmd
, fmt
, ap
);
500 cmd
->tag
= ++imap
->nexttag
;
505 memset(&cmd
->cb
, 0, sizeof(cmd
->cb
));
507 while (imap
->literal_pending
)
508 get_cmd_result(ctx
, NULL
);
510 bufl
= nfsnprintf(buf
, sizeof(buf
), cmd
->cb
.data
? CAP(LITERALPLUS
) ?
511 "%d %s{%d+}\r\n" : "%d %s{%d}\r\n" : "%d %s\r\n",
512 cmd
->tag
, cmd
->cmd
, cmd
->cb
.dlen
);
514 if (imap
->num_in_progress
)
515 printf("(%d in progress) ", imap
->num_in_progress
);
516 if (memcmp(cmd
->cmd
, "LOGIN", 5))
517 printf(">>> %s", buf
);
519 printf(">>> %d LOGIN <user> <pass>\n", cmd
->tag
);
521 if (socket_write(&imap
->buf
.sock
, buf
, bufl
) != bufl
) {
529 if (CAP(LITERALPLUS
)) {
530 n
= socket_write(&imap
->buf
.sock
, cmd
->cb
.data
, cmd
->cb
.dlen
);
532 if (n
!= cmd
->cb
.dlen
||
533 socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2) {
540 imap
->literal_pending
= 1;
541 } else if (cmd
->cb
.cont
)
542 imap
->literal_pending
= 1;
544 *imap
->in_progress_append
= cmd
;
545 imap
->in_progress_append
= &cmd
->next
;
546 imap
->num_in_progress
++;
550 static struct imap_cmd
*issue_imap_cmd(struct imap_store
*ctx
,
551 struct imap_cmd_cb
*cb
,
552 const char *fmt
, ...)
554 struct imap_cmd
*ret
;
558 ret
= v_issue_imap_cmd(ctx
, cb
, fmt
, ap
);
563 static int imap_exec(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
564 const char *fmt
, ...)
567 struct imap_cmd
*cmdp
;
570 cmdp
= v_issue_imap_cmd(ctx
, cb
, fmt
, ap
);
575 return get_cmd_result(ctx
, cmdp
);
578 static int imap_exec_m(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
);
588 return DRV_STORE_BAD
;
590 switch (get_cmd_result(ctx
, cmdp
)) {
591 case RESP_BAD
: return DRV_STORE_BAD
;
592 case RESP_NO
: return DRV_MSG_BAD
;
593 default: return DRV_OK
;
597 static int is_atom(struct imap_list
*list
)
599 return list
&& list
->val
&& list
->val
!= NIL
&& list
->val
!= LIST
;
602 static int is_list(struct imap_list
*list
)
604 return list
&& list
->val
== LIST
;
607 static void free_list(struct imap_list
*list
)
609 struct imap_list
*tmp
;
611 for (; list
; list
= tmp
) {
614 free_list(list
->child
);
615 else if (is_atom(list
))
621 static int parse_imap_list_l(struct imap
*imap
, char **sp
, struct imap_list
**curp
, int level
)
623 struct imap_list
*cur
;
628 while (isspace((unsigned char)*s
))
630 if (level
&& *s
== ')') {
634 *curp
= cur
= xmalloc(sizeof(*cur
));
636 cur
->val
= NULL
; /* for clean bail */
641 if (parse_imap_list_l(imap
, &s
, &cur
->child
, level
+ 1))
643 } else if (imap
&& *s
== '{') {
645 bytes
= cur
->len
= strtol(s
+ 1, &s
, 10);
649 s
= cur
->val
= xmalloc(cur
->len
);
651 /* dump whats left over in the input buffer */
652 n
= imap
->buf
.bytes
- imap
->buf
.offset
;
655 /* the entire message fit in the buffer */
658 memcpy(s
, imap
->buf
.buf
+ imap
->buf
.offset
, n
);
662 /* mark that we used part of the buffer */
663 imap
->buf
.offset
+= n
;
665 /* now read the rest of the message */
667 if ((n
= socket_read(&imap
->buf
.sock
, s
, bytes
)) <= 0)
673 if (buffer_gets(&imap
->buf
, &s
))
675 } else if (*s
== '"') {
679 for (; *s
!= '"'; s
++)
684 cur
->val
= xmemdupz(p
, cur
->len
);
688 for (; *s
&& !isspace((unsigned char)*s
); s
++)
689 if (level
&& *s
== ')')
692 if (cur
->len
== 3 && !memcmp("NIL", p
, 3))
695 cur
->val
= xmemdupz(p
, cur
->len
);
712 static struct imap_list
*parse_imap_list(struct imap
*imap
, char **sp
)
714 struct imap_list
*head
;
716 if (!parse_imap_list_l(imap
, sp
, &head
, 0))
722 static struct imap_list
*parse_list(char **sp
)
724 return parse_imap_list(NULL
, sp
);
727 static void parse_capability(struct imap
*imap
, char *cmd
)
732 imap
->caps
= 0x80000000;
733 while ((arg
= next_arg(&cmd
)))
734 for (i
= 0; i
< ARRAY_SIZE(cap_list
); i
++)
735 if (!strcmp(cap_list
[i
], arg
))
736 imap
->caps
|= 1 << i
;
737 imap
->rcaps
= imap
->caps
;
740 static int parse_response_code(struct imap_store
*ctx
, struct imap_cmd_cb
*cb
,
743 struct imap
*imap
= ctx
->imap
;
747 return RESP_OK
; /* no response code */
749 if (!(p
= strchr(s
, ']'))) {
750 fprintf(stderr
, "IMAP error: malformed response code\n");
755 if (!strcmp("UIDVALIDITY", arg
)) {
756 if (!(arg
= next_arg(&s
)) || !(ctx
->gen
.uidvalidity
= atoi(arg
))) {
757 fprintf(stderr
, "IMAP error: malformed UIDVALIDITY status\n");
760 } else if (!strcmp("UIDNEXT", arg
)) {
761 if (!(arg
= next_arg(&s
)) || !(imap
->uidnext
= atoi(arg
))) {
762 fprintf(stderr
, "IMAP error: malformed NEXTUID status\n");
765 } else if (!strcmp("CAPABILITY", arg
)) {
766 parse_capability(imap
, s
);
767 } else if (!strcmp("ALERT", arg
)) {
768 /* RFC2060 says that these messages MUST be displayed
771 for (; isspace((unsigned char)*p
); p
++);
772 fprintf(stderr
, "*** IMAP ALERT *** %s\n", p
);
773 } else if (cb
&& cb
->ctx
&& !strcmp("APPENDUID", arg
)) {
774 if (!(arg
= next_arg(&s
)) || !(ctx
->gen
.uidvalidity
= atoi(arg
)) ||
775 !(arg
= next_arg(&s
)) || !(*(int *)cb
->ctx
= atoi(arg
))) {
776 fprintf(stderr
, "IMAP error: malformed APPENDUID status\n");
783 static int get_cmd_result(struct imap_store
*ctx
, struct imap_cmd
*tcmd
)
785 struct imap
*imap
= ctx
->imap
;
786 struct imap_cmd
*cmdp
, **pcmdp
, *ncmdp
;
787 char *cmd
, *arg
, *arg1
, *p
;
788 int n
, resp
, resp2
, tag
;
791 if (buffer_gets(&imap
->buf
, &cmd
))
794 arg
= next_arg(&cmd
);
796 arg
= next_arg(&cmd
);
798 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
802 if (!strcmp("NAMESPACE", arg
)) {
803 imap
->ns_personal
= parse_list(&cmd
);
804 imap
->ns_other
= parse_list(&cmd
);
805 imap
->ns_shared
= parse_list(&cmd
);
806 } else if (!strcmp("OK", arg
) || !strcmp("BAD", arg
) ||
807 !strcmp("NO", arg
) || !strcmp("BYE", arg
)) {
808 if ((resp
= parse_response_code(ctx
, NULL
, cmd
)) != RESP_OK
)
810 } else if (!strcmp("CAPABILITY", arg
))
811 parse_capability(imap
, cmd
);
812 else if ((arg1
= next_arg(&cmd
))) {
813 if (!strcmp("EXISTS", arg1
))
814 ctx
->gen
.count
= atoi(arg
);
815 else if (!strcmp("RECENT", arg1
))
816 ctx
->gen
.recent
= atoi(arg
);
818 fprintf(stderr
, "IMAP error: unable to parse untagged response\n");
821 } else if (!imap
->in_progress
) {
822 fprintf(stderr
, "IMAP error: unexpected reply: %s %s\n", arg
, cmd
? cmd
: "");
824 } else if (*arg
== '+') {
825 /* This can happen only with the last command underway, as
826 it enforces a round-trip. */
827 cmdp
= (struct imap_cmd
*)((char *)imap
->in_progress_append
-
828 offsetof(struct imap_cmd
, next
));
830 n
= socket_write(&imap
->buf
.sock
, cmdp
->cb
.data
, cmdp
->cb
.dlen
);
832 cmdp
->cb
.data
= NULL
;
833 if (n
!= (int)cmdp
->cb
.dlen
)
835 } else if (cmdp
->cb
.cont
) {
836 if (cmdp
->cb
.cont(ctx
, cmdp
, cmd
))
839 fprintf(stderr
, "IMAP error: unexpected command continuation request\n");
842 if (socket_write(&imap
->buf
.sock
, "\r\n", 2) != 2)
845 imap
->literal_pending
= 0;
850 for (pcmdp
= &imap
->in_progress
; (cmdp
= *pcmdp
); pcmdp
= &cmdp
->next
)
851 if (cmdp
->tag
== tag
)
853 fprintf(stderr
, "IMAP error: unexpected tag %s\n", arg
);
856 if (!(*pcmdp
= cmdp
->next
))
857 imap
->in_progress_append
= pcmdp
;
858 imap
->num_in_progress
--;
859 if (cmdp
->cb
.cont
|| cmdp
->cb
.data
)
860 imap
->literal_pending
= 0;
861 arg
= next_arg(&cmd
);
862 if (!strcmp("OK", arg
))
865 if (!strcmp("NO", arg
)) {
866 if (cmdp
->cb
.create
&& cmd
&& (cmdp
->cb
.trycreate
|| !memcmp(cmd
, "[TRYCREATE]", 11))) { /* SELECT, APPEND or UID COPY */
867 p
= strchr(cmdp
->cmd
, '"');
868 if (!issue_imap_cmd(ctx
, NULL
, "CREATE \"%.*s\"", strchr(p
+ 1, '"') - p
+ 1, p
)) {
872 /* not waiting here violates the spec, but a server that does not
873 grok this nonetheless violates it too. */
875 if (!(ncmdp
= issue_imap_cmd(ctx
, &cmdp
->cb
, "%s", cmdp
->cmd
))) {
882 return 0; /* ignored */
888 } else /*if (!strcmp("BAD", arg))*/
890 fprintf(stderr
, "IMAP command '%s' returned response (%s) - %s\n",
891 memcmp(cmdp
->cmd
, "LOGIN", 5) ?
892 cmdp
->cmd
: "LOGIN <user> <pass>",
893 arg
, cmd
? cmd
: "");
895 if ((resp2
= parse_response_code(ctx
, &cmdp
->cb
, cmd
)) > resp
)
899 cmdp
->cb
.done(ctx
, cmdp
, resp
);
903 if (!tcmd
|| tcmd
== cmdp
)
910 static void imap_close_server(struct imap_store
*ictx
)
912 struct imap
*imap
= ictx
->imap
;
914 if (imap
->buf
.sock
.fd
!= -1) {
915 imap_exec(ictx
, NULL
, "LOGOUT");
916 socket_shutdown(&imap
->buf
.sock
);
918 free_list(imap
->ns_personal
);
919 free_list(imap
->ns_other
);
920 free_list(imap
->ns_shared
);
924 static void imap_close_store(struct store
*ctx
)
926 imap_close_server((struct imap_store
*)ctx
);
927 free_generic_messages(ctx
->msgs
);
931 static struct store
*imap_open_store(struct imap_server_conf
*srvc
)
933 struct imap_store
*ctx
;
936 int s
= -1, a
[2], preauth
;
939 ctx
= xcalloc(sizeof(*ctx
), 1);
941 ctx
->imap
= imap
= xcalloc(sizeof(*imap
), 1);
942 imap
->buf
.sock
.fd
= -1;
943 imap
->in_progress_append
= &imap
->in_progress
;
945 /* open connection to IMAP server */
948 imap_info("Starting tunnel '%s'... ", srvc
->tunnel
);
950 if (socketpair(PF_UNIX
, SOCK_STREAM
, 0, a
)) {
951 perror("socketpair");
959 if (dup2(a
[0], 0) == -1 || dup2(a
[0], 1) == -1)
963 execl("/bin/sh", "sh", "-c", srvc
->tunnel
, NULL
);
969 imap
->buf
.sock
.fd
= a
[1];
974 struct addrinfo hints
, *ai0
, *ai
;
978 snprintf(portstr
, sizeof(portstr
), "%hu", srvc
->port
);
980 memset(&hints
, 0, sizeof(hints
));
981 hints
.ai_socktype
= SOCK_STREAM
;
982 hints
.ai_protocol
= IPPROTO_TCP
;
984 imap_info("Resolving %s... ", srvc
->host
);
985 gai
= getaddrinfo(srvc
->host
, portstr
, &hints
, &ai
);
987 fprintf(stderr
, "getaddrinfo: %s\n", gai_strerror(gai
));
992 for (ai0
= ai
; ai
; ai
= ai
->ai_next
) {
993 char addr
[NI_MAXHOST
];
995 s
= socket(ai
->ai_family
, ai
->ai_socktype
,
1000 getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
,
1001 sizeof(addr
), NULL
, 0, NI_NUMERICHOST
);
1002 imap_info("Connecting to [%s]:%s... ", addr
, portstr
);
1004 if (connect(s
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
1016 struct sockaddr_in addr
;
1018 memset(&addr
, 0, sizeof(addr
));
1019 addr
.sin_port
= htons(srvc
->port
);
1020 addr
.sin_family
= AF_INET
;
1022 imap_info("Resolving %s... ", srvc
->host
);
1023 he
= gethostbyname(srvc
->host
);
1025 perror("gethostbyname");
1030 addr
.sin_addr
.s_addr
= *((int *) he
->h_addr_list
[0]);
1032 s
= socket(PF_INET
, SOCK_STREAM
, 0);
1034 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr
.sin_addr
), ntohs(addr
.sin_port
));
1035 if (connect(s
, (struct sockaddr
*)&addr
, sizeof(addr
))) {
1042 fputs("Error: unable to connect to server.\n", stderr
);
1046 imap
->buf
.sock
.fd
= s
;
1048 if (srvc
->use_ssl
&&
1049 ssl_socket_connect(&imap
->buf
.sock
, 0, srvc
->ssl_verify
)) {
1056 /* read the greeting string */
1057 if (buffer_gets(&imap
->buf
, &rsp
)) {
1058 fprintf(stderr
, "IMAP error: no greeting response\n");
1061 arg
= next_arg(&rsp
);
1062 if (!arg
|| *arg
!= '*' || (arg
= next_arg(&rsp
)) == NULL
) {
1063 fprintf(stderr
, "IMAP error: invalid greeting response\n");
1067 if (!strcmp("PREAUTH", arg
))
1069 else if (strcmp("OK", arg
) != 0) {
1070 fprintf(stderr
, "IMAP error: unknown greeting response\n");
1073 parse_response_code(ctx
, NULL
, rsp
);
1074 if (!imap
->caps
&& imap_exec(ctx
, NULL
, "CAPABILITY") != RESP_OK
)
1079 if (!srvc
->use_ssl
&& CAP(STARTTLS
)) {
1080 if (imap_exec(ctx
, 0, "STARTTLS") != RESP_OK
)
1082 if (ssl_socket_connect(&imap
->buf
.sock
, 1,
1085 /* capabilities may have changed, so get the new capabilities */
1086 if (imap_exec(ctx
, 0, "CAPABILITY") != RESP_OK
)
1090 imap_info("Logging in...\n");
1092 fprintf(stderr
, "Skipping server %s, no user\n", srvc
->host
);
1097 sprintf(prompt
, "Password (%s@%s): ", srvc
->user
, srvc
->host
);
1098 arg
= getpass(prompt
);
1104 fprintf(stderr
, "Skipping account %s@%s, no password\n", srvc
->user
, srvc
->host
);
1108 * getpass() returns a pointer to a static buffer. make a copy
1109 * for long term storage.
1111 srvc
->pass
= xstrdup(arg
);
1114 fprintf(stderr
, "Skipping account %s@%s, server forbids LOGIN\n", srvc
->user
, srvc
->host
);
1117 if (!imap
->buf
.sock
.ssl
)
1118 imap_warn("*** IMAP Warning *** Password is being "
1119 "sent in the clear\n");
1120 if (imap_exec(ctx
, NULL
, "LOGIN \"%s\" \"%s\"", srvc
->user
, srvc
->pass
) != RESP_OK
) {
1121 fprintf(stderr
, "IMAP error: LOGIN failed\n");
1128 return (struct store
*)ctx
;
1131 imap_close_store(&ctx
->gen
);
1135 static int imap_make_flags(int flags
, char *buf
)
1140 for (i
= d
= 0; i
< ARRAY_SIZE(Flags
); i
++)
1141 if (flags
& (1 << i
)) {
1144 for (s
= Flags
[i
]; *s
; s
++)
1152 static int imap_store_msg(struct store
*gctx
, struct msg_data
*data
)
1154 struct imap_store
*ctx
= (struct imap_store
*)gctx
;
1155 struct imap
*imap
= ctx
->imap
;
1156 struct imap_cmd_cb cb
;
1157 const char *prefix
, *box
;
1161 memset(&cb
, 0, sizeof(cb
));
1163 cb
.dlen
= data
->len
;
1164 cb
.data
= xmalloc(cb
.dlen
);
1165 memcpy(cb
.data
, data
->data
, data
->len
);
1169 d
= imap_make_flags(data
->flags
, flagstr
);
1175 prefix
= !strcmp(box
, "INBOX") ? "" : ctx
->prefix
;
1177 ret
= imap_exec_m(ctx
, &cb
, "APPEND \"%s%s\" %s", prefix
, box
, flagstr
);
1178 imap
->caps
= imap
->rcaps
;
1186 static void encode_html_chars(struct strbuf
*p
)
1189 for (i
= 0; i
< p
->len
; i
++) {
1190 if (p
->buf
[i
] == '&')
1191 strbuf_splice(p
, i
, 1, "&", 5);
1192 if (p
->buf
[i
] == '<')
1193 strbuf_splice(p
, i
, 1, "<", 4);
1194 if (p
->buf
[i
] == '>')
1195 strbuf_splice(p
, i
, 1, ">", 4);
1196 if (p
->buf
[i
] == '"')
1197 strbuf_splice(p
, i
, 1, """, 6);
1200 static void wrap_in_html(struct msg_data
*msg
)
1202 struct strbuf buf
= STRBUF_INIT
;
1203 struct strbuf
**lines
;
1205 static char *content_type
= "Content-Type: text/html;\n";
1206 static char *pre_open
= "<pre>\n";
1207 static char *pre_close
= "</pre>\n";
1208 int added_header
= 0;
1210 strbuf_attach(&buf
, msg
->data
, msg
->len
, msg
->len
);
1211 lines
= strbuf_split(&buf
, '\n');
1212 strbuf_release(&buf
);
1213 for (p
= lines
; *p
; p
++) {
1214 if (! added_header
) {
1215 if ((*p
)->len
== 1 && *((*p
)->buf
) == '\n') {
1216 strbuf_addstr(&buf
, content_type
);
1217 strbuf_addbuf(&buf
, *p
);
1218 strbuf_addstr(&buf
, pre_open
);
1224 encode_html_chars(*p
);
1225 strbuf_addbuf(&buf
, *p
);
1227 strbuf_addstr(&buf
, pre_close
);
1228 strbuf_list_free(lines
);
1230 msg
->data
= strbuf_detach(&buf
, NULL
);
1233 #define CHUNKSIZE 0x1000
1235 static int read_message(FILE *f
, struct msg_data
*msg
)
1237 struct strbuf buf
= STRBUF_INIT
;
1239 memset(msg
, 0, sizeof(*msg
));
1242 if (strbuf_fread(&buf
, CHUNKSIZE
, f
) <= 0)
1247 msg
->data
= strbuf_detach(&buf
, NULL
);
1251 static int count_messages(struct msg_data
*msg
)
1254 char *p
= msg
->data
;
1257 if (!prefixcmp(p
, "From ")) {
1261 p
= strstr(p
+5, "\nFrom ");
1269 static int split_msg(struct msg_data
*all_msgs
, struct msg_data
*msg
, int *ofs
)
1273 memset(msg
, 0, sizeof *msg
);
1274 if (*ofs
>= all_msgs
->len
)
1277 data
= &all_msgs
->data
[*ofs
];
1278 msg
->len
= all_msgs
->len
- *ofs
;
1280 if (msg
->len
< 5 || prefixcmp(data
, "From "))
1283 p
= strchr(data
, '\n');
1291 p
= strstr(data
, "\nFrom ");
1293 msg
->len
= &p
[1] - data
;
1295 msg
->data
= xmemdupz(data
, msg
->len
);
1300 static struct imap_server_conf server
= {
1312 static char *imap_folder
;
1314 static int git_imap_config(const char *key
, const char *val
, void *cb
)
1316 char imap_key
[] = "imap.";
1318 if (strncmp(key
, imap_key
, sizeof imap_key
- 1))
1322 return config_error_nonbool(key
);
1324 key
+= sizeof imap_key
- 1;
1326 if (!strcmp("folder", key
)) {
1327 imap_folder
= xstrdup(val
);
1328 } else if (!strcmp("host", key
)) {
1329 if (!prefixcmp(val
, "imap:"))
1331 else if (!prefixcmp(val
, "imaps:")) {
1335 if (!prefixcmp(val
, "//"))
1337 server
.host
= xstrdup(val
);
1338 } else if (!strcmp("user", key
))
1339 server
.user
= xstrdup(val
);
1340 else if (!strcmp("pass", key
))
1341 server
.pass
= xstrdup(val
);
1342 else if (!strcmp("port", key
))
1343 server
.port
= git_config_int(key
, val
);
1344 else if (!strcmp("tunnel", key
))
1345 server
.tunnel
= xstrdup(val
);
1346 else if (!strcmp("sslverify", key
))
1347 server
.ssl_verify
= git_config_bool(key
, val
);
1348 else if (!strcmp("preformattedHTML", key
))
1349 server
.use_html
= git_config_bool(key
, val
);
1353 int main(int argc
, char **argv
)
1355 struct msg_data all_msgs
, msg
;
1356 struct store
*ctx
= NULL
;
1362 git_extract_argv0_path(argv
[0]);
1364 setup_git_directory_gently(&nongit_ok
);
1365 git_config(git_imap_config
, NULL
);
1368 server
.port
= server
.use_ssl
? 993 : 143;
1371 fprintf(stderr
, "no imap store specified\n");
1375 if (!server
.tunnel
) {
1376 fprintf(stderr
, "no imap host specified\n");
1379 server
.host
= "tunnel";
1382 /* read the messages */
1383 if (!read_message(stdin
, &all_msgs
)) {
1384 fprintf(stderr
, "nothing to send\n");
1388 total
= count_messages(&all_msgs
);
1390 fprintf(stderr
, "no messages to send\n");
1394 /* write it to the imap server */
1395 ctx
= imap_open_store(&server
);
1397 fprintf(stderr
, "failed to open store\n");
1401 fprintf(stderr
, "sending %d message%s\n", total
, (total
!= 1) ? "s" : "");
1402 ctx
->name
= imap_folder
;
1404 unsigned percent
= n
* 100 / total
;
1405 fprintf(stderr
, "%4u%% (%d/%d) done\r", percent
, n
, total
);
1406 if (!split_msg(&all_msgs
, &msg
, &ofs
))
1408 if (server
.use_html
)
1410 r
= imap_store_msg(ctx
, &msg
);
1415 fprintf(stderr
, "\n");
1417 imap_close_store(ctx
);