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 typedef struct store_conf
{
29 const char *path
; /* should this be here? its interpretation is driver-specific */
32 unsigned max_size
; /* off_t is overkill */
33 unsigned trash_remote_new
:1, trash_only_new
:1;
36 typedef struct string_list
{
37 struct string_list
*next
;
41 typedef struct channel_conf
{
42 struct channel_conf
*next
;
44 store_conf_t
*master
, *slave
;
45 char *master_name
, *slave_name
;
47 string_list_t
*patterns
;
49 unsigned max_messages
; /* for slave only */
52 typedef struct group_conf
{
53 struct group_conf
*next
;
55 string_list_t
*channels
;
58 /* For message->status */
59 #define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
60 #define M_DEAD (1<<1) /* expunged */
61 #define M_FLAGS (1<<2) /* flags fetched */
63 typedef struct message
{
65 /* string_list_t *keywords; */
66 size_t size
; /* zero implies "not fetched" */
68 unsigned char flags
, status
;
71 typedef struct store
{
72 store_conf_t
*conf
; /* foreign */
74 /* currently open mailbox */
75 const char *name
; /* foreign! maybe preset? */
77 message_t
*msgs
; /* own */
79 unsigned char opts
; /* maybe preset? */
80 /* note that the following do _not_ reflect stats from msgs, but mailbox totals */
81 int count
; /* # of messages */
82 int recent
; /* # of recent messages - don't trust this beyond the initial read */
93 #define DRV_MSG_BAD -1
94 #define DRV_BOX_BAD -2
95 #define DRV_STORE_BAD -3
97 static int Verbose
, Quiet
;
99 static void imap_info( const char *, ... );
100 static void imap_warn( const char *, ... );
102 static char *next_arg( char ** );
104 static void free_generic_messages( message_t
* );
106 static int nfsnprintf( char *buf
, int blen
, const char *fmt
, ... );
109 static void arc4_init( void );
110 static unsigned char arc4_getbyte( void );
112 typedef struct imap_server_conf
{
119 } imap_server_conf_t
;
121 typedef struct imap_store_conf
{
123 imap_server_conf_t
*server
;
124 unsigned use_namespace
:1;
127 #define NIL (void*)0x1
128 #define LIST (void*)0x2
130 typedef struct _list
{
131 struct _list
*next
, *child
;
149 typedef struct imap
{
150 int uidnext
; /* from SELECT responses */
151 list_t
*ns_personal
, *ns_other
, *ns_shared
; /* NAMESPACE info */
152 unsigned caps
, rcaps
; /* CAPABILITY results */
154 int nexttag
, num_in_progress
, literal_pending
;
155 struct imap_cmd
*in_progress
, **in_progress_append
;
156 buffer_t buf
; /* this is BIG, so put it last */
159 typedef struct imap_store
{
164 unsigned /*currentnc:1,*/ trashnc
:1;
168 int (*cont
)( imap_store_t
*ctx
, struct imap_cmd
*cmd
, const char *prompt
);
169 void (*done
)( imap_store_t
*ctx
, struct imap_cmd
*cmd
, int response
);
174 unsigned create
:1, trycreate
:1;
178 struct imap_cmd
*next
;
179 struct imap_cmd_cb cb
;
184 #define CAP(cap) (imap->caps & (1 << (cap)))
193 static const char *cap_list
[] = {
204 static int get_cmd_result( imap_store_t
*ctx
, struct imap_cmd
*tcmd
);
207 static const char *Flags
[] = {
216 socket_perror( const char *func
, Socket_t
*sock
, int ret
)
221 fprintf( stderr
, "%s: unexpected EOF\n", func
);
225 socket_read( Socket_t
*sock
, char *buf
, int len
)
227 ssize_t n
= xread( sock
->fd
, buf
, len
);
229 socket_perror( "read", sock
, n
);
237 socket_write( Socket_t
*sock
, const char *buf
, int len
)
239 int n
= write_in_full( sock
->fd
, buf
, len
);
241 socket_perror( "write", sock
, n
);
248 /* simple line buffering */
250 buffer_gets( buffer_t
* b
, char **s
)
253 int start
= b
->offset
;
258 /* make sure we have enough data to read the \r\n sequence */
259 if (b
->offset
+ 1 >= b
->bytes
) {
261 /* shift down used bytes */
264 assert( start
<= b
->bytes
);
265 n
= b
->bytes
- start
;
268 memmove(b
->buf
, b
->buf
+ start
, n
);
274 n
= socket_read( &b
->sock
, b
->buf
+ b
->bytes
,
275 sizeof(b
->buf
) - b
->bytes
);
283 if (b
->buf
[b
->offset
] == '\r') {
284 assert( b
->offset
+ 1 < b
->bytes
);
285 if (b
->buf
[b
->offset
+ 1] == '\n') {
286 b
->buf
[b
->offset
] = 0; /* terminate the string */
287 b
->offset
+= 2; /* next line */
300 imap_info( const char *msg
, ... )
313 imap_warn( const char *msg
, ... )
319 vfprintf( stderr
, msg
, va
);
331 while (isspace( (unsigned char) **s
))
340 *s
= strchr( *s
, '"' );
343 while (**s
&& !isspace( (unsigned char) **s
))
356 free_generic_messages( message_t
*msgs
)
360 for (; msgs
; msgs
= tmsg
) {
367 nfsnprintf( char *buf
, int blen
, const char *fmt
, ... )
373 if (blen
<= 0 || (unsigned)(ret
= vsnprintf( buf
, blen
, fmt
, va
)) >= (unsigned)blen
)
374 die( "Fatal: buffer too small. Please report a bug.\n");
380 unsigned char i
, j
, s
[256];
387 unsigned char j
, si
, dat
[128];
389 if ((fd
= open( "/dev/urandom", O_RDONLY
)) < 0 && (fd
= open( "/dev/random", O_RDONLY
)) < 0) {
390 fprintf( stderr
, "Fatal: no random number source available.\n" );
393 if (read_in_full( fd
, dat
, 128 ) != 128) {
394 fprintf( stderr
, "Fatal: cannot read random number source.\n" );
399 for (i
= 0; i
< 256; i
++)
401 for (i
= j
= 0; i
< 256; i
++) {
403 j
+= si
+ dat
[i
& 127];
409 for (i
= 0; i
< 256; i
++)
416 unsigned char si
, sj
;
424 return rs
.s
[(si
+ sj
) & 0xff];
427 static struct imap_cmd
*
428 v_issue_imap_cmd( imap_store_t
*ctx
, struct imap_cmd_cb
*cb
,
429 const char *fmt
, va_list ap
)
431 imap_t
*imap
= ctx
->imap
;
432 struct imap_cmd
*cmd
;
436 cmd
= xmalloc( sizeof(struct imap_cmd
) );
437 nfvasprintf( &cmd
->cmd
, fmt
, ap
);
438 cmd
->tag
= ++imap
->nexttag
;
443 memset( &cmd
->cb
, 0, sizeof(cmd
->cb
) );
445 while (imap
->literal_pending
)
446 get_cmd_result( ctx
, NULL
);
448 bufl
= nfsnprintf( buf
, sizeof(buf
), cmd
->cb
.data
? CAP(LITERALPLUS
) ?
449 "%d %s{%d+}\r\n" : "%d %s{%d}\r\n" : "%d %s\r\n",
450 cmd
->tag
, cmd
->cmd
, cmd
->cb
.dlen
);
452 if (imap
->num_in_progress
)
453 printf( "(%d in progress) ", imap
->num_in_progress
);
454 if (memcmp( cmd
->cmd
, "LOGIN", 5 ))
455 printf( ">>> %s", buf
);
457 printf( ">>> %d LOGIN <user> <pass>\n", cmd
->tag
);
459 if (socket_write( &imap
->buf
.sock
, buf
, bufl
) != bufl
) {
467 if (CAP(LITERALPLUS
)) {
468 n
= socket_write( &imap
->buf
.sock
, cmd
->cb
.data
, cmd
->cb
.dlen
);
469 free( cmd
->cb
.data
);
470 if (n
!= cmd
->cb
.dlen
||
471 (n
= socket_write( &imap
->buf
.sock
, "\r\n", 2 )) != 2)
479 imap
->literal_pending
= 1;
480 } else if (cmd
->cb
.cont
)
481 imap
->literal_pending
= 1;
483 *imap
->in_progress_append
= cmd
;
484 imap
->in_progress_append
= &cmd
->next
;
485 imap
->num_in_progress
++;
489 static struct imap_cmd
*
490 issue_imap_cmd( imap_store_t
*ctx
, struct imap_cmd_cb
*cb
, const char *fmt
, ... )
492 struct imap_cmd
*ret
;
496 ret
= v_issue_imap_cmd( ctx
, cb
, fmt
, ap
);
502 imap_exec( imap_store_t
*ctx
, struct imap_cmd_cb
*cb
, const char *fmt
, ... )
505 struct imap_cmd
*cmdp
;
508 cmdp
= v_issue_imap_cmd( ctx
, cb
, fmt
, ap
);
513 return get_cmd_result( ctx
, cmdp
);
517 imap_exec_m( imap_store_t
*ctx
, struct imap_cmd_cb
*cb
, const char *fmt
, ... )
520 struct imap_cmd
*cmdp
;
523 cmdp
= v_issue_imap_cmd( ctx
, cb
, fmt
, ap
);
526 return DRV_STORE_BAD
;
528 switch (get_cmd_result( ctx
, cmdp
)) {
529 case RESP_BAD
: return DRV_STORE_BAD
;
530 case RESP_NO
: return DRV_MSG_BAD
;
531 default: return DRV_OK
;
536 is_atom( list_t
*list
)
538 return list
&& list
->val
&& list
->val
!= NIL
&& list
->val
!= LIST
;
542 is_list( list_t
*list
)
544 return list
&& list
->val
== LIST
;
548 free_list( list_t
*list
)
552 for (; list
; list
= tmp
) {
555 free_list( list
->child
);
556 else if (is_atom( list
))
563 parse_imap_list_l( imap_t
*imap
, char **sp
, list_t
**curp
, int level
)
570 while (isspace( (unsigned char)*s
))
572 if (level
&& *s
== ')') {
576 *curp
= cur
= xmalloc( sizeof(*cur
) );
578 cur
->val
= NULL
; /* for clean bail */
583 if (parse_imap_list_l( imap
, &s
, &cur
->child
, level
+ 1 ))
585 } else if (imap
&& *s
== '{') {
587 bytes
= cur
->len
= strtol( s
+ 1, &s
, 10 );
591 s
= cur
->val
= xmalloc( cur
->len
);
593 /* dump whats left over in the input buffer */
594 n
= imap
->buf
.bytes
- imap
->buf
.offset
;
597 /* the entire message fit in the buffer */
600 memcpy( s
, imap
->buf
.buf
+ imap
->buf
.offset
, n
);
604 /* mark that we used part of the buffer */
605 imap
->buf
.offset
+= n
;
607 /* now read the rest of the message */
609 if ((n
= socket_read (&imap
->buf
.sock
, s
, bytes
)) <= 0)
615 if (buffer_gets( &imap
->buf
, &s
))
617 } else if (*s
== '"') {
621 for (; *s
!= '"'; s
++)
626 cur
->val
= xmalloc( cur
->len
+ 1 );
627 memcpy( cur
->val
, p
, cur
->len
);
628 cur
->val
[cur
->len
] = 0;
632 for (; *s
&& !isspace( (unsigned char)*s
); s
++)
633 if (level
&& *s
== ')')
636 if (cur
->len
== 3 && !memcmp ("NIL", p
, 3))
639 cur
->val
= xmalloc( cur
->len
+ 1 );
640 memcpy( cur
->val
, p
, cur
->len
);
641 cur
->val
[cur
->len
] = 0;
660 parse_imap_list( imap_t
*imap
, char **sp
)
664 if (!parse_imap_list_l( imap
, sp
, &head
, 0 ))
671 parse_list( char **sp
)
673 return parse_imap_list( NULL
, sp
);
677 parse_capability( imap_t
*imap
, char *cmd
)
682 imap
->caps
= 0x80000000;
683 while ((arg
= next_arg( &cmd
)))
684 for (i
= 0; i
< ARRAY_SIZE(cap_list
); i
++)
685 if (!strcmp( cap_list
[i
], arg
))
686 imap
->caps
|= 1 << i
;
687 imap
->rcaps
= imap
->caps
;
691 parse_response_code( imap_store_t
*ctx
, struct imap_cmd_cb
*cb
, char *s
)
693 imap_t
*imap
= ctx
->imap
;
697 return RESP_OK
; /* no response code */
699 if (!(p
= strchr( s
, ']' ))) {
700 fprintf( stderr
, "IMAP error: malformed response code\n" );
704 arg
= next_arg( &s
);
705 if (!strcmp( "UIDVALIDITY", arg
)) {
706 if (!(arg
= next_arg( &s
)) || !(ctx
->gen
.uidvalidity
= atoi( arg
))) {
707 fprintf( stderr
, "IMAP error: malformed UIDVALIDITY status\n" );
710 } else if (!strcmp( "UIDNEXT", arg
)) {
711 if (!(arg
= next_arg( &s
)) || !(imap
->uidnext
= atoi( arg
))) {
712 fprintf( stderr
, "IMAP error: malformed NEXTUID status\n" );
715 } else if (!strcmp( "CAPABILITY", arg
)) {
716 parse_capability( imap
, s
);
717 } else if (!strcmp( "ALERT", arg
)) {
718 /* RFC2060 says that these messages MUST be displayed
721 for (; isspace( (unsigned char)*p
); p
++);
722 fprintf( stderr
, "*** IMAP ALERT *** %s\n", p
);
723 } else if (cb
&& cb
->ctx
&& !strcmp( "APPENDUID", arg
)) {
724 if (!(arg
= next_arg( &s
)) || !(ctx
->gen
.uidvalidity
= atoi( arg
)) ||
725 !(arg
= next_arg( &s
)) || !(*(int *)cb
->ctx
= atoi( arg
)))
727 fprintf( stderr
, "IMAP error: malformed APPENDUID status\n" );
735 get_cmd_result( imap_store_t
*ctx
, struct imap_cmd
*tcmd
)
737 imap_t
*imap
= ctx
->imap
;
738 struct imap_cmd
*cmdp
, **pcmdp
, *ncmdp
;
739 char *cmd
, *arg
, *arg1
, *p
;
740 int n
, resp
, resp2
, tag
;
743 if (buffer_gets( &imap
->buf
, &cmd
))
746 arg
= next_arg( &cmd
);
748 arg
= next_arg( &cmd
);
750 fprintf( stderr
, "IMAP error: unable to parse untagged response\n" );
754 if (!strcmp( "NAMESPACE", arg
)) {
755 imap
->ns_personal
= parse_list( &cmd
);
756 imap
->ns_other
= parse_list( &cmd
);
757 imap
->ns_shared
= parse_list( &cmd
);
758 } else if (!strcmp( "OK", arg
) || !strcmp( "BAD", arg
) ||
759 !strcmp( "NO", arg
) || !strcmp( "BYE", arg
)) {
760 if ((resp
= parse_response_code( ctx
, NULL
, cmd
)) != RESP_OK
)
762 } else if (!strcmp( "CAPABILITY", arg
))
763 parse_capability( imap
, cmd
);
764 else if ((arg1
= next_arg( &cmd
))) {
765 if (!strcmp( "EXISTS", arg1
))
766 ctx
->gen
.count
= atoi( arg
);
767 else if (!strcmp( "RECENT", arg1
))
768 ctx
->gen
.recent
= atoi( arg
);
770 fprintf( stderr
, "IMAP error: unable to parse untagged response\n" );
773 } else if (!imap
->in_progress
) {
774 fprintf( stderr
, "IMAP error: unexpected reply: %s %s\n", arg
, cmd
? cmd
: "" );
776 } else if (*arg
== '+') {
777 /* This can happen only with the last command underway, as
778 it enforces a round-trip. */
779 cmdp
= (struct imap_cmd
*)((char *)imap
->in_progress_append
-
780 offsetof(struct imap_cmd
, next
));
782 n
= socket_write( &imap
->buf
.sock
, cmdp
->cb
.data
, cmdp
->cb
.dlen
);
783 free( cmdp
->cb
.data
);
784 cmdp
->cb
.data
= NULL
;
785 if (n
!= (int)cmdp
->cb
.dlen
)
787 } else if (cmdp
->cb
.cont
) {
788 if (cmdp
->cb
.cont( ctx
, cmdp
, cmd
))
791 fprintf( stderr
, "IMAP error: unexpected command continuation request\n" );
794 if (socket_write( &imap
->buf
.sock
, "\r\n", 2 ) != 2)
797 imap
->literal_pending
= 0;
802 for (pcmdp
= &imap
->in_progress
; (cmdp
= *pcmdp
); pcmdp
= &cmdp
->next
)
803 if (cmdp
->tag
== tag
)
805 fprintf( stderr
, "IMAP error: unexpected tag %s\n", arg
);
808 if (!(*pcmdp
= cmdp
->next
))
809 imap
->in_progress_append
= pcmdp
;
810 imap
->num_in_progress
--;
811 if (cmdp
->cb
.cont
|| cmdp
->cb
.data
)
812 imap
->literal_pending
= 0;
813 arg
= next_arg( &cmd
);
814 if (!strcmp( "OK", arg
))
817 if (!strcmp( "NO", arg
)) {
818 if (cmdp
->cb
.create
&& cmd
&& (cmdp
->cb
.trycreate
|| !memcmp( cmd
, "[TRYCREATE]", 11 ))) { /* SELECT, APPEND or UID COPY */
819 p
= strchr( cmdp
->cmd
, '"' );
820 if (!issue_imap_cmd( ctx
, NULL
, "CREATE \"%.*s\"", strchr( p
+ 1, '"' ) - p
+ 1, p
)) {
824 /* not waiting here violates the spec, but a server that does not
825 grok this nonetheless violates it too. */
827 if (!(ncmdp
= issue_imap_cmd( ctx
, &cmdp
->cb
, "%s", cmdp
->cmd
))) {
834 return 0; /* ignored */
840 } else /*if (!strcmp( "BAD", arg ))*/
842 fprintf( stderr
, "IMAP command '%s' returned response (%s) - %s\n",
843 memcmp (cmdp
->cmd
, "LOGIN", 5) ?
844 cmdp
->cmd
: "LOGIN <user> <pass>",
845 arg
, cmd
? cmd
: "");
847 if ((resp2
= parse_response_code( ctx
, &cmdp
->cb
, cmd
)) > resp
)
851 cmdp
->cb
.done( ctx
, cmdp
, resp
);
853 free( cmdp
->cb
.data
);
856 if (!tcmd
|| tcmd
== cmdp
)
864 imap_close_server( imap_store_t
*ictx
)
866 imap_t
*imap
= ictx
->imap
;
868 if (imap
->buf
.sock
.fd
!= -1) {
869 imap_exec( ictx
, NULL
, "LOGOUT" );
870 close( imap
->buf
.sock
.fd
);
872 free_list( imap
->ns_personal
);
873 free_list( imap
->ns_other
);
874 free_list( imap
->ns_shared
);
879 imap_close_store( store_t
*ctx
)
881 imap_close_server( (imap_store_t
*)ctx
);
882 free_generic_messages( ctx
->msgs
);
887 imap_open_store( imap_server_conf_t
*srvc
)
893 struct sockaddr_in addr
;
894 int s
, a
[2], preauth
;
897 ctx
= xcalloc( sizeof(*ctx
), 1 );
899 ctx
->imap
= imap
= xcalloc( sizeof(*imap
), 1 );
900 imap
->buf
.sock
.fd
= -1;
901 imap
->in_progress_append
= &imap
->in_progress
;
903 /* open connection to IMAP server */
906 imap_info( "Starting tunnel '%s'... ", srvc
->tunnel
);
908 if (socketpair( PF_UNIX
, SOCK_STREAM
, 0, a
)) {
909 perror( "socketpair" );
917 if (dup2( a
[0], 0 ) == -1 || dup2( a
[0], 1 ) == -1)
921 execl( "/bin/sh", "sh", "-c", srvc
->tunnel
, NULL
);
927 imap
->buf
.sock
.fd
= a
[1];
931 memset( &addr
, 0, sizeof(addr
) );
932 addr
.sin_port
= htons( srvc
->port
);
933 addr
.sin_family
= AF_INET
;
935 imap_info( "Resolving %s... ", srvc
->host
);
936 he
= gethostbyname( srvc
->host
);
938 perror( "gethostbyname" );
943 addr
.sin_addr
.s_addr
= *((int *) he
->h_addr_list
[0]);
945 s
= socket( PF_INET
, SOCK_STREAM
, 0 );
947 imap_info( "Connecting to %s:%hu... ", inet_ntoa( addr
.sin_addr
), ntohs( addr
.sin_port
) );
948 if (connect( s
, (struct sockaddr
*)&addr
, sizeof(addr
) )) {
955 imap
->buf
.sock
.fd
= s
;
959 /* read the greeting string */
960 if (buffer_gets( &imap
->buf
, &rsp
)) {
961 fprintf( stderr
, "IMAP error: no greeting response\n" );
964 arg
= next_arg( &rsp
);
965 if (!arg
|| *arg
!= '*' || (arg
= next_arg( &rsp
)) == NULL
) {
966 fprintf( stderr
, "IMAP error: invalid greeting response\n" );
970 if (!strcmp( "PREAUTH", arg
))
972 else if (strcmp( "OK", arg
) != 0) {
973 fprintf( stderr
, "IMAP error: unknown greeting response\n" );
976 parse_response_code( ctx
, NULL
, rsp
);
977 if (!imap
->caps
&& imap_exec( ctx
, NULL
, "CAPABILITY" ) != RESP_OK
)
982 imap_info ("Logging in...\n");
984 fprintf( stderr
, "Skipping server %s, no user\n", srvc
->host
);
989 sprintf( prompt
, "Password (%s@%s): ", srvc
->user
, srvc
->host
);
990 arg
= getpass( prompt
);
996 fprintf( stderr
, "Skipping account %s@%s, no password\n", srvc
->user
, srvc
->host
);
1000 * getpass() returns a pointer to a static buffer. make a copy
1001 * for long term storage.
1003 srvc
->pass
= xstrdup( arg
);
1006 fprintf( stderr
, "Skipping account %s@%s, server forbids LOGIN\n", srvc
->user
, srvc
->host
);
1009 imap_warn( "*** IMAP Warning *** Password is being sent in the clear\n" );
1010 if (imap_exec( ctx
, NULL
, "LOGIN \"%s\" \"%s\"", srvc
->user
, srvc
->pass
) != RESP_OK
) {
1011 fprintf( stderr
, "IMAP error: LOGIN failed\n" );
1018 return (store_t
*)ctx
;
1021 imap_close_store( &ctx
->gen
);
1026 imap_make_flags( int flags
, char *buf
)
1031 for (i
= d
= 0; i
< ARRAY_SIZE(Flags
); i
++)
1032 if (flags
& (1 << i
)) {
1035 for (s
= Flags
[i
]; *s
; s
++)
1046 imap_store_msg( store_t
*gctx
, msg_data_t
*data
, int *uid
)
1048 imap_store_t
*ctx
= (imap_store_t
*)gctx
;
1049 imap_t
*imap
= ctx
->imap
;
1050 struct imap_cmd_cb cb
;
1052 const char *prefix
, *box
;
1053 int ret
, i
, j
, d
, len
, extra
, nocr
;
1054 int start
, sbreak
= 0, ebreak
= 0;
1055 char flagstr
[128], tuid
[TUIDL
* 2 + 1];
1057 memset( &cb
, 0, sizeof(cb
) );
1063 if (!CAP(UIDPLUS
) && uid
) {
1067 if (fmap
[i
++] == '\n') {
1069 if (i
- 2 + nocr
== start
) {
1070 sbreak
= ebreak
= i
- 2 + nocr
;
1073 if (!memcmp( fmap
+ start
, "X-TUID: ", 8 )) {
1074 extra
-= (ebreak
= i
) - (sbreak
= start
) + nocr
;
1079 /* invalid message */
1083 for (j
= 0; j
< TUIDL
; j
++)
1084 sprintf( tuid
+ j
* 2, "%02x", arc4_getbyte() );
1085 extra
+= 8 + TUIDL
* 2 + 2;
1088 for (; i
< len
; i
++)
1089 if (fmap
[i
] == '\n')
1092 cb
.dlen
= len
+ extra
;
1093 buf
= cb
.data
= xmalloc( cb
.dlen
);
1095 if (!CAP(UIDPLUS
) && uid
) {
1097 for (; i
< sbreak
; i
++)
1098 if (fmap
[i
] == '\n') {
1104 memcpy( buf
, fmap
, sbreak
);
1107 memcpy( buf
, "X-TUID: ", 8 );
1109 memcpy( buf
, tuid
, TUIDL
* 2 );
1116 for (; i
< len
; i
++)
1117 if (fmap
[i
] == '\n') {
1123 memcpy( buf
, fmap
+ i
, len
- i
);
1129 d
= imap_make_flags( data
->flags
, flagstr
);
1135 box
= gctx
->conf
->trash
;
1136 prefix
= ctx
->prefix
;
1139 imap
->caps
= imap
->rcaps
& ~(1 << LITERALPLUS
);
1142 prefix
= !strcmp( box
, "INBOX" ) ? "" : ctx
->prefix
;
1146 ret
= imap_exec_m( ctx
, &cb
, "APPEND \"%s%s\" %s", prefix
, box
, flagstr
);
1147 imap
->caps
= imap
->rcaps
;
1158 #define CHUNKSIZE 0x1000
1161 read_message( FILE *f
, msg_data_t
*msg
)
1165 memset( msg
, 0, sizeof *msg
);
1167 msg
->data
= xmalloc( len
+1 );
1171 if (msg
->len
>= len
) {
1174 p
= xrealloc(msg
->data
, len
+1);
1179 r
= fread( &msg
->data
[msg
->len
], 1, len
- msg
->len
, f
);
1184 msg
->data
[msg
->len
] = 0;
1189 count_messages( msg_data_t
*msg
)
1192 char *p
= msg
->data
;
1195 if (!prefixcmp(p
, "From ")) {
1199 p
= strstr( p
+5, "\nFrom ");
1208 split_msg( msg_data_t
*all_msgs
, msg_data_t
*msg
, int *ofs
)
1212 memset( msg
, 0, sizeof *msg
);
1213 if (*ofs
>= all_msgs
->len
)
1216 data
= &all_msgs
->data
[ *ofs
];
1217 msg
->len
= all_msgs
->len
- *ofs
;
1219 if (msg
->len
< 5 || prefixcmp(data
, "From "))
1222 p
= strchr( data
, '\n' );
1230 p
= strstr( data
, "\nFrom " );
1232 msg
->len
= &p
[1] - data
;
1234 msg
->data
= xmalloc( msg
->len
+ 1 );
1238 memcpy( msg
->data
, data
, msg
->len
);
1239 msg
->data
[ msg
->len
] = 0;
1245 static imap_server_conf_t server
=
1255 static char *imap_folder
;
1258 git_imap_config(const char *key
, const char *val
)
1260 char imap_key
[] = "imap.";
1262 if (strncmp( key
, imap_key
, sizeof imap_key
- 1 ))
1264 key
+= sizeof imap_key
- 1;
1266 if (!strcmp( "folder", key
)) {
1267 imap_folder
= xstrdup( val
);
1268 } else if (!strcmp( "host", key
)) {
1270 if (!prefixcmp(val
, "imap:"))
1275 if (!prefixcmp(val
, "//"))
1277 server
.host
= xstrdup( val
);
1279 else if (!strcmp( "user", key
))
1280 server
.user
= xstrdup( val
);
1281 else if (!strcmp( "pass", key
))
1282 server
.pass
= xstrdup( val
);
1283 else if (!strcmp( "port", key
))
1284 server
.port
= git_config_int( key
, val
);
1285 else if (!strcmp( "tunnel", key
))
1286 server
.tunnel
= xstrdup( val
);
1291 main(int argc
, char **argv
)
1293 msg_data_t all_msgs
, msg
;
1294 store_t
*ctx
= NULL
;
1300 /* init the random number generator */
1303 git_config( git_imap_config
);
1306 fprintf( stderr
, "no imap store specified\n" );
1310 /* read the messages */
1311 if (!read_message( stdin
, &all_msgs
)) {
1312 fprintf(stderr
,"nothing to send\n");
1316 total
= count_messages( &all_msgs
);
1318 fprintf(stderr
,"no messages to send\n");
1322 /* write it to the imap server */
1323 ctx
= imap_open_store( &server
);
1325 fprintf( stderr
,"failed to open store\n");
1329 fprintf( stderr
, "sending %d message%s\n", total
, (total
!=1)?"s":"" );
1330 ctx
->name
= imap_folder
;
1332 unsigned percent
= n
* 100 / total
;
1333 fprintf( stderr
, "%4u%% (%d/%d) done\r", percent
, n
, total
);
1334 if (!split_msg( &all_msgs
, &msg
, &ofs
))
1336 r
= imap_store_msg( ctx
, &msg
, &uid
);
1337 if (r
!= DRV_OK
) break;
1340 fprintf( stderr
,"\n" );
1342 imap_close_store( ctx
);