Staging
v0.5.1
https://github.com/git/git
Revision e0b0830726286287744cc9e1a629a534bbe75452 authored by Markus Amsler on 12 October 2006, 22:19:35 UTC, committed by Junio C Hamano on 18 October 2006, 10:34:46 UTC
Cyrus imap refuses messages with a 'From ' Header.

[jc: Mike McCormack says this is fine with Courier as well.]

Signed-off-by: Markus Amsler <markus.amsler@oribi.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 17b96be
Raw File
Tip revision: e0b0830726286287744cc9e1a629a534bbe75452 authored by Markus Amsler on 12 October 2006, 22:19:35 UTC
git-imap-send: Strip smtp From_ header from imap message.
Tip revision: e0b0830
pkt-line.h
#ifndef PKTLINE_H
#define PKTLINE_H

#include "git-compat-util.h"

/*
 * Silly packetized line writing interface
 */
void packet_flush(int fd);
void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));

int packet_read_line(int fd, char *buffer, unsigned size);
ssize_t safe_write(int, const void *, ssize_t);

#endif
back to top