According to RFC of IMAP, all messages must not have "bare newlines ('\n')". '\n' should be converted to "\r\n" before storing messages to IMAP's mailbox. This patch implements the converting function to git-imap-send. --- v4: Based on Junio's indication, now lf_to_crlf() consider about message with CRLF. And struct msg_data doesn't have the bitfield member crlf now. Cc: Erik Faye-Lund <kusmabite@xxxxxxxxxxxxxx> Cc: Jakub Narebski <jnareb@xxxxxxxxx> Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Cc: Jeff King <peff@xxxxxxxx> Signed-off-by: Hitoshi Mitake <mitake@xxxxxxxxxxxxxxxxxxxxx> --- imap-send.c | 40 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 39 insertions(+), 1 deletions(-) diff --git a/imap-send.c b/imap-send.c index c5958a3..624ede3 100644 --- a/imap-send.c +++ b/imap-send.c @@ -95,7 +95,6 @@ struct msg_data { char *data; int len; unsigned char flags; - unsigned int crlf:1; }; static const char imap_send_usage[] = "git imap-send < <mbox>"; @@ -1280,6 +1279,44 @@ static int imap_make_flags(int flags, char *buf) return d; } +static void lf_to_crlf(struct msg_data *msg) +{ + char *new; + int i, j, lfnum = 0; + + if (msg->data[0] == '\n') + lfnum++; + for (i = 1; i < msg->len; i++) { + if (msg->data[i - 1] != '\r' && msg->data[i] == '\n') + lfnum++; + } + + new = xcalloc(msg->len + lfnum, sizeof(char)); + if (msg->data[0] == '\n') { + new[0] = '\r'; + new[1] = '\n'; + i = 1; + j = 2; + } else { + new[0] = msg->data[0]; + i = 1; + j = 1; + } + for ( ; i < msg->len; i++) { + if (msg->data[i] != '\n') { + new[j++] = msg->data[i]; + continue; + } + if (!(msg->data[i - 1] == '\r')) + new[j++] = '\r'; + /* else: This '\n' is already not bare newline*/ + new[j++] = '\n'; + } + msg->len += lfnum; + free(msg->data); + msg->data = new; +} + static int imap_store_msg(struct store *gctx, struct msg_data *data) { struct imap_store *ctx = (struct imap_store *)gctx; @@ -1289,6 +1326,7 @@ static int imap_store_msg(struct store *gctx, struct msg_data *data) int ret, d; char flagstr[128]; + lf_to_crlf(data); memset(&cb, 0, sizeof(cb)); cb.dlen = data->len; -- 1.7.0.rc1.52.gf7cc2.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html